Browse Source

[IMP] Added group to account financial report module.

6.0
Nhomar Hernandez nhomar@vauxoo.com 12 years ago
parent
commit
98836d76f0
  1. 27
      account_financial_report/__openerp__.py
  2. 9
      account_financial_report/security/security.xml
  3. 3
      account_financial_report/wizard/account_report_wizard.xml

27
account_financial_report/__openerp__.py

@ -25,21 +25,22 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
##############################################################################
{
"name" : "Common financial reports" ,
"version" : "1.0" ,
"author" : "OpenERP Venezuela" ,
"website" : "http://wiki.openerp.org.ve/" ,
"depends" : ["base","account"] ,
"category" : "Localisation/Accounting" ,
"name" : "Common financial reports",
"version" : "1.0",
"author" : "OpenERP Venezuela",
"website" : "http://wiki.openerp.org.ve/",
"depends" : ["base","account"],
"category" : "Localisation/Accounting",
"description": """
""" ,
"init_xml" : [] ,
"demo_xml" : [] ,
""",
"init_xml" : [],
"demo_xml" : [],
"update_xml" : [
"wizard/wizard_report_report.xml" ,
"wizard/account_report_wizard.xml" ,
"security/security.xml",
"wizard/wizard_report_report.xml",
"wizard/account_report_wizard.xml",
"view/account_view.xml",
] ,
"active": False ,
],
"active": False,
"installable": True
}

9
account_financial_report/security/security.xml

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record model="res.groups" id="group_afreport">
<field name="name">Account Financial Report</field>
</record>
</data>
</openerp>

3
account_financial_report/wizard/account_report_wizard.xml

@ -65,6 +65,7 @@
name="Reporte Balance 4 Columnas"
parent="account.final_accounting_reports"
sequence="99"
groups="account_financial_report.group_afreport"
action="action_wizard_report"/>
@ -128,6 +129,7 @@
name="Reporte Balance 2 Columnas"
parent="account.final_accounting_reports"
sequence="99"
groups="account_financial_report.group_afreport"
action="action_wizard_report2"/>
<record id="wizard_report_view3" model="ir.ui.view">
@ -190,6 +192,7 @@
name="Reporte Balance "
parent="account.final_accounting_reports"
sequence="99"
groups="account_financial_report.group_afreport"
action="action_wizard_report3"/>
</data>

Loading…
Cancel
Save