Add Payment Reconciliation Feature/Tool - minor changes
diff --git a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js
index f0706db..b40691d 100644
--- a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js
+++ b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.js
@@ -7,19 +7,26 @@
onload: function() {
var me = this
- this.frm.set_query ("party_account", function() {
+ this.frm.set_query ('party_account', function() {
return{
filters:[
- ["Account", "company", "=", me.frm.doc.company],
- ["Account", "group_or_ledger", "=", "Ledger"],
- ["Account", "master_type", "in", ["Customer", "Supplier"]]
+ ['Account', 'company', '=', me.frm.doc.company],
+ ['Account', 'group_or_ledger', '=', 'Ledger'],
+ ['Account', 'master_type', 'in', ['Customer', 'Supplier']]
]
};
});
+ },
+
+ get_unreconciled_entries: function() {
+ return this.frm.call({
+ doc: me.frm.doc,
+ method: 'get_unreconciled_entries'
+ });
}
});
$.extend(cur_frm.cscript, new erpnext.accounts.PaymentReconciliationController({frm: cur_frm}));
-cur_frm.add_fetch("party_account", "master_type", "party_type")
\ No newline at end of file
+cur_frm.add_fetch('party_account', 'master_type', 'party_type')
\ No newline at end of file
diff --git a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py
index 8fb3317..2eb188b 100644
--- a/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py
+++ b/erpnext/accounts/doctype/payment_reconciliation/payment_reconciliation.py
@@ -11,4 +11,8 @@
from frappe.model.document import Document
class PaymentReconciliation(Document):
- pass
\ No newline at end of file
+ def get_unreconciled_entries(self):
+ self.set('payment_reconciliation_payment', [])
+ jve = self.get_jv_entries()
+ self.create_payment_reconciliation_payment(jve)
+