502c592f56
- Updated form component to use 'unitPrice' instead of 'fee'. - Adjusted product charge row form fields and templates to reflect the new naming. - Modified receipt template and related components to utilize 'unitPrice'. - Changed models and interfaces to replace 'fee' with 'unitPrice'. - Updated supplier invoice and statistics components to align with the new naming convention. - Added new API routes for dashboard and statistics modules.
11 lines
340 B
HTML
11 lines
340 B
HTML
@if (showPaymentForm()) {
|
|
<app-supplier-invoice-pay-form
|
|
[(visible)]="showPaymentForm"
|
|
[debtAmount]="purchaseReceipt.totalAmount"
|
|
[supplierId]="purchaseReceipt.supplierId.toString()"
|
|
[inventoryId]="purchaseReceipt.inventoryId.toString()"
|
|
[invoiceId]="purchaseReceipt.id.toString()"
|
|
(onSubmit)="submitted()"
|
|
/>
|
|
}
|