Initial squashed commit

This commit is contained in:
hoangvv
2026-05-12 18:58:14 +07:00
commit 0b5c2ce91a
54896 changed files with 28050323 additions and 0 deletions
@@ -0,0 +1,10 @@
import { fields, models } from "@web/../tests/web_test_helpers";
export class Partner extends models.Model {
_name = "partner";
message = fields.Char();
foo = fields.Char();
mobile = fields.Char();
partner_ids = fields.One2many({ relation: "partner" });
}