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.
11 lines
406 B
11 lines
406 B
/** @odoo-module */
|
|
import { patch } from "@web/core/utils/patch";
|
|
import { PosStore } from "@point_of_sale/app/store/pos_store";
|
|
// Pos session
|
|
patch(PosStore.prototype, {
|
|
async _processData(loadedData) {
|
|
await super._processData(...arguments);
|
|
// Load field that in pos.order.question into pos.
|
|
this.order_questions = loadedData["pos.order.question"] || [];
|
|
}
|
|
});
|
|
|