19 lines
511 B
JavaScript
19 lines
511 B
JavaScript
/** @odoo-module */
|
|
import { patch } from "@web/core/utils/patch";
|
|
import { ControlButtons } from "@point_of_sale/app/screens/product_screen/control_buttons/control_buttons";
|
|
|
|
patch(ControlButtons.prototype, {
|
|
onClickSettleDues() {
|
|
this.pos.settleLaundryDues();
|
|
if (this.props.close) {
|
|
this.props.close();
|
|
}
|
|
},
|
|
onClickViewLaundryOrders() {
|
|
this.pos.viewLaundryOrders();
|
|
if (this.props.close) {
|
|
this.props.close();
|
|
}
|
|
},
|
|
});
|