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