mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-26 08:24:47 +00:00
chore: fix conflicts
This commit is contained in:
@@ -205,18 +205,12 @@ erpnext.buying.PurchaseOrderController = class PurchaseOrderController extends e
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
if(is_drop_ship && doc.status!="Delivered") {
|
|
||||||
this.frm.add_custom_button(__('Delivered'),
|
|
||||||
this.delivered_by_supplier, __("Status"));
|
|
||||||
=======
|
|
||||||
if (is_drop_ship && doc.status != "Delivered") {
|
if (is_drop_ship && doc.status != "Delivered") {
|
||||||
this.frm.add_custom_button(
|
this.frm.add_custom_button(
|
||||||
__("Delivered"),
|
__("Delivered"),
|
||||||
this.delivered_by_supplier.bind(this),
|
this.delivered_by_supplier.bind(this),
|
||||||
__("Status")
|
__("Status")
|
||||||
);
|
);
|
||||||
>>>>>>> 41649cf52d (fix: bind this to function)
|
|
||||||
|
|
||||||
this.frm.page.set_inner_btn_group_as_primary(__("Status"));
|
this.frm.page.set_inner_btn_group_as_primary(__("Status"));
|
||||||
}
|
}
|
||||||
@@ -591,4 +585,4 @@ frappe.ui.form.on("Purchase Order", "is_subcontracted", function(frm) {
|
|||||||
if (frm.doc.is_old_subcontracting_flow) {
|
if (frm.doc.is_old_subcontracting_flow) {
|
||||||
erpnext.buying.get_default_bom(frm);
|
erpnext.buying.get_default_bom(frm);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user