11 lines
349 B
HTML
11 lines
349 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()"
|
|
/>
|
|
} -->
|