Tower: upload laundry_management 19.0.19.0.4 (via marketplace)

This commit is contained in:
2026-05-01 15:00:20 +00:00
parent b4322a0037
commit e8ba8fa737

View File

@@ -0,0 +1,18 @@
/** @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();
}
},
});