Commit 7a1e7fb9 by Kunto Bregananta Adi
2 parents 8b5e3e49 cfd9157d
......@@ -22,6 +22,8 @@ Indonesia Goverment Accounting
'data/account.account.csv',
'views/account.xml',
'views/account_account_views.xml',
'views/account_account_type_views.xml',
'views/account_group_views.xml',
'views/menus.xml',
],
'demo': [
......
......@@ -2,54 +2,54 @@
<odoo>
<template id="_assets_primary_variables" inherit_id="web._assets_primary_variables">
<xpath expr="//link[last()]" position="after">
<link rel="stylesheet" type="text/scss" href="/account/static/src/scss/variables.scss"/>
<link rel="stylesheet" type="text/scss" href="/idg_account/static/src/scss/variables.scss"/>
</xpath>
</template>
<template id="assets_backend" name="account assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/account/static/src/css/account_bank_and_cash.css"/>
<link rel="stylesheet" href="/account/static/src/css/account.css"/>
<link rel="stylesheet" href="/account/static/src/css/tax_group.css"/>
<link rel="stylesheet" type="text/scss" href="/account/static/src/scss/account_reconciliation.scss"/>
<link rel="stylesheet" type="text/scss" href="/account/static/src/scss/account_journal_dashboard.scss"/>
<link rel="stylesheet" type="text/scss" href="/account/static/src/scss/account_dashboard.scss"/>
<link rel="stylesheet" type="text/scss" href="/account/static/src/scss/account_searchpanel.scss"/>
<link rel="stylesheet" href="/idg_account/static/src/css/account_bank_and_cash.css"/>
<link rel="stylesheet" href="/idg_account/static/src/css/account.css"/>
<link rel="stylesheet" href="/idg_account/static/src/css/tax_group.css"/>
<link rel="stylesheet" type="text/scss" href="/idg_account/static/src/scss/account_reconciliation.scss"/>
<link rel="stylesheet" type="text/scss" href="/idg_account/static/src/scss/account_journal_dashboard.scss"/>
<link rel="stylesheet" type="text/scss" href="/idg_account/static/src/scss/account_dashboard.scss"/>
<link rel="stylesheet" type="text/scss" href="/idg_account/static/src/scss/account_searchpanel.scss"/>
<link rel="stylesheet" href="/account/static/src/scss/section_and_note_backend.scss"/>
<link rel="stylesheet" type="text/scss" href="/account/static/src/scss/account_activity.scss"/>
<link rel="stylesheet" href="/idg_account/static/src/scss/section_and_note_backend.scss"/>
<link rel="stylesheet" type="text/scss" href="/idg_account/static/src/scss/account_activity.scss"/>
<script type="text/javascript" src="/account/static/src/js/account_payment_field.js"></script>
<script type="text/javascript" src="/account/static/src/js/account_resequence_field.js"></script>
<script type="text/javascript" src="/account/static/src/js/grouped_view_widget.js"></script>
<script type="text/javascript" src="/account/static/src/js/mail_activity.js"></script>
<script type="text/javascript" src="/account/static/src/js/tax_group.js"></script>
<script type="text/javascript" src="/idg_account/static/src/js/account_payment_field.js"></script>
<script type="text/javascript" src="/idg_account/static/src/js/account_resequence_field.js"></script>
<script type="text/javascript" src="/idg_account/static/src/js/grouped_view_widget.js"></script>
<script type="text/javascript" src="/idg_account/static/src/js/mail_activity.js"></script>
<script type="text/javascript" src="/idg_account/static/src/js/tax_group.js"></script>
<script type="text/javascript" src="/account/static/src/js/bank_statement.js"></script>
<script type="text/javascript" src="/account/static/src/js/section_and_note_fields_backend.js"></script>
<script type="text/javascript" src="/account/static/src/js/tours/account.js"></script>
<script type="text/javascript" src="/account/static/src/js/bills_tree_upload.js"/>
<script type="text/javascript" src="/account/static/src/js/account_selection.js"/>
<script type="text/javascript" src="/idg_account/static/src/js/bank_statement.js"></script>
<script type="text/javascript" src="/idg_account/static/src/js/section_and_note_fields_backend.js"></script>
<script type="text/javascript" src="/idg_account/static/src/js/tours/account.js"></script>
<script type="text/javascript" src="/idg_account/static/src/js/bills_tree_upload.js"/>
<script type="text/javascript" src="/idg_account/static/src/js/account_selection.js"/>
</xpath>
</template>
<template id="assets_frontend" name="account assets" inherit_id="web.assets_frontend">
<xpath expr="." position="inside">
<script type="text/javascript" src="/account/static/src/js/account_portal_sidebar.js"></script>
<script type="text/javascript" src="/idg_account/static/src/js/account_portal_sidebar.js"></script>
</xpath>
</template>
<template id="assets_tests" name="Account Assets Tests" inherit_id="web.assets_tests">
<xpath expr="." position="inside">
<script type="text/javascript" src="/account/static/tests/tours/account_dashboard_setup_bar_tests.js"></script>
<script type="text/javascript" src="/account/static/tests/tours/tax_group_tests.js"></script>
<script type="text/javascript" src="/idg_account/static/tests/tours/account_dashboard_setup_bar_tests.js"></script>
<script type="text/javascript" src="/idg_account/static/tests/tours/tax_group_tests.js"></script>
</xpath>
</template>
<template id="qunit_suite" name="account tests" inherit_id="web.qunit_suite_tests">
<xpath expr="//script[contains(@src, '/web/static/tests/views/kanban_tests.js')]" position="after">
<script type="text/javascript" src="/account/static/tests/account_payment_field_tests.js"></script>
<script type="text/javascript" src="/account/static/tests/section_and_note_tests.js"></script>
<script type="text/javascript" src="/idg_account/static/tests/account_payment_field_tests.js"></script>
<script type="text/javascript" src="/idg_account/static/tests/section_and_note_tests.js"></script>
</xpath>
</template>
</odoo>
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_account_type_search" model="ir.ui.view">
<field name="name">account.account.type.search</field>
<field name="model">account.account.type</field>
<field name="arch" type="xml">
<search string="Account Type">
<field name="name" filter_domain="['|', ('name','ilike',self), ('type','ilike',self)]" string="Account Type"/>
</search>
</field>
</record>
<record id="view_account_type_tree" model="ir.ui.view">
<field name="name">account.account.type.tree</field>
<field name="model">account.account.type</field>
<field name="arch" type="xml">
<tree string="Account Type">
<field name="name"/>
<field name="type"/>
</tree>
</field>
</record>
<record id="view_account_type_form" model="ir.ui.view">
<field name="name">account.account.type.form</field>
<field name="model">account.account.type</field>
<field name="arch" type="xml">
<form string="Account Type">
<group>
<group>
<field name="name"/>
<field name="type"/>
</group>
<group>
<field name="include_initial_balance"/>
</group>
</group>
<separator string="Description"/>
<field name="note"/>
</form>
</field>
</record>
<record id="action_account_type_form" model="ir.actions.act_window">
<field name="name">Account Types</field>
<field name="res_model">account.account.type</field>
<field name="view_mode">tree,form</field>
<field name="search_view_id" ref="view_account_type_search"/>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Define a new account type
</p><p>
An account type is used to determine how an account is used in
each journal. The deferral method of an account type determines
the process for the annual closing. Reports such as the Balance
Sheet and the Profit and Loss report use the category
(profit/loss or balance sheet).
</p>
</field>
</record>
</data>
</odoo>
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_account_group_form" model="ir.ui.view">
<field name="name">account.group.form</field>
<field name="model">account.group</field>
<field name="arch" type="xml">
<form string="Account Group">
<sheet>
<group>
<field name="name"/>
<field name="parent_id"/>
<label for="code_prefix_start" string="Code Prefix"/>
<div>
From <field name="code_prefix_start" class="oe_inline"/> to <field name="code_prefix_end" class="oe_inline"/>
</div>
<!-- <field name="company_id" options="{'no_create': True}" groups="base.group_multi_company"/>-->
</group>
</sheet>
</form>
</field>
</record>
<record id="view_account_group_search" model="ir.ui.view">
<field name="name">account.group.search</field>
<field name="model">account.group</field>
<field name="arch" type="xml">
<search string="Account groups">
<field name="name"
filter_domain="['|', ('code_prefix_start', '=like', str(self) + '%'), ('name', 'ilike', self)]"
string="Account group"/>
</search>
</field>
</record>
<record id="view_account_group_tree" model="ir.ui.view">
<field name="name">account.group.tree</field>
<field name="model">account.group</field>
<field name="arch" type="xml">
<tree string="Account Group">
<field name="code_prefix_start"/>
<field name="code_prefix_end"/>
<field name="name"/>
<!-- <field name="company_id" groups="base.group_multi_company"/>-->
</tree>
</field>
</record>
</data>
</odoo>
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="action_account_group_form" model="ir.actions.act_window">
<field name="name">Account Group</field>
<field name="res_model">account.group</field>
<field name="view_mode">tree,form</field>
<field name="search_view_id" ref="view_account_group_search"/>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Define a new account group
</p>
</field>
</record>
</data>
<!-- Top menu item -->
<menuitem id="idgaccnt_menu_root"
name="IDG Account"
......@@ -17,5 +30,15 @@
parent="config_idgaccnt_menu"
action="action_idgaccnt_coa"
sequence="2"/>
<menuitem id="type_idgaccnt_menu"
name="Acccount Type"
parent="config_idgaccnt_menu"
action="action_account_type_form"
sequence="2"/>
<menuitem id="group_idgaccnt_menu"
name="Acccount Group"
parent="config_idgaccnt_menu"
action="action_account_group_form"
sequence="2"/>
</odoo>
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!