Set paid amount to zero if not pos
diff --git a/erpnext/selling/sales_common.js b/erpnext/selling/sales_common.js
index 74b9bb9..d2eab68 100644
--- a/erpnext/selling/sales_common.js
+++ b/erpnext/selling/sales_common.js
@@ -407,6 +407,7 @@
"paid_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.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