- fusion_claims: separated field service logic, updated controllers/views - fusion_tasks: updated task views and map integration - fusion_authorizer_portal: added page 11 signing, schedule booking, migrations - fusion_shipping: new standalone shipping module (Canada Post, FedEx, DHL, Purolator) - fusion_ltc_management: new standalone LTC management module
43 lines
2.0 KiB
XML
43 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!-- Landscape paper format for nursing station report -->
|
|
<record id="paperformat_ltc_nursing_station" model="report.paperformat">
|
|
<field name="name">LTC Nursing Station (Landscape)</field>
|
|
<field name="default">False</field>
|
|
<field name="format">Letter</field>
|
|
<field name="orientation">Landscape</field>
|
|
<field name="margin_top">20</field>
|
|
<field name="margin_bottom">15</field>
|
|
<field name="margin_left">10</field>
|
|
<field name="margin_right">10</field>
|
|
<field name="header_line">False</field>
|
|
<field name="header_spacing">10</field>
|
|
<field name="dpi">90</field>
|
|
</record>
|
|
|
|
<!-- Nursing Station Report action -->
|
|
<record id="action_report_ltc_nursing_station" model="ir.actions.report">
|
|
<field name="name">Nursing Station Repair Log</field>
|
|
<field name="model">fusion.ltc.facility</field>
|
|
<field name="report_type">qweb-pdf</field>
|
|
<field name="report_name">fusion_ltc_management.report_ltc_nursing_station_document</field>
|
|
<field name="report_file">fusion_ltc_management.report_ltc_nursing_station_document</field>
|
|
<field name="binding_model_id" ref="model_fusion_ltc_facility"/>
|
|
<field name="binding_type">report</field>
|
|
<field name="paperformat_id" ref="paperformat_ltc_nursing_station"/>
|
|
</record>
|
|
|
|
<!-- Repair Summary Report action -->
|
|
<record id="action_report_ltc_repairs_summary" model="ir.actions.report">
|
|
<field name="name">Repair Summary</field>
|
|
<field name="model">fusion.ltc.facility</field>
|
|
<field name="report_type">qweb-pdf</field>
|
|
<field name="report_name">fusion_ltc_management.report_ltc_repairs_summary_document</field>
|
|
<field name="report_file">fusion_ltc_management.report_ltc_repairs_summary_document</field>
|
|
<field name="binding_model_id" ref="model_fusion_ltc_facility"/>
|
|
<field name="binding_type">report</field>
|
|
</record>
|
|
|
|
</odoo>
|