mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-27 09:02:05 +02:00
19.0 vanilla
This commit is contained in:
parent
6e54c1af6c
commit
3ca647e428
1087 changed files with 132065 additions and 108499 deletions
|
|
@ -0,0 +1,67 @@
|
|||
/* global posmodel */
|
||||
|
||||
import { registry } from "@web/core/registry";
|
||||
import * as PaymentScreen from "@point_of_sale/../tests/pos/tours/utils/payment_screen_util";
|
||||
import * as ReceiptScreen from "@point_of_sale/../tests/pos/tours/utils/receipt_screen_util";
|
||||
import * as FloorScreen from "@pos_restaurant/../tests/tours/utils/floor_screen_util";
|
||||
import * as ChromePos from "@point_of_sale/../tests/pos/tours/utils/chrome_util";
|
||||
import * as ChromeRestaurant from "@pos_restaurant/../tests/tours/utils/chrome";
|
||||
import * as ProductScreenPos from "@point_of_sale/../tests/pos/tours/utils/product_screen_util";
|
||||
import * as ProductScreenResto from "@pos_restaurant/../tests/tours/utils/product_screen_util";
|
||||
|
||||
const Chrome = { ...ChromePos, ...ChromeRestaurant };
|
||||
const ProductScreen = { ...ProductScreenPos, ...ProductScreenResto };
|
||||
|
||||
const getRandomTable = () => {
|
||||
const tables = posmodel.currentFloor.table_ids;
|
||||
return tables[Math.floor(Math.random() * tables.length)].table_number;
|
||||
};
|
||||
|
||||
const getRandomTableWithOrder = () => {
|
||||
const tables = posmodel.currentFloor.table_ids.filter(
|
||||
(table) => table.backLink("<-pos.order.table_id").length > 0
|
||||
);
|
||||
return tables[Math.floor(Math.random() * tables.length)].table_number;
|
||||
};
|
||||
|
||||
const getRandomProduct = () => {
|
||||
const products = posmodel.models["product.product"].filter(
|
||||
(p) =>
|
||||
!p.isConfigurable() &&
|
||||
!p.isCombo() &&
|
||||
!p.isTracked() &&
|
||||
p.id !== posmodel.config.tip_product_id?.id &&
|
||||
!posmodel.config._pos_special_products_ids?.includes(p.id)
|
||||
);
|
||||
return products[Math.floor(Math.random() * products.length)].name;
|
||||
};
|
||||
|
||||
registry.category("web_tour.tours").add("PoSFakeTourRestaurant", {
|
||||
steps: () =>
|
||||
[
|
||||
FloorScreen.clickTable(getRandomTable()),
|
||||
ProductScreen.clickDisplayedProduct(getRandomProduct()),
|
||||
ProductScreen.clickDisplayedProduct(getRandomProduct()),
|
||||
ProductScreen.clickDisplayedProduct(getRandomProduct()),
|
||||
Chrome.clickPlanButton(),
|
||||
FloorScreen.clickTable(getRandomTable()),
|
||||
ProductScreen.clickDisplayedProduct(getRandomProduct()),
|
||||
ProductScreen.clickDisplayedProduct(getRandomProduct()),
|
||||
ProductScreen.clickDisplayedProduct(getRandomProduct()),
|
||||
ProductScreen.clickPayButton(),
|
||||
PaymentScreen.clickPaymentMethod("Cash"),
|
||||
PaymentScreen.clickValidate(),
|
||||
ReceiptScreen.clickNextOrder(),
|
||||
].flat(),
|
||||
});
|
||||
|
||||
registry.category("web_tour.tours").add("PoSFakeTourTransferOrder", {
|
||||
steps: () =>
|
||||
[
|
||||
FloorScreen.clickTable(getRandomTableWithOrder()),
|
||||
ProductScreen.clickControlButton("Transfer"),
|
||||
FloorScreen.clickTable(getRandomTable()),
|
||||
ProductScreen.clickDisplayedProduct(getRandomProduct()),
|
||||
Chrome.clickPlanButton(),
|
||||
].flat(),
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue