fix(delivery note): change the text invoice to sales invoice on make button (#18665)

This commit is contained in:
DeeMysterio
2019-08-12 13:03:39 +05:30
committed by Nabin Hait
parent f6dcd8ac91
commit 4252575e84

View File

@@ -171,7 +171,7 @@ erpnext.stock.DeliveryNoteController = erpnext.selling.SellingController.extend(
});
if(!from_sales_invoice) {
this.frm.add_custom_button(__('Invoice'), function() { me.make_sales_invoice() },
this.frm.add_custom_button(__('Sales Invoice'), function() { me.make_sales_invoice() },
__("Make"));
}
}