diff --git a/AstuteClient2/src/app/invoice/invoice.component.html b/AstuteClient2/src/app/invoice/invoice.component.html index c444ad8..57f8a46 100644 --- a/AstuteClient2/src/app/invoice/invoice.component.html +++ b/AstuteClient2/src/app/invoice/invoice.component.html @@ -199,23 +199,23 @@ (change)="onSelectedCellChange(i, 'qty', qty.value); updateSelectedBillAmt()" #qty [disabled]="chosenInv.invoiceStatus !== 1"> - - - - - - - - - - - - - - - - - + + +

{{getPerc(qty.value, inDet.remainingQty)}}%

+ + +
+
+ {{qty.value}} +
+
+ {{inDet.remainingQty - (qty.value)}} +
+
+ + diff --git a/AstuteClient2/src/app/invoice/invoice.component.ts b/AstuteClient2/src/app/invoice/invoice.component.ts index 8cdb3cc..86e4ccd 100644 --- a/AstuteClient2/src/app/invoice/invoice.component.ts +++ b/AstuteClient2/src/app/invoice/invoice.component.ts @@ -497,7 +497,7 @@ export class InvoiceComponent implements OnInit { setCorrespondingPos() { this.correspondingPos = this.pos.filter((po, index, array) => { - return po.customerId === this.chosenCustomerID && !po.oneInvInDraft; + return po.customerId === this.chosenCustomerID && !po.oneInvInDraft && po.final; }); } diff --git a/AstuteClient2/src/app/sales-order/sales-order.component.html b/AstuteClient2/src/app/sales-order/sales-order.component.html index bec6264..88627da 100644 --- a/AstuteClient2/src/app/sales-order/sales-order.component.html +++ b/AstuteClient2/src/app/sales-order/sales-order.component.html @@ -23,10 +23,10 @@
- +
- +
diff --git a/AstuteSystem/src/main/java/com/astute/service/CustomerService.java b/AstuteSystem/src/main/java/com/astute/service/CustomerService.java index e0ca7b2..fb07cf9 100644 --- a/AstuteSystem/src/main/java/com/astute/service/CustomerService.java +++ b/AstuteSystem/src/main/java/com/astute/service/CustomerService.java @@ -13,8 +13,9 @@ public class CustomerService extends Service{ super(); } - public List getCustomers(String customerId) + public List getCustomers(String sessionId, String customerId) throws AstuteException { + return getDao().getCustomers(customerId); }