Skip to content

Commit

Permalink
Merge PR #417 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by rafaelbn
  • Loading branch information
OCA-git-bot committed Nov 21, 2019
2 parents 2e9dedc + bbb11b7 commit c9b19fe
Showing 1 changed file with 8 additions and 17 deletions.
25 changes: 8 additions & 17 deletions pos_order_mgmt/static/src/js/widgets.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,23 +178,14 @@ odoo.define('pos_order_mgmt.widgets', function (require) {

this.pos.set_order(order);

if (this.pos.config.iface_print_via_proxy) {
this.pos.proxy.print_receipt(QWeb.render(
'XmlReceipt', {
receipt: order.export_for_printing(),
widget: this,
pos: this.pos,
order: order,
orderlines: order.get_orderlines(),
paymentlines: order.get_paymentlines(),
}));
this.pos.set_order(this.pos.current_order);
this.pos.current_order = false;
} else {
this.pos.reloaded_order = order;
this.gui.show_screen('receipt');
this.pos.reloaded_order = false;
}
this.pos.reloaded_order = order;
var skip_screen_state = this.pos.config.iface_print_skip_screen;
// Disable temporarily skip screen if set
this.pos.config.iface_print_skip_screen = false;
this.gui.show_screen('receipt');
this.pos.reloaded_order = false;
// Set skip screen to whatever previous state
this.pos.config.iface_print_skip_screen = skip_screen_state;

// If it's invoiced, we also print the invoice
if (order_data.to_invoice) {
Expand Down

0 comments on commit c9b19fe

Please sign in to comment.