mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[IMP] Flake8 [IMP] github changes [IMP] Placeholder in notes remove <p><br></p> [UPD] Update agreement_serviceprofile.pot Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: contract-12.0/contract-12.0-agreement_serviceprofile Translate-URL: https://translation.odoo-community.org/projects/contract-12-0/contract-12-0-agreement_serviceprofile/ [UPD] README.rst
25 lines
970 B
XML
25 lines
970 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Agreement Form View -->
|
|
<record id="agreement_fsm_order_form_view" model="ir.ui.view">
|
|
<field name="name">agreement.form.fsm.order.view</field>
|
|
<field name="model">agreement</field>
|
|
<field name="inherit_id" ref="agreement_legal.partner_agreement_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<notebook position="inside">
|
|
<page name="serviceprofiles" string="Service Profiles">
|
|
<field name="serviceprofile_ids">
|
|
<tree>
|
|
<field name="name"/>
|
|
</tree>
|
|
<form>
|
|
<field name="name"/>
|
|
<field name="notes" placeholder="Add Notes Here..."/>
|
|
</form>
|
|
</field>
|
|
</page>
|
|
</notebook>
|
|
</field>
|
|
</record>
|
|
</odoo>
|