mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-19 03:32:00 +02:00
Initial commit: Technical packages
This commit is contained in:
commit
3473fa71a0
873 changed files with 297766 additions and 0 deletions
|
|
@ -0,0 +1,217 @@
|
|||
/** @odoo-module **/
|
||||
|
||||
import { barcodeGenericHandlers } from "@barcodes/barcode_handlers";
|
||||
import { barcodeService } from "@barcodes/barcode_service";
|
||||
import {
|
||||
editInput,
|
||||
getFixture,
|
||||
mockTimeout,
|
||||
nextTick,
|
||||
patchWithCleanup,
|
||||
} from "@web/../tests/helpers/utils";
|
||||
import { makeView, setupViewRegistries } from "@web/../tests/views/helpers";
|
||||
import { registry } from "@web/core/registry";
|
||||
import { simulateBarCode } from "../helpers";
|
||||
|
||||
const serviceRegistry = registry.category("services");
|
||||
|
||||
let serverData;
|
||||
let target;
|
||||
|
||||
QUnit.module("Barcodes", (hooks) => {
|
||||
hooks.beforeEach(() => {
|
||||
target = getFixture();
|
||||
serverData = {
|
||||
models: {
|
||||
order: {
|
||||
fields: {
|
||||
_barcode_scanned: { string: "Barcode scanned", type: "char" },
|
||||
line_ids: {
|
||||
string: "Order lines",
|
||||
type: "one2many",
|
||||
relation: "order_line",
|
||||
},
|
||||
},
|
||||
records: [{ id: 1, line_ids: [1, 2] }],
|
||||
},
|
||||
order_line: {
|
||||
fields: {
|
||||
product_id: { string: "Product", type: "many2one", relation: "product" },
|
||||
product_barcode: { string: "Product Barcode", type: "char" },
|
||||
quantity: { string: "Quantity", type: "integer" },
|
||||
},
|
||||
records: [
|
||||
{ id: 1, product_id: 1, quantity: 0, product_barcode: "1234567890" },
|
||||
{ id: 2, product_id: 2, quantity: 0, product_barcode: "0987654321" },
|
||||
],
|
||||
},
|
||||
product: {
|
||||
fields: {
|
||||
name: { string: "Product name", type: "char" },
|
||||
int_field: { string: "Integer", type: "integer" },
|
||||
int_field_2: { string: "Integer", type: "integer" },
|
||||
barcode: { string: "Barcode", type: "char" },
|
||||
},
|
||||
records: [
|
||||
{ id: 1, name: "Large Cabinet", barcode: "1234567890" },
|
||||
{ id: 2, name: "Cabinet with Doors", barcode: "0987654321" },
|
||||
],
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
setupViewRegistries();
|
||||
serviceRegistry.add("barcode", barcodeService, { force: true });
|
||||
serviceRegistry.add("barcode_autoclick", barcodeGenericHandlers, { force: true });
|
||||
});
|
||||
|
||||
QUnit.test("Button with barcode_trigger", async (assert) => {
|
||||
const form = await makeView({
|
||||
type: "form",
|
||||
resModel: "product",
|
||||
serverData,
|
||||
arch: `<form>
|
||||
<header>
|
||||
<button name="do_something" string="Validate" type="object" barcode_trigger="doit"/>
|
||||
<button name="do_something_else" string="Validate" type="object" invisible="1" barcode_trigger="dothat"/>
|
||||
</header>
|
||||
</form>`,
|
||||
resId: 2,
|
||||
});
|
||||
|
||||
patchWithCleanup(form.env.services.action, {
|
||||
doActionButton: (data) => {
|
||||
assert.step(data.name);
|
||||
},
|
||||
});
|
||||
patchWithCleanup(form.env.services.notification, {
|
||||
add: (params) => {
|
||||
assert.step(params.type);
|
||||
},
|
||||
});
|
||||
|
||||
// O-BTN.doit
|
||||
simulateBarCode(["O", "-", "B", "T", "N", ".", "d", "o", "i", "t", "Enter"]);
|
||||
await nextTick();
|
||||
// O-BTN.dothat (should not call execute_action as the button isn't visible)
|
||||
simulateBarCode(["O", "-", "B", "T", "N", ".", "d", "o", "t", "h", "a", "t", "Enter"]);
|
||||
await nextTick();
|
||||
assert.verifySteps(["do_something"]);
|
||||
|
||||
assert.containsOnce(target, ".o_form_statusbar > .o_statusbar_buttons");
|
||||
});
|
||||
|
||||
QUnit.test(
|
||||
"Two buttons with same barcode_trigger and the same string and action",
|
||||
async function (assert) {
|
||||
const form = await makeView({
|
||||
type: "form",
|
||||
resModel: "product",
|
||||
serverData,
|
||||
arch: `<form>
|
||||
<header>
|
||||
<button name="do_something" string="Validate" type="object" invisible="0" barcode_trigger="doit"/>
|
||||
<button name="do_something" string="Validate" type="object" invisible="1" barcode_trigger="doit"/>
|
||||
</header>
|
||||
</form>`,
|
||||
resId: 2,
|
||||
});
|
||||
|
||||
patchWithCleanup(form.env.services.action, {
|
||||
doActionButton: (data) => {
|
||||
assert.step(data.name);
|
||||
},
|
||||
});
|
||||
patchWithCleanup(form.env.services.notification, {
|
||||
add: (params) => {
|
||||
assert.step(params.type);
|
||||
},
|
||||
});
|
||||
// O-BTN.doit should call execute_action as the first button is visible
|
||||
simulateBarCode(["O", "-", "B", "T", "N", ".", "d", "o", "i", "t", "Enter"]);
|
||||
await nextTick();
|
||||
assert.verifySteps(["do_something"]);
|
||||
}
|
||||
);
|
||||
|
||||
QUnit.test("edit, save and cancel buttons", async function (assert) {
|
||||
await makeView({
|
||||
type: "form",
|
||||
resModel: "product",
|
||||
serverData,
|
||||
arch: '<form><field name="display_name"/></form>',
|
||||
mockRPC: function (route, args) {
|
||||
if (args.method === "write") {
|
||||
assert.step("save");
|
||||
}
|
||||
},
|
||||
resId: 1,
|
||||
});
|
||||
|
||||
// O-CMD.EDIT
|
||||
simulateBarCode(["O", "-", "C", "M", "D", ".", "E", "D", "I", "T", "Enter"]);
|
||||
await nextTick();
|
||||
assert.containsOnce(target, ".o_form_editable", "should have switched to 'edit' mode");
|
||||
// dummy change to check that it actually saves
|
||||
await editInput(target.querySelector(".o_field_widget input"), null, "test");
|
||||
// O-CMD.SAVE
|
||||
simulateBarCode(["O", "-", "C", "M", "D", ".", "S", "A", "V", "E", "Enter"]);
|
||||
await nextTick();
|
||||
assert.verifySteps(["save"], "should have saved");
|
||||
|
||||
// O-CMD.EDIT
|
||||
simulateBarCode(["O", "-", "C", "M", "D", ".", "E", "D", "I", "T", "Enter"]);
|
||||
await nextTick();
|
||||
// dummy change to check that it correctly discards
|
||||
await editInput(target.querySelector(".o_field_widget input"), null, "test");
|
||||
// O-CMD.CANCEL
|
||||
simulateBarCode(["O", "-", "C", "M", "D", ".", "D", "I", "S", "C", "A", "R", "D", "Enter"]);
|
||||
await nextTick();
|
||||
assert.verifySteps([], "should not have saved");
|
||||
});
|
||||
|
||||
QUnit.test("pager buttons", async function (assert) {
|
||||
const mock = mockTimeout();
|
||||
|
||||
await makeView({
|
||||
type: "form",
|
||||
resModel: "product",
|
||||
serverData,
|
||||
arch: '<form><field name="display_name"/></form>',
|
||||
resId: 1,
|
||||
resIds: [1, 2],
|
||||
});
|
||||
|
||||
assert.strictEqual(target.querySelector(".o_field_widget input").value, "Large Cabinet");
|
||||
|
||||
// O-CMD.PAGER-NEXT
|
||||
simulateBarCode(["O", "-", "C", "M", "D", ".", "N", "E", "X", "T", "Enter"]);
|
||||
await nextTick();
|
||||
assert.strictEqual(
|
||||
target.querySelector(".o_field_widget input").value,
|
||||
"Cabinet with Doors"
|
||||
);
|
||||
|
||||
// O-CMD.PAGER-PREV
|
||||
simulateBarCode(["O", "-", "C", "M", "D", ".", "P", "R", "E", "V", "Enter"]);
|
||||
await nextTick();
|
||||
assert.strictEqual(target.querySelector(".o_field_widget input").value, "Large Cabinet");
|
||||
|
||||
// O-CMD.PAGER-LAST
|
||||
simulateBarCode(["O","-","C","M","D",".","P","A","G","E","R","-","L","A","S","T","Enter"]);
|
||||
// need to await 2 macro steps
|
||||
await mock.advanceTime(20);
|
||||
await mock.advanceTime(20);
|
||||
assert.strictEqual(
|
||||
target.querySelector(".o_field_widget input").value,
|
||||
"Cabinet with Doors"
|
||||
);
|
||||
|
||||
// O-CMD.PAGER-FIRST
|
||||
simulateBarCode(["O","-","C","M","D",".","P","A","G","E","R","-","F","I","R","S","T","Enter"]);
|
||||
// need to await 2 macro steps
|
||||
await mock.advanceTime(20);
|
||||
await mock.advanceTime(20);
|
||||
assert.strictEqual(target.querySelector(".o_field_widget input").value, "Large Cabinet");
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue