Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
mbauskar committed Jul 13, 2017
2 parents 777b16f + ae20748 commit 394c4d7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion erpnext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import unicode_literals
import frappe

__version__ = '8.4.1'
__version__ = '8.4.2'

def get_default_company(user=None):
'''Get default company for user'''
Expand Down
3 changes: 2 additions & 1 deletion erpnext/selling/doctype/sales_order/sales_order.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

frappe.ui.form.on("Sales Order", {
setup: function(frm) {
$.extend(frm.cscript, new erpnext.selling.SalesOrderController({frm: frm}));
frm.custom_make_buttons = {
'Delivery Note': 'Delivery',
'Sales Invoice': 'Invoice',
Expand Down Expand Up @@ -347,3 +346,5 @@ erpnext.selling.SalesOrderController = erpnext.selling.SellingController.extend(
}
}
});

$.extend(cur_frm.cscript, new erpnext.selling.SalesOrderController({frm: cur_frm}));
5 changes: 3 additions & 2 deletions erpnext/stock/doctype/delivery_note/delivery_note.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ frappe.ui.form.on("Delivery Note", {
});


$.extend(frm.cscript, new erpnext.stock.DeliveryNoteController({frm: frm}));
},
print_without_amount: function(frm) {
erpnext.stock.delivery_note.set_print_hide(frm.doc);
Expand All @@ -86,7 +85,6 @@ frappe.ui.form.on("Delivery Note Item", {
}
});


erpnext.stock.DeliveryNoteController = erpnext.selling.SellingController.extend({
setup: function(doc) {
this.setup_posting_date_time_check();
Expand Down Expand Up @@ -225,6 +223,8 @@ erpnext.stock.DeliveryNoteController = erpnext.selling.SellingController.extend(

});

$.extend(cur_frm.cscript, new erpnext.stock.DeliveryNoteController({frm: cur_frm}));

frappe.ui.form.on('Delivery Note', {
setup: function(frm) {
if(frm.doc.company) {
Expand Down Expand Up @@ -268,3 +268,4 @@ erpnext.stock.delivery_note.set_print_hide = function(doc, cdt, cdn){
dn_fields['taxes'].print_hide = 0;
}
}

3 changes: 2 additions & 1 deletion erpnext/stock/doctype/stock_entry/stock_entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ frappe.provide("erpnext.stock");

frappe.ui.form.on('Stock Entry', {
setup: function(frm) {
$.extend(frm.cscript, new erpnext.stock.StockEntry({frm: frm}));

frm.set_query('production_order', function() {
return {
Expand Down Expand Up @@ -583,3 +582,5 @@ erpnext.stock.select_batch_and_serial_no = (frm, item) => {
});

}

$.extend(cur_frm.cscript, new erpnext.stock.StockEntry({frm: cur_frm}));

0 comments on commit 394c4d7

Please sign in to comment.