-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[UPD] ssi_general_audit_worksheet_control_risk
* Menambahkan master data assertion type * Memperbaiki KK IT Control Evaluation
- Loading branch information
Showing
9 changed files
with
109 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
ssi_general_audit_worksheet_control_risk/models/general_audit_assersion_type.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copyright 2022 OpenSynergy Indonesia | ||
# Copyright 2022 PT. Simetri Sinergi Indonesia | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl-3.0-standalone.html). | ||
|
||
from odoo import models | ||
|
||
|
||
class GeneralAuditAssersionType(models.Model): | ||
_name = "general_audit_assersion_type" | ||
_inherit = [ | ||
"mixin.master_data", | ||
] | ||
_description = "General Audit - Assersion Type" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
64 changes: 64 additions & 0 deletions
64
ssi_general_audit_worksheet_control_risk/views/general_audit_assersion_type_views.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?xml version="1.0" ?> | ||
<!-- Copyright 2022 OpenSynergy Indonesia | ||
Copyright 2022 PT. Simetri Sinergi Indonesia | ||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl-3.0-standalone.html). --> | ||
<odoo> | ||
|
||
<record id="general_audit_assersion_type_view_search" model="ir.ui.view"> | ||
<field name="name">general_audit_assersion_type - search</field> | ||
<field name="model">general_audit_assersion_type</field> | ||
<field | ||
name="inherit_id" | ||
ref="ssi_master_data_mixin.mixin_master_data_view_search" | ||
/> | ||
<field name="mode">primary</field> | ||
<field name="arch" type="xml"> | ||
<data /> | ||
</field> | ||
</record> | ||
|
||
<record id="general_audit_assersion_type_view_tree" model="ir.ui.view"> | ||
<field name="name">general_audit_assersion_type - tree</field> | ||
<field name="model">general_audit_assersion_type</field> | ||
<field | ||
name="inherit_id" | ||
ref="ssi_master_data_mixin.mixin_master_data_view_tree" | ||
/> | ||
<field name="mode">primary</field> | ||
<field name="arch" type="xml"> | ||
<data> | ||
</data> | ||
</field> | ||
</record> | ||
|
||
<record id="general_audit_assersion_type_view_form" model="ir.ui.view"> | ||
<field name="name">general_audit_assersion_type - form</field> | ||
<field name="model">general_audit_assersion_type</field> | ||
<field | ||
name="inherit_id" | ||
ref="ssi_master_data_mixin.mixin_master_data_view_form" | ||
/> | ||
<field name="mode">primary</field> | ||
<field name="arch" type="xml"> | ||
<data> | ||
</data> | ||
</field> | ||
</record> | ||
|
||
<record id="general_audit_assersion_type_action" model="ir.actions.act_window"> | ||
<field name="name">Assersion Types</field> | ||
<field name="type">ir.actions.act_window</field> | ||
<field name="res_model">general_audit_assersion_type</field> | ||
<field name="view_mode">tree,form</field> | ||
</record> | ||
|
||
<menuitem | ||
id="general_audit_assersion_type_menu" | ||
name="Assersion Types" | ||
parent="ssi_general_audit.menu_configuration_general_audit" | ||
action="general_audit_assersion_type_action" | ||
sequence="110" | ||
groups="general_audit_assersion_type_group" | ||
/> | ||
|
||
</odoo> |