Cost of Production cycle
This commit is contained in:
parent
e9882e12ba
commit
6a7f75c3e3
@ -155,8 +155,6 @@ erpnext.bom.calculate_fixed_cost = function(doc) {
|
|||||||
total_fixed_cost += flt(op[i].fixed_cycle_cost);
|
total_fixed_cost += flt(op[i].fixed_cycle_cost);
|
||||||
}
|
}
|
||||||
cur_frm.set_value("total_fixed_cost", total_fixed_cost);
|
cur_frm.set_value("total_fixed_cost", total_fixed_cost);
|
||||||
doc.total_cost = flt(total_fixed_cost) + flt(doc.total_variable_cost);
|
|
||||||
refresh_field('total_cost');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
erpnext.bom.calculate_rm_cost = function(doc) {
|
erpnext.bom.calculate_rm_cost = function(doc) {
|
||||||
@ -169,8 +167,7 @@ erpnext.bom.calculate_rm_cost = function(doc) {
|
|||||||
{'qty_consumed_per_unit': flt(rm[i].qty)/flt(doc.quantity)}, 'bom_materials');
|
{'qty_consumed_per_unit': flt(rm[i].qty)/flt(doc.quantity)}, 'bom_materials');
|
||||||
total_rm_cost += amt;
|
total_rm_cost += amt;
|
||||||
}
|
}
|
||||||
doc.raw_material_cost = total_rm_cost;
|
cur_frm.set_value("raw_material_cost", total_rm_cost);
|
||||||
refresh_field('raw_material_cost');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,4 +20,4 @@ class Workstation(Document):
|
|||||||
frappe.db.set(self, 'overhead', flt(self.hour_rate_electricity) +
|
frappe.db.set(self, 'overhead', flt(self.hour_rate_electricity) +
|
||||||
flt(self.hour_rate_consumable) + flt(self.hour_rate_rent))
|
flt(self.hour_rate_consumable) + flt(self.hour_rate_rent))
|
||||||
frappe.db.set(self, 'hour_rate', flt(self.hour_rate_labour) + flt(self.overhead))
|
frappe.db.set(self, 'hour_rate', flt(self.hour_rate_labour) + flt(self.overhead))
|
||||||
self.update_bom_operation()
|
self.update_bom_operation()
|
Loading…
Reference in New Issue
Block a user