- Custom modules: hazard_shopify, hazard_inventory_report, hazard_website - Third-party modules: bi_sql_editor, query_deluxe, sql_request_abstract, l10n_mx_sat_sync_itadmin_ee - Docker setup: Odoo 16 + PostgreSQL 17 - Utility scripts: backup_hazard.sh, update_module.py - Agent configuration: .agents/AGENTS.md - Security: Enterprise modules, credentials, backups and production data excluded via .gitignore
24 lines
800 B
XML
24 lines
800 B
XML
<?xml version="1.0"?>
|
|
|
|
<odoo>
|
|
<record id="pdforientation_form" model="ir.ui.view">
|
|
<field name="name">pdforientation.form</field>
|
|
<field name="model">pdforientation</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<group>
|
|
<field name="query_name" invisible="0" readonly="1"/>
|
|
<field name="orientation" widget="radio" options="{'horizontal': true}"/>
|
|
</group>
|
|
</sheet>
|
|
|
|
<footer>
|
|
<button string="Print" name="print_pdf" type="object" class="oe_highlight"/>
|
|
<button string="Cancel" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|