[Minor Change] Updated queries.py

This commit is contained in:
shreyas 2016-01-25 17:44:09 +05:30
parent 29b565fdf5
commit 2563f404d2

View File

@ -217,7 +217,7 @@ def get_delivery_notes_to_be_billed(doctype, txt, searchfield, start, page_len,
from `tabDelivery Note`
where `tabDelivery Note`.`%(key)s` like %(txt)s and
`tabDelivery Note`.docstatus = 1 and status not in ("Stopped", "Closed") %(fcond)s
and `tabDelivery Note`.per_billed < 100
and (`tabDelivery Note`.per_billed < 100 or `tabDelivery Note`.grand_total = 0)
%(mcond)s order by `tabDelivery Note`.`%(key)s` asc
limit %(start)s, %(page_len)s""" % {
"key": searchfield,