2026-03-16 17:56:22 +03:30
|
|
|
<div class="flex flex-col gap-6">
|
|
|
|
|
<app-card-data cardTitle="اطلاعات فعالیت اقتصادی" [editable]="true" [(editMode)]="editMode">
|
2026-04-23 01:22:44 +03:30
|
|
|
<ng-template #moreActions> </ng-template>
|
2026-03-16 17:56:22 +03:30
|
|
|
<div class="flex flex-col gap-4">
|
|
|
|
|
<div class="grid grid-cols-3 gap-4 items-center">
|
|
|
|
|
<app-key-value label="عنوان" [value]="business()?.name" />
|
2026-04-23 20:59:48 +03:30
|
|
|
<app-key-value label="کد اقتصادی" [value]="business()?.economic_code" />
|
2026-03-16 17:56:22 +03:30
|
|
|
<app-key-value label="صنف" [value]="business()?.guild?.name" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</app-card-data>
|
|
|
|
|
|
|
|
|
|
<consumer-complex-list [businessId]="businessId()" />
|
|
|
|
|
|
|
|
|
|
<consumer-businessActivity-form
|
|
|
|
|
[(visible)]="editMode"
|
|
|
|
|
[editMode]="true"
|
|
|
|
|
[businessId]="businessId()"
|
|
|
|
|
[initialValues]="business() || undefined"
|
|
|
|
|
(onSubmit)="getData()"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|