Date validation in bank reco
This commit is contained in:
parent
27ec8f1e26
commit
6a1e40bb46
@ -63,6 +63,13 @@ class DocType:
|
|||||||
vouchers = []
|
vouchers = []
|
||||||
for d in getlist(self.doclist, 'entries'):
|
for d in getlist(self.doclist, 'entries'):
|
||||||
if d.clearance_date:
|
if d.clearance_date:
|
||||||
|
if getdate(d.clearance_date) < getdate(d.cheque_date):
|
||||||
|
msgprint("Clearance Date can not be before Cheque Date (Row #%s)" %
|
||||||
|
d.idx, raise_exception=1)
|
||||||
|
if getdate(d.clearance_date) < getdate(d.posting_date):
|
||||||
|
msgprint("Clearance Date can not be before Posting Date (Row #%s)" %
|
||||||
|
d.idx, raise_exception=1)
|
||||||
|
|
||||||
sql("update `tabJournal Voucher` set clearance_date = %s, modified = %s where name=%s", (d.clearance_date, nowdate(), d.voucher_id))
|
sql("update `tabJournal Voucher` set clearance_date = %s, modified = %s where name=%s", (d.clearance_date, nowdate(), d.voucher_id))
|
||||||
vouchers.append(d.voucher_id)
|
vouchers.append(d.voucher_id)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user