You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
402 B
13 lines
402 B
/** @odoo-module */
|
|
|
|
import { PosStore } from "@point_of_sale/app/store/pos_store";
|
|
import { patch } from "@web/core/utils/patch";
|
|
|
|
patch(PosStore.prototype, {
|
|
async _processData(loadedData) {
|
|
//@override
|
|
await super._processData(...arguments);
|
|
this.product_by_lot = loadedData['multi.barcode.products'];
|
|
this.product_by_lot_id = loadedData['multi_barcode'];
|
|
}
|
|
});
|
|
|