Skip to content

Commit

Permalink
Merge PR #17 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by andhit-r
  • Loading branch information
ssi-bot committed Sep 13, 2024
2 parents 1135152 + 5a9ee4c commit 70e9788
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,8 @@ class GeneralAuditWSe78a3c6(models.Model):
],
},
)
organization_structure_image = fields.Image(
"Organization Structure Image",
max_width=1920,
max_height=1920,
)
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<field name="business_environment_id" />
</group>
<field name="detail_ids">
<tree editable="top">
<tree>
<field name="sequence" widget="handle" />
<field name="understanding_result" />
<field name="impact_to_financial_report" />
Expand All @@ -60,6 +60,36 @@
domain="[('id','in',parent.account_type_ids)]"
/>
</tree>
<form>
<group name="detail" colspan="4" col="2">
<separator
string="Understanding Result"
colspan="2"
/>
<field
name="understanding_result"
nolabel="1"
colspan="2"
/>
<separator
string="Impact to Financial Report"
colspan="2"
/>
<field
name="impact_to_financial_report"
nolabel="1"
colspan="2"
/>
<separator string="Related Accounts" colspan="2" />
<field
name="related_account_type_ids"
widget="many2many_tags"
domain="[('id','in',parent.account_type_ids)]"
nolabel="1"
colspan="2"
/>
</group>
</form>
</field>
</page>
</xpath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,15 @@
<data>
<xpath expr="//page[1]" position="before">
<page name="struture" string="Structures">

<field name="organtization_structure_ids">
<tree editable="top">
<field name="sequence" widget="handle" />
<field name="name" />
<field name="responsibility" />
</tree>
</field>
<field name="organization_structure_image" widget="image" />
</page>
</xpath>
</data>
Expand Down

0 comments on commit 70e9788

Please sign in to comment.