Files
psp_panel/src/app/domains/consumer/modules/poses/views/single.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

25 lines
1.0 KiB
HTML

<div class="flex flex-col gap-4">
<app-card-data cardTitle="اطلاعات پایانه‌ فروش" [editable]="true" [(editMode)]="editMode">
<ng-template #moreActions>
<p-button type="button" variant="outlined" size="small" (onClick)="toPosLanding()"> ورود به پایانه </p-button>
</ng-template>
<div class="flex flex-col gap-4">
<div class="listKeyValue">
<app-key-value label="عنوان" [value]="pos()?.name" />
<app-key-value label="نوع پایانه" [value]="pos()?.pos_type" />
<app-key-value label="شماره سریال" [value]="pos()?.serial_number" />
<app-key-value label="نوع دستگاه" [value]="pos()?.device?.name" />
<app-key-value label="مدل دستگاه" [value]="pos()?.model" />
<app-key-value label="PSP" [value]="pos()?.provider?.name" />
</div>
</div>
</app-card-data>
<consumer-pos-form
[(visible)]="editMode"
[editMode]="true"
[posId]="posId()"
[initialValues]="pos() || undefined"
(onSubmit)="getData()" />
</div>