stock entries from production_order dont fetch serial number of project

This commit is contained in:
RobertSchouten 2016-09-09 11:08:39 +08:00 committed by GitHub
parent 2efe20bd9a
commit b64fc33be1

View File

@ -232,6 +232,18 @@ class StockEntry(StockController):
frappe.bold(d.transfer_qty)),
NegativeStockError, title=_('Insufficient Stock'))
def set_serial_nos(self,production_order_id):
previous_se = frappe.db.get_value("Stock Entry",{"production_order": production_order_id,
"purpose": "Material Transfer for Manufacture"}, "name")
for d in self.get('items'):
previous_serial_no = frappe.db.get_value("Stock Entry Detail",{"parent": previous_se,
"item_code": d.item_code}, "serial_no")
if previous_serial_no:
d.serial_no = previous_serial_no
def get_stock_and_rate(self):
self.set_transfer_qty()
self.set_actual_qty()
@ -551,6 +563,9 @@ class StockEntry(StockController):
item["to_warehouse"] = self.to_warehouse if self.purpose=="Subcontract" else ""
self.add_to_stock_entry_detail(item_dict)
# fetch the serial_no of the first stock entry for the second stock entry
if self.production_order and self.purpose == "Manufacture":
self.set_serial_nos(self.production_order)
# add finished goods item
if self.purpose in ("Manufacture", "Repack"):