[fix] operations and bom

This commit is contained in:
Nabin Hait 2015-05-21 12:45:30 +05:30
parent f3ae85cc9a
commit de7b87ee3a
5 changed files with 19 additions and 17 deletions

View File

@ -35,7 +35,6 @@ cur_frm.cscript.hour_rate = function(doc, dt, dn) {
} }
cur_frm.cscript.time_in_mins = cur_frm.cscript.hour_rate; cur_frm.cscript.time_in_mins = cur_frm.cscript.hour_rate;
cur_frm.cscript.fixed_cycle_cost = cur_frm.cscript.hour_rate;
cur_frm.cscript.item_code = function(doc, cdt, cdn) { cur_frm.cscript.item_code = function(doc, cdt, cdn) {
get_bom_material_detail(doc, cdt, cdn); get_bom_material_detail(doc, cdt, cdn);

View File

@ -35,6 +35,7 @@ frappe.ui.form.on("Production Order", "additional_operating_cost", function(frm)
frappe.ui.form.on("Production Order Operation", "workstation", function(frm, cdt, cdn) { frappe.ui.form.on("Production Order Operation", "workstation", function(frm, cdt, cdn) {
var d = locals[cdt][cdn]; var d = locals[cdt][cdn];
if (d.workstation) {
frappe.call({ frappe.call({
"method": "frappe.client.get", "method": "frappe.client.get",
args: { args: {
@ -47,6 +48,7 @@ frappe.ui.form.on("Production Order Operation", "workstation", function(frm, cdt
erpnext.production_order.calculate_total_cost(frm); erpnext.production_order.calculate_total_cost(frm);
} }
}) })
}
}); });
frappe.ui.form.on("Production Order Operation", "time_in_mins", function(frm, cdt, cdn) { frappe.ui.form.on("Production Order Operation", "time_in_mins", function(frm, cdt, cdn) {

View File

@ -33,7 +33,7 @@
"print_hide": 0, "print_hide": 0,
"read_only": 1, "read_only": 1,
"report_hide": 0, "report_hide": 0,
"reqd": 1, "reqd": 0,
"search_index": 0, "search_index": 0,
"set_only_once": 0, "set_only_once": 0,
"unique": 0 "unique": 0
@ -293,7 +293,7 @@
"is_submittable": 0, "is_submittable": 0,
"issingle": 0, "issingle": 0,
"istable": 1, "istable": 1,
"modified": "2015-04-22 03:25:18.542350", "modified": "2015-05-21 13:46:27.730392",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "Manufacturing", "module": "Manufacturing",
"name": "Production Order Operation", "name": "Production Order Operation",

View File

@ -156,3 +156,4 @@ erpnext.patches.v5_0.repost_requested_qty
erpnext.patches.v5_0.fix_taxes_and_totals_in_party_currency erpnext.patches.v5_0.fix_taxes_and_totals_in_party_currency
erpnext.patches.v5_0.update_tax_amount_after_discount_in_purchase_cycle erpnext.patches.v5_0.update_tax_amount_after_discount_in_purchase_cycle
erpnext.patches.v5_0.rename_pos_setting erpnext.patches.v5_0.rename_pos_setting
execute:frappe.db.sql("update `tabBOM Operation` set description=opn_description where ifnull(description, '') = ''")

View File

@ -446,9 +446,9 @@ cur_frm.cscript.item_code = function(doc, cdt, cdn) {
callback: function(r) { callback: function(r) {
if(r.message) { if(r.message) {
$.each(r.message, function(k, v) { $.each(r.message, function(k, v) {
frappe.model.set_value(cdt, cdn, k, v); d[k] = v;
}); });
refresh_field('image_view', d.name, 'items'); refresh_field('items');
} }
} }
}); });