Files
psp_panel/src/app/shared/components/purchaseReceiptPayment/wrapper.component.html
T

11 lines
340 B
HTML
Raw Normal View History

@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()"
/>
}