mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-09 08:11:19 +00:00
fix: Sider issues
This commit is contained in:
@@ -19,8 +19,8 @@ frappe.ui.form.on('Batch', {
|
|||||||
'item_code': frm.doc.item,
|
'item_code': frm.doc.item,
|
||||||
'selling': 1
|
'selling': 1
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
})
|
});
|
||||||
},
|
},
|
||||||
refresh: (frm) => {
|
refresh: (frm) => {
|
||||||
if(!frm.is_new()) {
|
if(!frm.is_new()) {
|
||||||
|
|||||||
@@ -706,7 +706,7 @@ def get_item_price(args, item_code, ignore_party=False):
|
|||||||
order by valid_from desc, uom desc """.format(conditions=conditions), args)
|
order by valid_from desc, uom desc """.format(conditions=conditions), args)
|
||||||
|
|
||||||
def is_valid_item_price(item_price, posting_date):
|
def is_valid_item_price(item_price, posting_date):
|
||||||
if item_price.valid_upto and getdate(posting_date) <= getdate(valid_upto):
|
if item_price.valid_upto and getdate(posting_date) <= getdate(item_price.valid_upto):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if getdate(posting_date) >= getdate(item_price.valid_from):
|
if getdate(posting_date) >= getdate(item_price.valid_from):
|
||||||
|
|||||||
Reference in New Issue
Block a user