Files
psp_panel/src/app/domains/pos/modules/goodsManagement/views/update.component.html
T
ahasani ea458c7b72
Production CI / validate-and-build (push) Failing after 1m6s
refactor: update terminology from "مشتری" to "مودی" and "ارایه‌دهنده" to "PSP" across the application
- Updated column headers and labels in various components and constants to reflect the new terminology.
- Changed the titles and placeholders in forms and dialogs to use "مودی" and "PSP".
- Adjusted routing titles and menu items to align with the new naming conventions.
- Refactored related constants and configurations to ensure consistency throughout the application.
2026-06-16 15:47:23 +03:30

18 lines
504 B
HTML

<div class="bg-surface-card">
<app-inner-pages-header [pageTitle]="preparedPageTitle()" [backRoute]="backRoute" />
<hr class="mt-0!" />
<div class="flex w-full flex-col flex-wrap gap-3 p-4">
@if (loading()) {
} @else if (item()) {
<shared-good-form
[guildId]="guildId()"
[initialValues]="item()!"
[updateFn]="updateFn"
[editMode]="true"
class="block w-full"
(onSubmit)="onSubmit()"
(onClose)="onPrev()" />
}
</div>
</div>