Minor fix related to pos paid amount
This commit is contained in:
parent
2c517e0a62
commit
0c9d42258c
@ -407,9 +407,12 @@ erpnext.selling.SellingController = erpnext.TransactionController.extend({
|
|||||||
"paid_amount"]);
|
"paid_amount"]);
|
||||||
var total_amount_to_pay = this.frm.doc.grand_total - this.frm.doc.write_off_amount
|
var total_amount_to_pay = this.frm.doc.grand_total - this.frm.doc.write_off_amount
|
||||||
- this.frm.doc.total_advance;
|
- this.frm.doc.total_advance;
|
||||||
|
if(this.frm.doc.is_pos) {
|
||||||
|
if(!this.frm.doc.paid_amount) this.frm.doc.paid_amount = flt(total_amount_to_pay);
|
||||||
|
} else {
|
||||||
|
this.frm.doc.paid_amount = 0
|
||||||
|
}
|
||||||
|
|
||||||
this.frm.doc.paid_amount = (this.frm.doc.is_pos && !this.frm.doc.paid_amount) ?
|
|
||||||
flt(total_amount_to_pay): 0.0;
|
|
||||||
this.frm.set_value("outstanding_amount", flt(total_amount_to_pay
|
this.frm.set_value("outstanding_amount", flt(total_amount_to_pay
|
||||||
- this.frm.doc.paid_amount, precision("outstanding_amount")));
|
- this.frm.doc.paid_amount, precision("outstanding_amount")));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user