19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:31:47 +01:00
parent accf5918df
commit 6e65e8c877
688 changed files with 225434 additions and 199401 deletions

View file

@ -0,0 +1,5 @@
import { models } from "@web/../tests/web_test_helpers";
export class ProductDocument extends models.ServerModel {
_name = "product.document";
}

View file

@ -0,0 +1,13 @@
import { mailModels } from "@mail/../tests/mail_test_helpers";
import { fields } from "@web/../tests/web_test_helpers";
export class ResFake extends mailModels.ResFake {
duration = fields.Float({ string: "duration" });
_views = {
form: /* xml */ `
<form>
<field name="duration" widget="mrp_timer" readonly="1"/>
</form>`,
};
}