mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
- Convert Moment.js to Luxon. - Replace Underscore.js with native JavaScript code. - Migrate legacy views to the new system and add an architecture parser to separate logic. - added basic test
9 lines
298 B
JavaScript
9 lines
298 B
JavaScript
/** @odoo-module **/
|
|
|
|
export const FAKE_ORDER_FIELDS = {
|
|
display_name: {string: "Display Name", type: "char"},
|
|
date_start: {string: "Date start", type: "date"},
|
|
date_end: {string: "Date end", type: "date"},
|
|
partner_id: {string: "Partner", type: "many2one", relation: "partner"},
|
|
};
|