commit
f9cae65df5
@ -12,7 +12,7 @@ import json
|
|||||||
|
|
||||||
class AccountsController(TransactionBase):
|
class AccountsController(TransactionBase):
|
||||||
def validate(self):
|
def validate(self):
|
||||||
if self._action != "update_after_submit":
|
if self.get("_action") and self._action != "update_after_submit":
|
||||||
self.set_missing_values(for_validate=True)
|
self.set_missing_values(for_validate=True)
|
||||||
self.validate_date_with_fiscal_year()
|
self.validate_date_with_fiscal_year()
|
||||||
if self.meta.get_field("currency"):
|
if self.meta.get_field("currency"):
|
||||||
|
@ -134,7 +134,7 @@ class DeliveryNote(SellingController):
|
|||||||
|
|
||||||
|
|
||||||
def update_current_stock(self):
|
def update_current_stock(self):
|
||||||
if self._action != "update_after_submit":
|
if self.get("_action") and self._action != "update_after_submit":
|
||||||
for d in self.get('delivery_note_details'):
|
for d in self.get('delivery_note_details'):
|
||||||
d.actual_qty = frappe.db.get_value("Bin", {"item_code": d.item_code,
|
d.actual_qty = frappe.db.get_value("Bin", {"item_code": d.item_code,
|
||||||
"warehouse": d.warehouse}, "actual_qty")
|
"warehouse": d.warehouse}, "actual_qty")
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -62,7 +62,7 @@ def update_packing_list_item(obj, packing_item_code, qty, warehouse, line, packi
|
|||||||
def make_packing_list(obj, item_table_fieldname):
|
def make_packing_list(obj, item_table_fieldname):
|
||||||
"""make packing list for sales bom item"""
|
"""make packing list for sales bom item"""
|
||||||
|
|
||||||
if obj._action == "update_after_submit": return
|
if obj.get("_action") and obj._action == "update_after_submit": return
|
||||||
|
|
||||||
packing_list_idx = 0
|
packing_list_idx = 0
|
||||||
parent_items = []
|
parent_items = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user