Fix bemade_fsm reports referring to partner_location_id and pid_tag
This commit is contained in:
parent
8007912746
commit
0165e5e0c5
4 changed files with 9 additions and 9 deletions
|
|
@ -20,7 +20,7 @@
|
||||||
########################################################################################
|
########################################################################################
|
||||||
{
|
{
|
||||||
"name": "Improved Field Service Management",
|
"name": "Improved Field Service Management",
|
||||||
"version": "17.0.0.4.0",
|
"version": "17.0.0.4.1",
|
||||||
"summary": (
|
"summary": (
|
||||||
"Adds functionality necessary for managing field service operations at Durpro."
|
"Adds functionality necessary for managing field service operations at Durpro."
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -687,9 +687,9 @@ msgid "Owned Equipments"
|
||||||
msgstr "Équipements possédés"
|
msgstr "Équipements possédés"
|
||||||
|
|
||||||
#. module: bemade_fsm
|
#. module: bemade_fsm
|
||||||
#: model:ir.model.fields,field_description:bemade_fsm.field_bemade_fsm_equipment__pid_tag
|
#: model:ir.model.fields,field_description:bemade_fsm.field_bemade_fsm_equipment__code
|
||||||
msgid "P&ID Tag"
|
msgid "Code"
|
||||||
msgstr "Tag P&ID"
|
msgstr "Code"
|
||||||
|
|
||||||
#. module: bemade_fsm
|
#. module: bemade_fsm
|
||||||
#: model_terms:ir.ui.view,arch_db:bemade_fsm.project_task_view_search_fsm_inherit
|
#: model_terms:ir.ui.view,arch_db:bemade_fsm.project_task_view_search_fsm_inherit
|
||||||
|
|
@ -703,7 +703,7 @@ msgid "Parent Task Template"
|
||||||
msgstr "Gabarit de tâche parent"
|
msgstr "Gabarit de tâche parent"
|
||||||
|
|
||||||
#. module: bemade_fsm
|
#. module: bemade_fsm
|
||||||
#: model:ir.model.fields,field_description:bemade_fsm.field_bemade_fsm_equipment__partner_location_id
|
#: model:ir.model.fields,field_description:bemade_fsm.field_bemade_fsm_equipment__partner_id
|
||||||
msgid "Physical Address"
|
msgid "Physical Address"
|
||||||
msgstr "Adresse physique"
|
msgstr "Adresse physique"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -435,7 +435,7 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
<t t-foreach="doc.equipment_ids" t-as="equipment">
|
<t t-foreach="doc.equipment_ids" t-as="equipment">
|
||||||
<tr>
|
<tr>
|
||||||
<td><span t-esc="equipment.pid_tag" /></td>
|
<td><span t-esc="equipment.code" /></td>
|
||||||
<td><span t-esc="equipment.name" /></td>
|
<td><span t-esc="equipment.name" /></td>
|
||||||
<td>
|
<td>
|
||||||
<t t-foreach="equipment.tag_ids" t-as="application">
|
<t t-foreach="equipment.tag_ids" t-as="application">
|
||||||
|
|
@ -445,7 +445,7 @@
|
||||||
</t>
|
</t>
|
||||||
</td>
|
</td>
|
||||||
<td
|
<td
|
||||||
t-esc="equipment.partner_location_id"
|
t-esc="equipment.partner_id"
|
||||||
t-options='{
|
t-options='{
|
||||||
"widget": "contact",
|
"widget": "contact",
|
||||||
"fields": ["name", "address"]}'
|
"fields": ["name", "address"]}'
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
<field name="valid_equipment_ids" invisible="1" />
|
<field name="valid_equipment_ids" invisible="1" />
|
||||||
<field
|
<field
|
||||||
name="summary_equipment_ids"
|
name="summary_equipment_ids"
|
||||||
context="{'default_partner_location_id': partner_shipping_id,}"
|
context="{'default_partner_id': partner_shipping_id,}"
|
||||||
widget="many2many_tags"
|
widget="many2many_tags"
|
||||||
groups="account.group_delivery_invoice_address"
|
groups="account.group_delivery_invoice_address"
|
||||||
/>
|
/>
|
||||||
|
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
<field
|
<field
|
||||||
name="default_equipment_ids"
|
name="default_equipment_ids"
|
||||||
context="{'default_partner_location_id': partner_shipping_id,}"
|
context="{'default_partner_id': partner_shipping_id,}"
|
||||||
widget="many2many_tags"
|
widget="many2many_tags"
|
||||||
domain="[('id', 'in', valid_equipment_ids)]"
|
domain="[('id', 'in', valid_equipment_ids)]"
|
||||||
groups="account.group_delivery_invoice_address"
|
groups="account.group_delivery_invoice_address"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue