Merge pull request #15853 from rohitwaghchaure/delete_button_not_working_for_print_in_mobile
[Fix] Delete button not working in POS for mobile
diff --git a/erpnext/accounts/page/pos/pos.js b/erpnext/accounts/page/pos/pos.js
index 528e3d3..314b91b 100755
--- a/erpnext/accounts/page/pos/pos.js
+++ b/erpnext/accounts/page/pos/pos.js
@@ -1573,15 +1573,16 @@
style="margin-right: 5px;">${__('Print')}</a>
<a class="btn btn-default new_doc">${__('New')}</a>`);
- $('.print_doc').click(function () {
- var html = frappe.render(me.print_template_data, me.frm.doc)
- me.print_document(html)
+ this.msgprint.msg_area.find('.print_doc').on('click', function() {
+ var html = frappe.render(me.print_template_data, me.frm.doc);
+ me.print_document(html);
})
- $('.new_doc').click(function () {
- me.msgprint.hide()
- me.make_new_cart()
+ this.msgprint.msg_area.find('.new_doc').on('click', function() {
+ me.msgprint.hide();
+ me.make_new_cart();
})
+
},
print_document: function (html) {