update superAdmin users business

This commit is contained in:
2026-03-14 16:26:22 +03:30
parent 9bfbef6f64
commit 20be653499
126 changed files with 2891 additions and 169 deletions
@@ -0,0 +1,23 @@
<div class="flex flex-col gap-6">
<app-card-data cardTitle="اطلاعات فروشگاه" [editable]="true" [(editMode)]="editMode">
<div class="flex flex-col gap-4">
<div class="grid grid-cols-3 gap-4 items-center">
<app-key-value label="عنوان" [value]="complex()?.name" />
<app-key-value label="کد مالیاتی" [value]="complex()?.tax_id" />
<app-key-value label="آدرس" [value]="complex()?.address" />
</div>
</div>
</app-card-data>
<superAdmin-user-poses-list [userId]="userId()" [businessId]="businessId()" [complexId]="complexId()" />
<superAdmin-user-complex-form
[(visible)]="editMode"
[editMode]="true"
[userId]="userId()"
[businessActivityId]="businessId()"
[complexId]="complexId()"
[initialValues]="complex() || undefined"
(onSubmit)="getData()"
/>
</div>