From 2a18349ad6fb193b01740433df5df4f207b53dd4 Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Tue, 3 Feb 2009 15:18:30 +0530 Subject: [PATCH 1/9] bug fix on base_contact module for res.partner.function demo bzr revid: mra@tinyerp.com-20090203094830-hl8h6ymwfds3q1yt --- addons/base_contact/base_contact_demo.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/base_contact/base_contact_demo.xml b/addons/base_contact/base_contact_demo.xml index fe6266e6bba..c92d6294ab5 100644 --- a/addons/base_contact/base_contact_demo.xml +++ b/addons/base_contact/base_contact_demo.xml @@ -4,7 +4,7 @@ - + PA From d75143727d8d4a31ad58cafc70a9cfb7e1797f61 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Tue, 3 Feb 2009 11:50:03 +0100 Subject: [PATCH 2/9] [FIX] Check if the iban key is present and has a value in the dictionary lp bug: https://launchpad.net/bugs/323238 fixed bzr revid: stephane@tinyerp.com-20090203105003-4ix3ct06qj93xeux --- addons/base_iban/base_iban.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/base_iban/base_iban.py b/addons/base_iban/base_iban.py index aebaa940a9a..2d91e1d5b4c 100644 --- a/addons/base_iban/base_iban.py +++ b/addons/base_iban/base_iban.py @@ -38,13 +38,13 @@ class res_partner_bank(osv.osv): def create(self, cr, uid, vals, context={}): #overwrite to format the iban number correctly - if vals.has_key('iban'): + if 'iban' in vals and vals['iban']: vals['iban'] = _format_iban(vals['iban']) return super(res_partner_bank, self).create(cr, uid, vals, context) def write(self, cr, uid, ids, vals, context={}): #overwrite to format the iban number correctly - if vals.has_key('iban'): + if 'iban' in vals and vals['iban']: vals['iban'] = _format_iban(vals['iban']) return super(res_partner_bank, self).write(cr, uid, ids, vals, context) From e25ef1a054dbca340e6746940b2cd83e6eb3265e Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Tue, 3 Feb 2009 13:43:27 +0100 Subject: [PATCH 3/9] [FIX] Remove the wrong demo data in the demo file lp bug: https://launchpad.net/bugs/324412 fixed bzr revid: stephane@tinyerp.com-20090203124327-wl5e8onkyhw6za3v --- addons/hr_expense/__terp__.py | 2 +- addons/hr_expense/hr.expense.expense.csv | 1 - addons/hr_expense/hr_expense_demo.xml | 6 ------ 3 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 addons/hr_expense/hr_expense_demo.xml diff --git a/addons/hr_expense/__terp__.py b/addons/hr_expense/__terp__.py index 8c08af34e70..12fcbed1ac4 100644 --- a/addons/hr_expense/__terp__.py +++ b/addons/hr_expense/__terp__.py @@ -51,7 +51,7 @@ 'hr_expense_report.xml', 'process/hr_expense_process.xml' ], - 'demo_xml': ['hr_expense_demo.xml', 'hr.expense.expense.csv'], + 'demo_xml': ['hr.expense.expense.csv'], 'installable': True, 'active': False, 'certificate': '62479841789', diff --git a/addons/hr_expense/hr.expense.expense.csv b/addons/hr_expense/hr.expense.expense.csv index 56cc2cd0056..9cf0cf7d2aa 100644 --- a/addons/hr_expense/hr.expense.expense.csv +++ b/addons/hr_expense/hr.expense.expense.csv @@ -1,4 +1,3 @@ name,ref,employee_id,line_ids/date_value,line_ids/name,line_ids/analytic_account,line_ids/unit_quantity,line_ids/ref,line_ids/unit_amount September Expenses,09/06,Fabien Pinckaers,2006-09-05,Travel by Car - Customer Seagate 2 - Double,Thymbra,130.0,,0.22 -,,,2006-09-05,Travel by Car - Trainging,Trainings,100.0,,0.22 ,,,2006-09-05,Basic PC - Server for Seagate,Seagate P2,1.0,S1234435,300.0 diff --git a/addons/hr_expense/hr_expense_demo.xml b/addons/hr_expense/hr_expense_demo.xml deleted file mode 100644 index 1168fd29679..00000000000 --- a/addons/hr_expense/hr_expense_demo.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - From e4bc01cdc80d9b60864c0430d24d7dacb66acc27 Mon Sep 17 00:00:00 2001 From: qdp Date: Tue, 3 Feb 2009 15:03:11 +0100 Subject: [PATCH 4/9] [FIX] bgufixed the 2 wizards of l10n_be -vat_subjected wasn't take in considearation in vat_linting -wrong value was filled for tag in vat_declaration + [IMP] improved the vat_declaration wizard in oorder to: -work for quarter based accountings -have a generic solution for zip_id that is added in cci_partner bzr revid: qdp@tinyerp.com-20090203140311-74erq47phor2l5q3 --- addons/l10n_be/__init__.py | 1 + addons/l10n_be/company.py | 43 +++++++++++++++++++ .../l10n_be/wizard/account_vat_declaration.py | 34 +++++++++------ addons/l10n_be/wizard/partner_vat_listing.py | 3 +- 4 files changed, 65 insertions(+), 16 deletions(-) create mode 100644 addons/l10n_be/company.py diff --git a/addons/l10n_be/__init__.py b/addons/l10n_be/__init__.py index f5dd0969f16..c652b702c26 100644 --- a/addons/l10n_be/__init__.py +++ b/addons/l10n_be/__init__.py @@ -20,6 +20,7 @@ # ############################################################################## +import company import wizard # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_be/company.py b/addons/l10n_be/company.py new file mode 100644 index 00000000000..3538f6e0dfd --- /dev/null +++ b/addons/l10n_be/company.py @@ -0,0 +1,43 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +from osv import osv + +class res_company(osv.osv): + _inherit = "res.company" + _description = 'res.company' + + + def _get_default_ad(self, addresses): + city = post_code = address = "" + for ads in addresses: + if ads.type == 'default': + city = ads.city + post_code = ads.zip + if ads.street: + address = ads.street + if ads.street2: + address += " " + ads.street2 + return city, post_code, address +res_company() + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_be/wizard/account_vat_declaration.py b/addons/l10n_be/wizard/account_vat_declaration.py index 1dfd85aa52f..a6123d7c5c7 100644 --- a/addons/l10n_be/wizard/account_vat_declaration.py +++ b/addons/l10n_be/wizard/account_vat_declaration.py @@ -25,6 +25,8 @@ import datetime import pooler import base64 +from tools.translate import _ + form_fyear = """
@@ -48,6 +50,7 @@ fields = { 'readonly': True,}, } + class wizard_vat_declaration(wizard.interface): def _create_xml(self, cr, uid, data, context): @@ -58,7 +61,7 @@ class wizard_vat_declaration(wizard.interface): user_cmpny = obj_company.name vat_no=obj_company.partner_id.vat if not vat_no: - raise wizard.except_wizard('Data Insufficient','No VAT Number Associated with Main Company!') + raise wizard.except_wizard(_('Data Insufficient'),_('No VAT Number Associated with Main Company!')) tax_ids = pool_obj.get('account.tax.code').search(cr,uid,[]) ctx = context.copy() @@ -69,30 +72,33 @@ class wizard_vat_declaration(wizard.interface): if not obj_company.partner_id.address: address=post_code=city='' - for ads in obj_company.partner_id.address: - if ads.type=='default': - if ads.zip_id: - city=ads.zip_id.city - post_code=ads.zip_id.name - if ads.street: - address=ads.street - if ads.street2: - address +=ads.street2 + city, post_code, address = pooler.get_pool(cr.dbname).get('res.company')._get_default_ad(obj_company.partner_id.address) obj_fyear = pool_obj.get('account.fiscalyear') year_id = obj_fyear.find(cr, uid) current_year = obj_fyear.browse(cr,uid,year_id).name - month=time.strftime('%m') period_code = pool_obj.get('account.period').browse(cr, uid, data['form']['period']).code + send_ref = user_cmpny if period_code: send_ref = send_ref + period_code data_of_file='\n' - data_of_file +='\n\t\n\t\t'+str(vat_no)+'\n\t\t'+str(obj_company.name)+'\n\t\t
'+str(address)+'
' - data_of_file +='\n\t\t'+str(post_code)+'\n\t\t'+str(city)+'\n\t\t'+send_ref+'\n\t
' - data_of_file +='\n\t\n\t\t1\n\t\t'+str(vat_no)+'\n\t\t\n\t\t\t'+str(month)+'\n\t\t\t'+str(current_year[-4:])+'\n\t\t\n\t\t' + data_of_file +='\n\t\n\t\t'+str(vat_no)+'\n\t\t'+str(obj_company.name)+'\n\t\t
'+address+'
' + data_of_file +='\n\t\t'+post_code+'\n\t\t'+city+'\n\t\t'+send_ref+'\n\t
' + data_of_file +='\n\t\n\t\t1\n\t\t'+str(vat_no)+'\n\t\t\n\t\t\t' + + starting_month = pool_obj.get('account.period').browse(cr, uid, data['form']['period']).date_start[5:7] + ending_month = pool_obj.get('account.period').browse(cr, uid, data['form']['period']).date_stop[5:7] + if starting_month != ending_month: + #starting month and ending month of selected period are not the same + #it means that the accounting isn't based on periods of 1 month but on quarters + quarter = str(((int(starting_month) - 1) / 3) + 1) + data_of_file += ''+quarter+'\n\t\t\t' + else: + data_of_file += ''+starting_month+'\n\t\t\t' + data_of_file += ''+str(current_year[-4:])+'\n\t\t\n\t\t' data_of_file +='\n\t\t\n\t\t\t' for item in tax_info: diff --git a/addons/l10n_be/wizard/partner_vat_listing.py b/addons/l10n_be/wizard/partner_vat_listing.py index cac723612ae..e259d194608 100644 --- a/addons/l10n_be/wizard/partner_vat_listing.py +++ b/addons/l10n_be/wizard/partner_vat_listing.py @@ -76,8 +76,7 @@ class wizard_vat(wizard.interface): # obj_company=pooler.get_pool(cr.dbname).get('res.company').browse(cr,uid,1) # vat_company=obj_company.partner_id.vat -#TODO: can be improved if we replace this test => add a new field on res_partner for cases when a partner has a number and is not subjected to the VAT... have to see if this situation could happen - p_id_list=pooler.get_pool(cr.dbname).get('res.partner').search(cr,uid,[('vat','!=',False)]) + p_id_list=pooler.get_pool(cr.dbname).get('res.partner').search(cr,uid,[('vat_subjected','!=',False)]) if not p_id_list: raise wizard.except_wizard('Data Insufficient!','No partner has a VAT Number asociated with him.') From 1de14e18c5ae77fdab317aa0490f3def88ef5ae2 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Tue, 3 Feb 2009 15:08:30 +0100 Subject: [PATCH 5/9] [FIX] Decode to utf-8 [IMP] Don't compute twice the xml stream lp bug: https://launchpad.net/bugs/324759 fixed bzr revid: stephane@tinyerp.com-20090203140830-ij2s919zywxs9fvi --- addons/base_module_record/base_module_record.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/base_module_record/base_module_record.py b/addons/base_module_record/base_module_record.py index fa9c8a6b51f..9cfa5058031 100644 --- a/addons/base_module_record/base_module_record.py +++ b/addons/base_module_record/base_module_record.py @@ -182,7 +182,7 @@ class base_module_record(osv.osv): val = str(val) val = val and ('"""%s"""' % val.replace('\\', '\\\\').replace('"', '\"')) or 'False' - field.setAttribute(u"eval", val) + field.setAttribute(u"eval", val.decode('utf-8')) record.appendChild(field) return record_list, noupdate @@ -324,8 +324,8 @@ class base_module_record(osv.osv): data.appendChild(res) elif rec[0]=='assert': pass - res = doc.toprettyxml(indent="\t") - return doc.toprettyxml(indent="\t").encode('utf8') + + return doc.toprettyxml(indent="\t").encode('utf-8') base_module_record() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From ce2e992b06fb8d8184a13b015ae3b1e0fdb4511e Mon Sep 17 00:00:00 2001 From: Olivier Laurent Date: Tue, 3 Feb 2009 16:07:15 +0100 Subject: [PATCH 6/9] New certificate number: added a prefix to tell if the module comes from extraaddons or from addons bzr revid: olt@tinyerp.com-20090203150715-kmursj9b0v8swl3l --- addons/account/__terp__.py | 64 +++++++++---------- addons/account_analytic_analysis/__terp__.py | 23 +++---- addons/account_analytic_default/__terp__.py | 2 +- addons/account_analytic_plans/__terp__.py | 12 ++-- addons/account_balance/__terp__.py | 2 +- addons/account_budget/__terp__.py | 14 ++-- addons/account_chart/__terp__.py | 2 +- addons/account_date_check/__terp__.py | 2 +- addons/account_followup/__terp__.py | 12 ++-- addons/account_invoice_layout/__terp__.py | 10 ++- addons/account_payment/__terp__.py | 31 ++++----- addons/account_report/__terp__.py | 12 ++-- addons/account_reporting/__terp__.py | 12 ++-- addons/account_tax_include/__terp__.py | 2 +- addons/account_voucher/__terp__.py | 14 ++-- .../analytic_journal_billing_rate/__terp__.py | 2 +- addons/analytic_user_function/__terp__.py | 2 +- addons/auction/__terp__.py | 12 ++-- addons/audittrail/__terp__.py | 10 ++- addons/base_contact/__terp__.py | 10 ++- addons/base_iban/__terp__.py | 2 +- addons/base_module_merge/__terp__.py | 2 +- addons/base_module_publish/__terp__.py | 2 +- addons/base_module_record/__terp__.py | 2 +- addons/base_report_creator/__terp__.py | 10 ++- addons/base_report_designer/__terp__.py | 2 +- addons/base_setup/__terp__.py | 2 +- addons/base_vat/__terp__.py | 2 +- addons/board/__terp__.py | 2 +- addons/board_account/__terp__.py | 18 +++--- addons/board_association/__terp__.py | 2 +- addons/board_auction/__terp__.py | 2 +- addons/board_crm_configuration/__terp__.py | 2 +- addons/board_document/__terp__.py | 2 +- addons/board_manufacturing/__terp__.py | 2 +- addons/board_project/__terp__.py | 18 +++--- addons/board_sale/__terp__.py | 2 +- addons/crm/__terp__.py | 14 ++-- addons/crm_configuration/__terp__.py | 26 ++++---- addons/crm_profiling/__terp__.py | 2 +- addons/crm_vertical/__terp__.py | 2 +- addons/delivery/__terp__.py | 12 ++-- addons/document/__terp__.py | 12 ++-- addons/document_ics/__terp__.py | 2 +- addons/event/__terp__.py | 14 ++-- addons/event_project/__terp__.py | 2 +- addons/google_map/__terp__.py | 2 +- addons/hr/__terp__.py | 26 ++++---- addons/hr_attendance/__terp__.py | 14 ++-- addons/hr_contract/__terp__.py | 10 ++- addons/hr_expense/__terp__.py | 16 ++--- addons/hr_holidays/__terp__.py | 26 ++++---- addons/hr_timesheet/__terp__.py | 14 ++-- addons/hr_timesheet_invoice/__terp__.py | 12 ++-- addons/hr_timesheet_sheet/__terp__.py | 12 ++-- addons/idea/__terp__.py | 12 ++-- addons/l10n_be/__terp__.py | 24 ++----- addons/l10n_chart_uk_minimal/__terp__.py | 50 ++------------- addons/l10n_fr/__terp__.py | 50 +++++++-------- addons/l10n_lu/__terp__.py | 14 ++-- addons/membership/__terp__.py | 12 ++-- addons/mrp/__terp__.py | 37 +++++------ addons/mrp_jit/__terp__.py | 2 +- addons/mrp_operations/__terp__.py | 14 ++-- addons/mrp_repair/__terp__.py | 16 ++--- addons/mrp_subproduct/__terp__.py | 2 +- addons/point_of_sale/__terp__.py | 20 +++--- addons/process/__terp__.py | 2 +- addons/product/__terp__.py | 34 ++++------ addons/product_margin/__terp__.py | 2 +- addons/profile_accounting/__terp__.py | 2 +- addons/profile_association/__terp__.py | 2 +- addons/profile_auction/__terp__.py | 2 +- addons/profile_crm/__terp__.py | 2 +- addons/profile_manufacturing/__terp__.py | 9 ++- addons/profile_service/__terp__.py | 2 +- addons/project/__terp__.py | 35 +++++----- addons/project_gtd/__terp__.py | 10 ++- addons/project_mrp/__terp__.py | 2 +- addons/project_retro_planning/__terp__.py | 2 +- addons/project_timesheet/__terp__.py | 2 +- addons/purchase/__terp__.py | 26 ++++---- addons/purchase_analytic_plans/__terp__.py | 2 +- addons/report_account/__terp__.py | 2 +- addons/report_analytic/__terp__.py | 2 +- addons/report_analytic_line/__terp__.py | 2 +- addons/report_analytic_planning/__terp__.py | 10 ++- addons/report_crm/__terp__.py | 2 +- addons/report_document/__terp__.py | 2 +- addons/report_intrastat/__terp__.py | 10 ++- addons/report_mrp/__terp__.py | 2 +- addons/report_project/__terp__.py | 2 +- addons/report_purchase/__terp__.py | 2 +- addons/report_sale/__terp__.py | 10 ++- addons/report_task/__terp__.py | 2 +- addons/report_timesheet/__terp__.py | 2 +- addons/sale/__terp__.py | 28 ++++---- addons/sale_analytic_plans/__terp__.py | 2 +- addons/sale_crm/__terp__.py | 2 +- addons/sale_delivery_report/__terp__.py | 6 +- addons/sale_journal/__terp__.py | 12 ++-- addons/scrum/__terp__.py | 14 ++-- addons/stock/__terp__.py | 47 +++++++------- addons/stock_invoice_directly/__terp__.py | 2 +- addons/stock_location/__terp__.py | 2 +- addons/stock_no_autopicking/__terp__.py | 2 +- addons/subscription/__terp__.py | 2 +- addons/warning/__terp__.py | 2 +- addons/wiki/__terp__.py | 14 ++-- 109 files changed, 474 insertions(+), 642 deletions(-) diff --git a/addons/account/__terp__.py b/addons/account/__terp__.py index eb9786c9d63..3caedb2b285 100644 --- a/addons/account/__terp__.py +++ b/addons/account/__terp__.py @@ -22,11 +22,9 @@ { - "name" : "Accounting and financial management", - "version" : "1.1", - "depends" : ["product", "base", "process"], - "author" : "Tiny", - "description": """Financial and accounting module that covers: + 'name': 'Accounting and financial management', + 'version': '1.1', + 'description': """Financial and accounting module that covers: General accounting Cost / Analytic accounting Third party accounting @@ -39,37 +37,33 @@ 'website': 'http://www.openerp.com', 'depends': ['product', 'base', 'process'], 'init_xml': [], - 'update_xml': [ - 'security/account_security.xml', - 'security/ir.model.access.csv', - 'account_menuitem.xml', - 'account_wizard.xml', - 'account_view.xml', - 'account_end_fy.xml', - 'account_invoice_view.xml', - 'account_report.xml', - 'partner_view.xml', - 'data/account_invoice.xml', - 'data/account_data2.xml', - 'account_invoice_workflow.xml', - 'project/project_view.xml', - 'project/project_report.xml', - 'product_view.xml', - 'account_assert_test.xml', - 'process/statement_process.xml', - 'process/customer_invoice_process.xml', - 'process/supplier_invoice_process.xml', - 'sequence_view.xml' - ], - 'demo_xml': [ - 'account_demo.xml', - 'project/project_demo.xml', - 'project/analytic_account_demo.xml', - 'demo/account_minimal.xml', - 'account_unit_test.xml' - ], + 'update_xml': [ 'security/account_security.xml', + 'security/ir.model.access.csv', + 'account_menuitem.xml', + 'account_wizard.xml', + 'account_view.xml', + 'account_end_fy.xml', + 'account_invoice_view.xml', + 'account_report.xml', + 'partner_view.xml', + 'data/account_invoice.xml', + 'data/account_data2.xml', + 'account_invoice_workflow.xml', + 'project/project_view.xml', + 'project/project_report.xml', + 'product_view.xml', + 'account_assert_test.xml', + 'process/statement_process.xml', + 'process/customer_invoice_process.xml', + 'process/supplier_invoice_process.xml', + 'sequence_view.xml'], + 'demo_xml': [ 'account_demo.xml', + 'project/project_demo.xml', + 'project/analytic_account_demo.xml', + 'demo/account_minimal.xml', + 'account_unit_test.xml'], 'installable': True, 'active': False, - 'certificate': '80331923549', + 'certificate': '0021841915058685', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_analytic_analysis/__terp__.py b/addons/account_analytic_analysis/__terp__.py index b45b828c2a8..52d95bbfe4d 100644 --- a/addons/account_analytic_analysis/__terp__.py +++ b/addons/account_analytic_analysis/__terp__.py @@ -23,26 +23,21 @@ { 'name': 'report_account_analytic', - 'version': '1.0', + 'version': '1.1', 'category': 'Generic Modules/Accounting', 'description': """Modify account analytic view to show important data for project manager of services companies. Add menu to show relevant information for each manager.""", - "version" : "1.1", - "author" : "Camptocamp", - "category" : "Generic Modules/Accounting", - "module": "", - "website": "http://www.camptocamp.com/", - "depends" : ["account","hr_timesheet","hr_timesheet_invoice","project"], - "init_xml" : [], - "update_xml" : [ - "security/ir.model.access.csv", - "account_analytic_analysis_view.xml", - "account_analytic_analysis_menu.xml", - ], + 'author': 'Camptocamp', + 'website': 'http://www.camptocamp.com/', + 'depends': ['account', 'hr_timesheet', 'hr_timesheet_invoice', 'project'], + 'init_xml': [], + 'update_xml': [ 'security/ir.model.access.csv', + 'account_analytic_analysis_view.xml', + 'account_analytic_analysis_menu.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '42927202589', + 'certificate': '0018849810007757', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_analytic_default/__terp__.py b/addons/account_analytic_default/__terp__.py index ae3e599119d..88075ef8ba0 100644 --- a/addons/account_analytic_default/__terp__.py +++ b/addons/account_analytic_default/__terp__.py @@ -41,6 +41,6 @@ Allows to automatically select analytic accounts based on criterions: 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '74229833581', + 'certificate': '0012267336671725', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_analytic_plans/__terp__.py b/addons/account_analytic_plans/__terp__.py index 722bf2727d3..8b082c0477a 100644 --- a/addons/account_analytic_plans/__terp__.py +++ b/addons/account_analytic_plans/__terp__.py @@ -57,15 +57,13 @@ for one account entry. 'website': 'http://www.openerp.com', 'depends': ['account', 'account_analytic_default'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'model_wizard.xml', - 'account_analytic_plans_view.xml', - 'account_analytic_plans_report.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'model_wizard.xml', + 'account_analytic_plans_view.xml', + 'account_analytic_plans_report.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '36417675373', + 'certificate': '0018550331377437', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_balance/__terp__.py b/addons/account_balance/__terp__.py index 05de61e62ae..968047324f0 100644 --- a/addons/account_balance/__terp__.py +++ b/addons/account_balance/__terp__.py @@ -47,6 +47,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '81928745309', + 'certificate': '009275148897645', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_budget/__terp__.py b/addons/account_budget/__terp__.py index bcb1ab7ffd6..979e188cf58 100644 --- a/addons/account_budget/__terp__.py +++ b/addons/account_budget/__terp__.py @@ -48,16 +48,14 @@ Three reports are available: 'website': 'http://www.openerp.com', 'depends': ['account'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'account_budget_wizard.xml', - 'crossovered_budget_view.xml', - 'crossovered_budget_report.xml', - 'crossovered_budget_workflow.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'account_budget_wizard.xml', + 'crossovered_budget_view.xml', + 'crossovered_budget_report.xml', + 'crossovered_budget_workflow.xml'], 'demo_xml': ['crossovered_budget_demo.xml'], 'installable': True, 'active': False, - 'certificate': '43819694157', + 'certificate': '0020645028723437', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_chart/__terp__.py b/addons/account_chart/__terp__.py index bb3aee9760c..37104986f0f 100644 --- a/addons/account_chart/__terp__.py +++ b/addons/account_chart/__terp__.py @@ -33,6 +33,6 @@ 'update_xml': [], 'demo_xml': [], 'installable': True, - 'certificate': '73332443901', + 'certificate': '0014960165741629', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_date_check/__terp__.py b/addons/account_date_check/__terp__.py index 9f38a0c5305..65c047ed913 100644 --- a/addons/account_date_check/__terp__.py +++ b/addons/account_date_check/__terp__.py @@ -42,6 +42,6 @@ period !" 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '66174843389', + 'certificate': '0010472116996909', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_followup/__terp__.py b/addons/account_followup/__terp__.py index 5c58289f215..3f80342abf0 100644 --- a/addons/account_followup/__terp__.py +++ b/addons/account_followup/__terp__.py @@ -42,15 +42,13 @@ 'website': 'http://www.openerp.com', 'depends': ['account'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'wizard/wizard_view.xml', - 'followup_view.xml', - 'followup_report_view.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'wizard/wizard_view.xml', + 'followup_view.xml', + 'followup_report_view.xml'], 'demo_xml': ['followup_demo.xml'], 'installable': True, 'active': False, - 'certificate': '72481076453', + 'certificate': '0015558742212861', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_invoice_layout/__terp__.py b/addons/account_invoice_layout/__terp__.py index 05389645833..b78eac44ccc 100644 --- a/addons/account_invoice_layout/__terp__.py +++ b/addons/account_invoice_layout/__terp__.py @@ -40,14 +40,12 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'account'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'account_invoice_layout_view.xml', - 'account_invoice_layout_report.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'account_invoice_layout_view.xml', + 'account_invoice_layout_report.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '57235078173', + 'certificate': '0025731486677245', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_payment/__terp__.py b/addons/account_payment/__terp__.py index 348b9b1ce08..8cc543031fc 100644 --- a/addons/account_payment/__terp__.py +++ b/addons/account_payment/__terp__.py @@ -22,13 +22,10 @@ { - "name": "Payment Management", - "version": "1.1", - "author": "Tiny", - "category": "Generic Modules/Payment", - "depends": ["account"], - "init_xml": [], - "description": """ + 'name': 'Payment Management', + 'version': '1.1', + 'category': 'Generic Modules/Payment', + 'description': """ This module provide : * a more efficient way to manage invoice payment. * a basic mechanism to easily plug various automated payment. @@ -36,19 +33,17 @@ 'author': 'Tiny', 'depends': ['account'], 'init_xml': [], - 'update_xml': [ - 'security/account_payment_security.xml', - 'security/ir.model.access.csv', - 'payment_wizard.xml', - 'payment_view.xml', - 'payment_workflow.xml', - 'payment_sequence.xml', - 'account_invoice_view.xml', - 'payment_report.xml' - ], + 'update_xml': [ 'security/account_payment_security.xml', + 'security/ir.model.access.csv', + 'payment_wizard.xml', + 'payment_view.xml', + 'payment_workflow.xml', + 'payment_sequence.xml', + 'account_invoice_view.xml', + 'payment_report.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '61703998541', + 'certificate': '0028723518223901', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_report/__terp__.py b/addons/account_report/__terp__.py index 4b7e64864fc..61646eeff53 100644 --- a/addons/account_report/__terp__.py +++ b/addons/account_report/__terp__.py @@ -33,15 +33,13 @@ 'website': 'http://www.openerp.com', 'depends': ['account'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'account_view.xml', - 'account_report.xml', - 'account_wizard.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'account_view.xml', + 'account_report.xml', + 'account_wizard.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '50976406925', + 'certificate': '009873710157725', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_reporting/__terp__.py b/addons/account_reporting/__terp__.py index 4f98660da09..5509dd645e6 100644 --- a/addons/account_reporting/__terp__.py +++ b/addons/account_reporting/__terp__.py @@ -30,15 +30,13 @@ 'author': 'Tiny', 'depends': ['account'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'account_view.xml', - 'account_report.xml', - 'account_data.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'account_view.xml', + 'account_report.xml', + 'account_data.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '72305016797', + 'certificate': '0010472149969149', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_tax_include/__terp__.py b/addons/account_tax_include/__terp__.py index 9e8c138cd41..4b174647dff 100644 --- a/addons/account_tax_include/__terp__.py +++ b/addons/account_tax_include/__terp__.py @@ -38,6 +38,6 @@ This module implement the modification on the invoice form. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '70514190381', + 'certificate': '0024534751356253', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_voucher/__terp__.py b/addons/account_voucher/__terp__.py index 20c6e7c885a..2ca77746d34 100755 --- a/addons/account_voucher/__terp__.py +++ b/addons/account_voucher/__terp__.py @@ -39,16 +39,14 @@ Basic Accounting, plus new things that are available: 'website': 'http://www.openerp.com', 'depends': ['base', 'account'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'account_voucher_sequence.xml', - 'account_view.xml', - 'account_report.xml', - 'voucher_view.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'account_voucher_sequence.xml', + 'account_view.xml', + 'account_report.xml', + 'voucher_view.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '37580727101', + 'certificate': '0013165089564733', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/analytic_journal_billing_rate/__terp__.py b/addons/analytic_journal_billing_rate/__terp__.py index 882ef832758..52209779563 100644 --- a/addons/analytic_journal_billing_rate/__terp__.py +++ b/addons/analytic_journal_billing_rate/__terp__.py @@ -40,6 +40,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '30271787965', + 'certificate': '0012865885319477', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/analytic_user_function/__terp__.py b/addons/analytic_user_function/__terp__.py index ae5231cb84e..fa1d44a3555 100644 --- a/addons/analytic_user_function/__terp__.py +++ b/addons/analytic_user_function/__terp__.py @@ -40,6 +40,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '82277138269', + 'certificate': '0022440249660029', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/auction/__terp__.py b/addons/auction/__terp__.py index e2e7cd53e11..f99092ae1fa 100644 --- a/addons/auction/__terp__.py +++ b/addons/auction/__terp__.py @@ -33,15 +33,13 @@ 'author': 'Tiny', 'depends': ['base', 'account', 'hr_attendance'], 'init_xml': ['auction_sequence.xml'], - 'update_xml': [ - 'security/ir.model.access.csv', - 'auction_view.xml', - 'auction_report.xml', - 'auction_wizard.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'auction_view.xml', + 'auction_report.xml', + 'auction_wizard.xml'], 'demo_xml': ['auction_demo.xml'], 'installable': True, 'active': False, - 'certificate': '39333102717', + 'certificate': '008676977189565', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/audittrail/__terp__.py b/addons/audittrail/__terp__.py index ccd86944270..63c0ca8d957 100644 --- a/addons/audittrail/__terp__.py +++ b/addons/audittrail/__terp__.py @@ -31,14 +31,12 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'account', 'purchase', 'mrp'], 'init_xml': [], - 'update_xml': [ - 'audittrail_view.xml', - 'security/ir.model.access.csv', - 'security/audittrail_security.xml' - ], + 'update_xml': [ 'audittrail_view.xml', + 'security/ir.model.access.csv', + 'security/audittrail_security.xml'], 'demo_xml': ['audittrail_demo.xml'], 'installable': True, 'active': False, - 'certificate': '62572348749', + 'certificate': '0010173008267165', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_contact/__terp__.py b/addons/base_contact/__terp__.py index f50bfdef95a..97a8c68c55d 100644 --- a/addons/base_contact/__terp__.py +++ b/addons/base_contact/__terp__.py @@ -43,14 +43,12 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'process'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'base_contact_view.xml', - 'process/base_contact_process.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'base_contact_view.xml', + 'process/base_contact_process.xml'], 'demo_xml': ['base_contact_demo.xml'], 'installable': True, 'active': False, - 'certificate': '31287885469', + 'certificate': '0027227757067813', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_iban/__terp__.py b/addons/base_iban/__terp__.py index 99af88babf2..2d0329746b9 100644 --- a/addons/base_iban/__terp__.py +++ b/addons/base_iban/__terp__.py @@ -35,6 +35,6 @@ This module install the base for IBAN bank accounts. 'update_xml': ['base_iban_view.xml'], 'installable': True, 'active': False, - 'certificate': '50014379549', + 'certificate': '0016157146365533', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_merge/__terp__.py b/addons/base_module_merge/__terp__.py index 6d7b4d97fe1..7950cce66a3 100644 --- a/addons/base_module_merge/__terp__.py +++ b/addons/base_module_merge/__terp__.py @@ -41,6 +41,6 @@ 'update_xml': ['base_module_merge_wizard.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '35756279709', + 'certificate': '009275389048693', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_publish/__terp__.py b/addons/base_module_publish/__terp__.py index af3afdfad0b..257663338ed 100644 --- a/addons/base_module_publish/__terp__.py +++ b/addons/base_module_publish/__terp__.py @@ -43,6 +43,6 @@ to call this button when you want to release a new version of your module. 'update_xml': ['base_module_publish_wizard.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '67939821245', + 'certificate': '008976182484749', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_record/__terp__.py b/addons/base_module_record/__terp__.py index aaf16cc283f..9bb1f76c7de 100644 --- a/addons/base_module_record/__terp__.py +++ b/addons/base_module_record/__terp__.py @@ -51,6 +51,6 @@ How to use it: 'update_xml': ['security/ir.model.access.csv', 'base_module_record_wizard.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '83134865813', + 'certificate': '0020046809368957', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_report_creator/__terp__.py b/addons/base_report_creator/__terp__.py index d95ebf3ef09..c9746a4cb50 100644 --- a/addons/base_report_creator/__terp__.py +++ b/addons/base_report_creator/__terp__.py @@ -36,14 +36,12 @@ the "Dashboard" menu. 'website': '', 'depends': ['base', 'board'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'base_report_creator_wizard.xml', - 'base_report_creator_view.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'base_report_creator_wizard.xml', + 'base_report_creator_view.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '31285794149', + 'certificate': '0027826168589381', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_report_designer/__terp__.py b/addons/base_report_designer/__terp__.py index 38c9eb12b42..9606d7a17ca 100644 --- a/addons/base_report_designer/__terp__.py +++ b/addons/base_report_designer/__terp__.py @@ -37,6 +37,6 @@ OpenOffice. 'demo_xml': ['base_report_data.xml'], 'installable': True, 'active': False, - 'certificate': '56379010493', + 'certificate': '0018850014946253', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_setup/__terp__.py b/addons/base_setup/__terp__.py index d4499f2e093..33ecef974ea 100644 --- a/addons/base_setup/__terp__.py +++ b/addons/base_setup/__terp__.py @@ -46,6 +46,6 @@ 'demo_xml': ['base_setup_demo.xml'], 'installable': True, 'active': True, - 'certificate': '86711085869', + 'certificate': '0021243634084373', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_vat/__terp__.py b/addons/base_vat/__terp__.py index a4e15b75188..7a95130606d 100644 --- a/addons/base_vat/__terp__.py +++ b/addons/base_vat/__terp__.py @@ -31,6 +31,6 @@ 'update_xml': ['base_vat_data.xml'], 'installable': True, 'active': False, - 'certificate': '84849360989', + 'certificate': '0014361902367773', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board/__terp__.py b/addons/board/__terp__.py index fe03a113ea3..1f285501513 100644 --- a/addons/board/__terp__.py +++ b/addons/board/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '76912305725', + 'certificate': '008676896805277', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_account/__terp__.py b/addons/board_account/__terp__.py index e44cc0b45c5..b468abf2748 100644 --- a/addons/board_account/__terp__.py +++ b/addons/board_account/__terp__.py @@ -35,19 +35,17 @@ * Graph of aged incomes """, 'author': 'Tiny', - 'depends': [ - 'account', - 'hr_timesheet_invoice', - 'board', - 'report_account', - 'report_analytic', - 'report_analytic_line', - 'account_report' - ], + 'depends': [ 'account', + 'hr_timesheet_invoice', + 'board', + 'report_account', + 'report_analytic', + 'report_analytic_line', + 'account_report'], 'update_xml': ['board_account_view.xml'], 'demo_xml': ['board_account_demo.xml'], 'installable': True, 'active': False, - 'certificate': '76016921229', + 'certificate': '0014361759782429', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_association/__terp__.py b/addons/board_association/__terp__.py index 58557ed5a97..c7989d3dbcc 100644 --- a/addons/board_association/__terp__.py +++ b/addons/board_association/__terp__.py @@ -34,6 +34,6 @@ This module implements a dashboard for associations. 'demo_xml': ['board_association_demo.xml'], 'installable': True, 'active': False, - 'certificate': '79647781773', + 'certificate': '0023338115437757', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_auction/__terp__.py b/addons/board_auction/__terp__.py index e7e49542632..4c47ec8b4ac 100644 --- a/addons/board_auction/__terp__.py +++ b/addons/board_auction/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': ['board_auction_demo.xml'], 'installable': True, 'active': False, - 'certificate': '49187078189', + 'certificate': '0027825909145421', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_crm_configuration/__terp__.py b/addons/board_crm_configuration/__terp__.py index eb6e0a435d1..845595adcb4 100644 --- a/addons/board_crm_configuration/__terp__.py +++ b/addons/board_crm_configuration/__terp__.py @@ -40,6 +40,6 @@ This module implements a dashboard for CRM that includes: 'demo_xml': ['board_crm_demo.xml'], 'installable': True, 'active': False, - 'certificate': '71599098909', + 'certificate': '0023637319471165', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_document/__terp__.py b/addons/board_document/__terp__.py index 17e44ae48d7..ff0e2aaf886 100644 --- a/addons/board_document/__terp__.py +++ b/addons/board_document/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': ['board_document_demo.xml'], 'installable': True, 'active': False, - 'certificate': '44628458429', + 'certificate': '0019747483618397', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_manufacturing/__terp__.py b/addons/board_manufacturing/__terp__.py index 41e0d37bcdf..99459bc575e 100644 --- a/addons/board_manufacturing/__terp__.py +++ b/addons/board_manufacturing/__terp__.py @@ -38,6 +38,6 @@ 'demo_xml': ['board_manufacturing_demo.xml'], 'installable': True, 'active': False, - 'certificate': '30407612797', + 'certificate': '0026629097091997', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_project/__terp__.py b/addons/board_project/__terp__.py index d89aecab86e..1edc75136de 100644 --- a/addons/board_project/__terp__.py +++ b/addons/board_project/__terp__.py @@ -34,19 +34,17 @@ This module implements a dashboard for project member that includes: * Graph of my work analysis """, 'author': 'Tiny', - 'depends': [ - 'project', - 'report_timesheet', - 'board', - 'report_analytic_planning', - 'report_analytic_line', - 'report_task', - 'hr_timesheet_sheet' - ], + 'depends': [ 'project', + 'report_timesheet', + 'board', + 'report_analytic_planning', + 'report_analytic_line', + 'report_task', + 'hr_timesheet_sheet'], 'update_xml': ['board_project_view.xml', 'board_project_manager_view.xml'], 'demo_xml': ['board_project_demo.xml'], 'installable': True, 'active': False, - 'certificate': '39350482013', + 'certificate': '0013464149376989', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_sale/__terp__.py b/addons/board_sale/__terp__.py index 0546c03b50f..f7100b32d08 100644 --- a/addons/board_sale/__terp__.py +++ b/addons/board_sale/__terp__.py @@ -39,6 +39,6 @@ This module implements a dashboard for salesman that includes: 'demo_xml': ['board_sale_demo.xml'], 'installable': True, 'active': False, - 'certificate': '46503501021', + 'certificate': '0011668930186397', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm/__terp__.py b/addons/crm/__terp__.py index 34927ec17a3..2a7c357e41d 100644 --- a/addons/crm/__terp__.py +++ b/addons/crm/__terp__.py @@ -47,16 +47,14 @@ between mails and Open ERP.""", 'website': 'http://www.openerp.com', 'depends': ['base'], 'init_xml': ['crm_data.xml'], - 'update_xml': [ - 'crm_view.xml', - 'crm_report.xml', - 'crm_wizard.xml', - 'security/crm_security.xml', - 'security/ir.model.access.csv' - ], + 'update_xml': [ 'crm_view.xml', + 'crm_report.xml', + 'crm_wizard.xml', + 'security/crm_security.xml', + 'security/ir.model.access.csv'], 'demo_xml': ['crm_demo.xml'], 'installable': True, 'active': False, - 'certificate': '79056041421', + 'certificate': '0024235645566773', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm_configuration/__terp__.py b/addons/crm_configuration/__terp__.py index d5da400d409..fe44a662ca8 100644 --- a/addons/crm_configuration/__terp__.py +++ b/addons/crm_configuration/__terp__.py @@ -38,23 +38,21 @@ meetings, eso. 'author': 'Tiny', 'website': 'http://www.openerp.com', 'depends': ['crm', 'report_crm', 'process'], - 'init_xml': [ - 'crm_configuration_wizard.xml', - 'crm_config_view.xml', - 'crm_bugs_view.xml', - 'crm_jobs_view.xml', - 'crm_lead_view.xml', - 'crm_meeting_view.xml', - 'crm_opportunity_view.xml', - 'crm_fund_view.xml', - 'crm_claims_view.xml', - 'crm_phonecall_view.xml', - 'crm_report_view.xml' - ], + 'init_xml': [ 'crm_configuration_wizard.xml', + 'crm_config_view.xml', + 'crm_bugs_view.xml', + 'crm_jobs_view.xml', + 'crm_lead_view.xml', + 'crm_meeting_view.xml', + 'crm_opportunity_view.xml', + 'crm_fund_view.xml', + 'crm_claims_view.xml', + 'crm_phonecall_view.xml', + 'crm_report_view.xml'], 'update_xml': ['security/ir.model.access.csv', 'process/crm_configuration_process.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '80531386589', + 'certificate': '0012865886253781', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm_profiling/__terp__.py b/addons/crm_profiling/__terp__.py index 37629b2071e..4b70fe07807 100644 --- a/addons/crm_profiling/__terp__.py +++ b/addons/crm_profiling/__terp__.py @@ -45,6 +45,6 @@ 'demo_xml': ['crm_profiling_demo.xml'], 'installable': True, 'active': False, - 'certificate': '33984979005', + 'certificate': '0012566539614077', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm_vertical/__terp__.py b/addons/crm_vertical/__terp__.py index 44e8113a165..411d5ff8962 100644 --- a/addons/crm_vertical/__terp__.py +++ b/addons/crm_vertical/__terp__.py @@ -33,6 +33,6 @@ 'update_xml': [], 'demo_xml': [], 'installable': True, - 'certificate': '59915476845', + 'certificate': '0017050451838029', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/delivery/__terp__.py b/addons/delivery/__terp__.py index 1aec98e6f6f..b00a6c519bd 100644 --- a/addons/delivery/__terp__.py +++ b/addons/delivery/__terp__.py @@ -29,15 +29,13 @@ 'author': 'Tiny', 'depends': ['sale', 'purchase', 'stock'], 'init_xml': ['delivery_data.xml'], - 'update_xml': [ - 'security/ir.model.access.csv', - 'delivery_view.xml', - 'delivery_wizard.xml', - 'partner_view.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'delivery_view.xml', + 'delivery_wizard.xml', + 'partner_view.xml'], 'demo_xml': ['delivery_demo.xml'], 'installable': True, 'active': False, - 'certificate': '33981912253', + 'certificate': '0023337859283261', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/document/__terp__.py b/addons/document/__terp__.py index c6a772f5287..8a38319859d 100644 --- a/addons/document/__terp__.py +++ b/addons/document/__terp__.py @@ -34,15 +34,13 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'process'], 'init_xml': ['document_data.xml', 'document_demo.xml'], - 'update_xml': [ - 'document_view.xml', - 'document_data.xml', - 'security/document_security.xml', - 'security/ir.model.access.csv' - ], + 'update_xml': [ 'document_view.xml', + 'document_data.xml', + 'security/document_security.xml', + 'security/ir.model.access.csv'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '70515416461', + 'certificate': '0025133162533277', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/document_ics/__terp__.py b/addons/document_ics/__terp__.py index 0a9a626d3cc..4a0cc474e16 100644 --- a/addons/document_ics/__terp__.py +++ b/addons/document_ics/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': ['document_demo.xml'], 'installable': True, 'active': False, - 'certificate': '71242387229', + 'certificate': '0013463924422349', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/event/__terp__.py b/addons/event/__terp__.py index 2cd05130736..f7bb8acfc1e 100644 --- a/addons/event/__terp__.py +++ b/addons/event/__terp__.py @@ -41,16 +41,14 @@ 'author': 'Tiny', 'depends': ['crm', 'base_contact', 'account'], 'init_xml': ['event_data.xml'], - 'update_xml': [ - 'event_wizard.xml', - 'event_view.xml', - 'event_sequence.xml', - 'security/event_security.xml', - 'security/ir.model.access.csv' - ], + 'update_xml': [ 'event_wizard.xml', + 'event_view.xml', + 'event_sequence.xml', + 'security/event_security.xml', + 'security/ir.model.access.csv'], 'demo_xml': ['event_demo.xml'], 'installable': True, 'active': False, - 'certificate': '83059161581', + 'certificate': '0011369839138589', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/event_project/__terp__.py b/addons/event_project/__terp__.py index 741f9796509..219a08875ab 100644 --- a/addons/event_project/__terp__.py +++ b/addons/event_project/__terp__.py @@ -36,6 +36,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '69726863885', + 'certificate': '0028125369597165', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/google_map/__terp__.py b/addons/google_map/__terp__.py index 6b6b15b0838..5b9057a64b8 100644 --- a/addons/google_map/__terp__.py +++ b/addons/google_map/__terp__.py @@ -36,6 +36,6 @@ url widget.""", 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '29498930765', + 'certificate': '009275388447293', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr/__terp__.py b/addons/hr/__terp__.py index 2a82c2ba01f..2657fd0b716 100644 --- a/addons/hr/__terp__.py +++ b/addons/hr/__terp__.py @@ -22,12 +22,10 @@ { - "name" : "Human Resources", - "version" : "1.1", - "author" : "Tiny", - "category" : "Generic Modules/Human Resources", - "website" : "http://www.openerp.com", - "description": """ + 'name': 'Human Resources', + 'version': '1.1', + 'category': 'Generic Modules/Human Resources', + 'description': """ Module for human resource management. You can manage: * Employees and hierarchies * Work hours sheets @@ -39,17 +37,15 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'process'], 'init_xml': [], - 'update_xml': [ - 'security/hr_security.xml', - 'security/ir.model.access.csv', - 'hr_view.xml', - 'hr_wizard.xml', - 'hr_department_view.xml', - 'process/hr_process.xml' - ], + 'update_xml': [ 'security/hr_security.xml', + 'security/ir.model.access.csv', + 'hr_view.xml', + 'hr_wizard.xml', + 'hr_department_view.xml', + 'process/hr_process.xml'], 'demo_xml': ['hr_demo.xml', 'hr_department_demo.xml'], 'installable': True, 'active': False, - 'certificate': '86710558965', + 'certificate': '0021842042346741', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/__terp__.py b/addons/hr_attendance/__terp__.py index 6afa17c958c..dc196a15e66 100644 --- a/addons/hr_attendance/__terp__.py +++ b/addons/hr_attendance/__terp__.py @@ -28,16 +28,14 @@ 'description': """This module aims to manage employee's attendances.""", 'author': 'Tiny', 'depends': ['base', 'hr'], - 'update_xml': [ - 'security/hr_security.xml', - 'hr_attendance_view.xml', - 'hr_attendance_wizard.xml', - 'hr_attendance_report.xml', - 'security/ir.model.access.csv' - ], + 'update_xml': [ 'security/hr_security.xml', + 'hr_attendance_view.xml', + 'hr_attendance_wizard.xml', + 'hr_attendance_report.xml', + 'security/ir.model.access.csv'], 'demo_xml': ['hr_attendance_demo.xml'], 'installable': True, 'active': False, - 'certificate': '63495605613', + 'certificate': '0021542640344093', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_contract/__terp__.py b/addons/hr_contract/__terp__.py index a253d60109e..1967f7304ac 100644 --- a/addons/hr_contract/__terp__.py +++ b/addons/hr_contract/__terp__.py @@ -37,14 +37,12 @@ 'website': 'http://www.openerp.com', 'depends': ['hr'], 'init_xml': ['hr_contract_data.xml'], - 'update_xml': [ - 'security/hr_contract_security.xml', - 'security/ir.model.access.csv', - 'hr_contract_view.xml' - ], + 'update_xml': [ 'security/hr_contract_security.xml', + 'security/ir.model.access.csv', + 'hr_contract_view.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '46298028637', + 'certificate': '0011369849872221', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_expense/__terp__.py b/addons/hr_expense/__terp__.py index 8c08af34e70..dfe1eb54ec2 100644 --- a/addons/hr_expense/__terp__.py +++ b/addons/hr_expense/__terp__.py @@ -43,17 +43,15 @@ 'website': 'http://www.openerp.com', 'depends': ['hr', 'account', 'account_tax_include'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'hr_expense_sequence.xml', - 'hr_expense_workflow.xml', - 'hr_expense_view.xml', - 'hr_expense_report.xml', - 'process/hr_expense_process.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'hr_expense_sequence.xml', + 'hr_expense_workflow.xml', + 'hr_expense_view.xml', + 'hr_expense_report.xml', + 'process/hr_expense_process.xml'], 'demo_xml': ['hr_expense_demo.xml', 'hr.expense.expense.csv'], 'installable': True, 'active': False, - 'certificate': '62479841789', + 'certificate': '0028424408828349', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_holidays/__terp__.py b/addons/hr_holidays/__terp__.py index 948df531ceb..6c433a7b078 100644 --- a/addons/hr_holidays/__terp__.py +++ b/addons/hr_holidays/__terp__.py @@ -2,12 +2,10 @@ { - "name" : "Human Resources: Holidays management", - "version" : "1.1", - "author" : "Tiny & Axelor", - "category" : "Generic Modules/Human Resources", - "website" : "http://www.openerp.com", - "description": """Human Ressources: Holidays tracking and workflow + 'name': 'Human Resources: Holidays management', + 'version': '1.1', + 'category': 'Generic Modules/Human Resources', + 'description': """Human Ressources: Holidays tracking and workflow This module allows you to manage holidays and holidays requests. For each employee, you can also define a number of available holidays per holiday status. @@ -30,17 +28,15 @@ 'website': 'http://www.openerp.com', 'depends': ['hr', 'crm_configuration', 'process'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'hr_workflow.xml', - 'hr_view.xml', - 'hr_holidays_report.xml', - 'hr_holidays_wizard.xml', - 'process/hr_holidays_process.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'hr_workflow.xml', + 'hr_view.xml', + 'hr_holidays_report.xml', + 'hr_holidays_wizard.xml', + 'process/hr_holidays_process.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '86579209325', + 'certificate': '0020345896856477', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_timesheet/__terp__.py b/addons/hr_timesheet/__terp__.py index c17deafa743..0f85e543310 100644 --- a/addons/hr_timesheet/__terp__.py +++ b/addons/hr_timesheet/__terp__.py @@ -40,16 +40,14 @@ to set up a management by affair. 'website': 'http://www.openerp.com', 'depends': ['account', 'hr', 'base', 'hr_attendance', 'process'], 'init_xml': ['hr_timesheet_data.xml'], - 'update_xml': [ - 'security/ir.model.access.csv', - 'hr_timesheet_view.xml', - 'hr_timesheet_report.xml', - 'hr_timesheet_wizard.xml', - 'process/hr_timesheet_process.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'hr_timesheet_view.xml', + 'hr_timesheet_report.xml', + 'hr_timesheet_wizard.xml', + 'process/hr_timesheet_process.xml'], 'demo_xml': ['hr_timesheet_demo.xml'], 'installable': True, 'active': False, - 'certificate': '71405533469', + 'certificate': '0022739527534493', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_timesheet_invoice/__terp__.py b/addons/hr_timesheet_invoice/__terp__.py index 899c466bdf7..e3b77502a76 100644 --- a/addons/hr_timesheet_invoice/__terp__.py +++ b/addons/hr_timesheet_invoice/__terp__.py @@ -33,15 +33,13 @@ reports, eso.""", 'website': 'http://www.openerp.com', 'depends': ['account', 'hr_timesheet'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'hr_timesheet_invoice_view.xml', - 'hr_timesheet_invoice_wizard.xml', - 'hr_timesheet_invoice_report.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'hr_timesheet_invoice_view.xml', + 'hr_timesheet_invoice_wizard.xml', + 'hr_timesheet_invoice_report.xml'], 'demo_xml': ['hr_timesheet_invoice_demo.xml'], 'installable': True, 'active': False, - 'certificate': '56091842381', + 'certificate': '0020346051941629', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_timesheet_sheet/__terp__.py b/addons/hr_timesheet_sheet/__terp__.py index 006569b4c0e..de80e66421a 100644 --- a/addons/hr_timesheet_sheet/__terp__.py +++ b/addons/hr_timesheet_sheet/__terp__.py @@ -48,15 +48,13 @@ The validation can be configured in te company: 'website': 'http://www.openerp.com', 'depends': ['hr_timesheet', 'hr_timesheet_invoice', 'process'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'hr_timesheet_sheet_view.xml', - 'hr_timesheet_workflow.xml', - 'process/hr_timesheet_sheet_process.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'hr_timesheet_sheet_view.xml', + 'hr_timesheet_workflow.xml', + 'process/hr_timesheet_sheet_process.xml'], 'demo_xml': ['hr_timesheet_sheet_demo.xml'], 'installable': True, 'active': False, - 'certificate': '73297700829', + 'certificate': '0011669036322245', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/idea/__terp__.py b/addons/idea/__terp__.py index 37b6d0c52ab..294d8dcbe58 100644 --- a/addons/idea/__terp__.py +++ b/addons/idea/__terp__.py @@ -30,14 +30,12 @@ 'website': 'http://openerp.com', 'depends': ['base'], 'init_xml': [], - 'update_xml': [ - 'idea_view.xml', - 'idea_workflow.xml', - 'security/idea_security.xml', - 'security/ir.model.access.csv' - ], + 'update_xml': [ 'idea_view.xml', + 'idea_workflow.xml', + 'security/idea_security.xml', + 'security/ir.model.access.csv'], 'demo_xml': [], 'installable': True, - 'certificate': '71515601309', + 'certificate': '0015857924651741', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_be/__terp__.py b/addons/l10n_be/__terp__.py index 05c87181e45..971135e6393 100644 --- a/addons/l10n_be/__terp__.py +++ b/addons/l10n_be/__terp__.py @@ -40,24 +40,14 @@ """, 'author': 'Tiny', - 'depends': [ - 'account', - 'account_report', - 'base_vat', - 'base_iban', - 'account_chart' - ], + 'depends': ['account', 'account_report', 'base_vat', 'base_iban', 'account_chart'], 'init_xml': [], - 'update_xml': [ - 'account_pcmn_belgium.xml', - 'l10n_be_wizard.xml', - 'l10n_be_sequence.xml', - 'fiscal_templates.xml', - ], - 'demo_xml': [ - 'account.report.report.csv' - ], + 'update_xml': [ 'account_pcmn_belgium.xml', + 'l10n_be_wizard.xml', + 'l10n_be_sequence.xml', + 'fiscal_templates.xml'], + 'demo_xml': ['account.report.report.csv'], 'installable': True, - 'certificate': '31977724637', + 'certificate': '0019747560288749', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_chart_uk_minimal/__terp__.py b/addons/l10n_chart_uk_minimal/__terp__.py index 3b714b16986..3add68dd4bf 100644 --- a/addons/l10n_chart_uk_minimal/__terp__.py +++ b/addons/l10n_chart_uk_minimal/__terp__.py @@ -20,44 +20,6 @@ # ############################################################################## -# -# This module provides a minimal UK chart of accounts for building upon further -# Open ERP's default currency and accounts are remapped to this chart -# -# This module works for Open ERP 4.1.0 (and, assumed, onwards). -# This module does not work for Open ERP 4.0.2 and before. -# -# VAT is structured thus: -# - the user company is assumed to be non-VAT exempt (easy to modify, however) -# - categories OVATS (Standard), OVATR (Reduced), OVATZ (Zero) should be -# assigned to the customer taxes section of products (depending on the product) -# - categories IVATS (Standard), IVATR (Reduced), IVATZ (Zero) should be -# assigned to the supplier taxes section of products (depending on the product) -# - categories OVATX (eXempt), OVATO (Out of scope), or nothing at all should be -# assigned to default tax field of customers (depending on the customer) -# - customer categorization trumps product categorization (unchanged Tiny functionality) -# - on purchases, upon invoicing -# - the base amount (ex-VAT) appears in the appropriate input base category (S, R, Z) -# - the VAT amount appears in the appropriate input VAT category (S, R) -# - invoice lines can be traced in these VAT categories -# - refunds of invoices are deducted from the input category -# - on sales, upon invoicing -# - the base amount (ex-VAT) appears in the appropriate output base category (S, R, Z, X, O) -# - the VAT amount appears in the appropriate output VAT category (S, R) -# - invoice lines can be traced in these VAT categories -# - refunds of invoices are deducted from the output category -# -# This forms a basis for accrual tax accounting -# Cash tax accounting can be accommodated with further processing in Open ERP -# -# Status beta 0.92 - tested on Open ERP 4.1.0 -# Status beta 0.93 - tested on Open ERP 4.1.0 -# - trivial change to depend only on 'account' -# (seemed to be important for importing with no demo data) -# Status 1.0 - tested on Open ERP 4.1.0, 4.0.3 -# - COGS account type fixed -# - { 'name': 'United Kingdom - minimal', @@ -68,14 +30,12 @@ 'website': 'http://www.seathsolutions.com', 'depends': ['base', 'account', 'base_iban', 'base_vat', 'account_chart'], 'init_xml': [], - 'update_xml': [ - 'account_types.xml', - 'account_chart.xml', - 'account_tax.xml', - 'l10n_uk_wizard.xml' - ], + 'update_xml': [ 'account_types.xml', + 'account_chart.xml', + 'account_tax.xml', + 'l10n_uk_wizard.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '64392144797', + 'certificate': '0025133078445917', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_fr/__terp__.py b/addons/l10n_fr/__terp__.py index 6d9bccc590d..3151a7e2ffb 100644 --- a/addons/l10n_fr/__terp__.py +++ b/addons/l10n_fr/__terp__.py @@ -25,35 +25,33 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## + + { - "name" : "France - Plan Comptable Général", - "version" : "1.0", - "author" : "OpenERP", - "website": "http://www.openerp.com", - "category" : "Localisation/Account Charts", - "description": """This is the module to manage the accounting chart for France in Open ERP. + 'name': 'France - Plan Comptable G\xc3\xa9n\xc3\xa9ral', + 'version': '1.0', + 'category': 'Localisation/Account Charts', + 'description': """This is the module to manage the accounting chart for France in Open ERP. Credits: Sistheo Zeekom CrysaLEAD """, - "depends" : ['base', 'account', 'account_chart', 'account_report', 'base_vat'], - "init_xml" : [ - ], - "update_xml" : [ - "report.xml", - "pcg.xml", - "l10n_fr_pcg_taxes.xml", - "tax.xml", - "fiscal_templates_fr.xml", - "l10n_fr_pcg_account_report.xml", - "l10n_fr_pcg_report.xml", - "l10n_fr_pcg_wizard.xml", - "l10n_fr_pcg_view.xml", - "security/ir.model.access.csv", - ], - "demo_xml" : [], - "certificate" : "435321693876313629", - "active": False, - "installable": True + 'author': 'OpenERP', + 'website': 'http://www.openerp.com', + 'depends': ['base', 'account', 'account_chart', 'account_report', 'base_vat'], + 'init_xml': [], + 'update_xml': [ 'report.xml', + 'pcg.xml', + 'l10n_fr_pcg_taxes.xml', + 'tax.xml', + 'fiscal_templates_fr.xml', + 'l10n_fr_pcg_account_report.xml', + 'l10n_fr_pcg_report.xml', + 'l10n_fr_pcg_wizard.xml', + 'l10n_fr_pcg_view.xml', + 'security/ir.model.access.csv'], + 'demo_xml': [], + 'installable': True, + 'active': False, + 'certificate': '0012865552406941', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - diff --git a/addons/l10n_lu/__terp__.py b/addons/l10n_lu/__terp__.py index 62d39d81e67..69f29bdf6bc 100644 --- a/addons/l10n_lu/__terp__.py +++ b/addons/l10n_lu/__terp__.py @@ -35,15 +35,13 @@ This module installs: 'website': 'http://openerp.com', 'depends': ['account', 'account_report', 'base_vat', 'base_iban'], 'init_xml': [], - 'update_xml': [ - 'account.tax.code.template.csv', - 'l10n_lu_data.xml', - 'account.tax.template.csv', - 'l10n_lu_wizard.xml', - 'l10n_lu_report.xml' - ], + 'update_xml': [ 'account.tax.code.template.csv', + 'l10n_lu_data.xml', + 'account.tax.template.csv', + 'l10n_lu_wizard.xml', + 'l10n_lu_report.xml'], 'demo_xml': ['account.report.report.csv'], 'installable': True, - 'certificate': '78164766621', + 'certificate': '0011967958241629', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/membership/__terp__.py b/addons/membership/__terp__.py index 54dce054fad..c346da6b35e 100644 --- a/addons/membership/__terp__.py +++ b/addons/membership/__terp__.py @@ -40,15 +40,13 @@ invoice and send propositions for membership renewal. 'author': 'Tiny', 'depends': ['base', 'product', 'account', 'process'], 'init_xml': ['membership_data.xml'], - 'update_xml': [ - 'security/ir.model.access.csv', - 'membership_view.xml', - 'membership_wizard.xml', - 'process/membership_process.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'membership_view.xml', + 'membership_wizard.xml', + 'process/membership_process.xml'], 'demo_xml': ['membership_demo.xml'], 'installable': True, 'active': False, - 'certificate': '42907796381', + 'certificate': '0025731724123933', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp/__terp__.py b/addons/mrp/__terp__.py index 47d2a6a2836..8469f1d9cc2 100644 --- a/addons/mrp/__terp__.py +++ b/addons/mrp/__terp__.py @@ -22,13 +22,10 @@ { - "name" : "Manufacturing Resource Planning", - "version" : "1.1", - "author" : "Tiny", - "website" : "http://www.openerp.com", - "category" : "Generic Modules/Production", - "depends" : ["stock", "hr", "purchase", "product","process"], - "description": """ + 'name': 'Manufacturing Resource Planning', + 'version': '1.1', + 'category': 'Generic Modules/Production', + 'description': """ This is the base module to manage the manufacturing process in Open ERP. Features: @@ -59,22 +56,20 @@ 'website': 'http://www.openerp.com', 'depends': ['stock', 'hr', 'purchase', 'product', 'process'], 'init_xml': [], - 'update_xml': [ - 'security/mrp_security.xml', - 'security/ir.model.access.csv', - 'mrp_workflow.xml', - 'mrp_data.xml', - 'mrp_view.xml', - 'mrp_wizard.xml', - 'mrp_report.xml', - 'company_view.xml', - 'process/stockable_product_process.xml', - 'process/service_product_process.xml', - 'process/procurement_process.xml' - ], + 'update_xml': [ 'security/mrp_security.xml', + 'security/ir.model.access.csv', + 'mrp_workflow.xml', + 'mrp_data.xml', + 'mrp_view.xml', + 'mrp_wizard.xml', + 'mrp_report.xml', + 'company_view.xml', + 'process/stockable_product_process.xml', + 'process/service_product_process.xml', + 'process/procurement_process.xml'], 'demo_xml': ['mrp_demo.xml', 'mrp_order_point.xml'], 'installable': True, 'active': False, - 'certificate': '32052481373', + 'certificate': '009574614938141', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_jit/__terp__.py b/addons/mrp_jit/__terp__.py index 399419d0d82..75954145503 100644 --- a/addons/mrp_jit/__terp__.py +++ b/addons/mrp_jit/__terp__.py @@ -42,6 +42,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '86634760061', + 'certificate': '0016456348340989', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_operations/__terp__.py b/addons/mrp_operations/__terp__.py index ed7f848fe5f..00c430c8036 100644 --- a/addons/mrp_operations/__terp__.py +++ b/addons/mrp_operations/__terp__.py @@ -54,16 +54,14 @@ 'website': 'http://www.openerp.com', 'depends': ['stock', 'hr', 'purchase', 'product', 'mrp'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'mrp_operations_workflow.xml', - 'mrp_operations_view.xml', - 'mrp_operations_report.xml', - 'process/mrp_operation_process.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'mrp_operations_workflow.xml', + 'mrp_operations_view.xml', + 'mrp_operations_report.xml', + 'process/mrp_operation_process.xml'], 'demo_xml': ['mrp_operation_data.xml'], 'installable': True, 'active': False, - 'certificate': '56233813133', + 'certificate': '0016755442036509', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_repair/__terp__.py b/addons/mrp_repair/__terp__.py index 380e02a6c67..5202e722bbe 100644 --- a/addons/mrp_repair/__terp__.py +++ b/addons/mrp_repair/__terp__.py @@ -36,17 +36,15 @@ """, 'author': 'Tiny', 'depends': ['base', 'sale', 'account'], - 'update_xml': [ - 'security/ir.model.access.csv', - 'mrp_repair_sequence.xml', - 'mrp_repair_wizard.xml', - 'mrp_repair_view.xml', - 'mrp_repair_workflow.xml', - 'mrp_repair_report.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'mrp_repair_sequence.xml', + 'mrp_repair_wizard.xml', + 'mrp_repair_view.xml', + 'mrp_repair_workflow.xml', + 'mrp_repair_report.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '60814381277', + 'certificate': '0019747418778941', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_subproduct/__terp__.py b/addons/mrp_subproduct/__terp__.py index 80181422a55..c6f0590de28 100644 --- a/addons/mrp_subproduct/__terp__.py +++ b/addons/mrp_subproduct/__terp__.py @@ -41,6 +41,6 @@ With this module: 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '50060616733', + 'certificate': '0010472212219869', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/point_of_sale/__terp__.py b/addons/point_of_sale/__terp__.py index 46e6f519b08..6377d9d59ef 100644 --- a/addons/point_of_sale/__terp__.py +++ b/addons/point_of_sale/__terp__.py @@ -38,18 +38,16 @@ Main features : 'author': 'Tiny', 'depends': ['sale', 'purchase', 'account', 'account_tax_include'], 'init_xml': [], - 'update_xml': [ - 'security/point_of_sale_security.xml', - 'security/ir.model.access.csv', - 'pos_report.xml', - 'pos_wizard.xml', - 'pos_view.xml', - 'pos_sequence.xml', - 'pos_data.xml', - 'pos_workflow.xml' - ], + 'update_xml': [ 'security/point_of_sale_security.xml', + 'security/ir.model.access.csv', + 'pos_report.xml', + 'pos_wizard.xml', + 'pos_view.xml', + 'pos_sequence.xml', + 'pos_data.xml', + 'pos_workflow.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '48272150909', + 'certificate': '0014361891603101', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/process/__terp__.py b/addons/process/__terp__.py index b76360ee420..ac203b938ce 100644 --- a/addons/process/__terp__.py +++ b/addons/process/__terp__.py @@ -36,6 +36,6 @@ This module allows you to manage your process for the end-users. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '55447636669', + 'certificate': '0021841841982765', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/product/__terp__.py b/addons/product/__terp__.py index 568471df253..23aa914b798 100644 --- a/addons/product/__terp__.py +++ b/addons/product/__terp__.py @@ -22,14 +22,10 @@ { - "name" : "Products & Pricelists", - "version" : "1.1", - "author" : "Tiny", - "category" : "Generic Modules/Inventory Control", - "depends" : ["base", "process"], - "init_xml" : [], - "demo_xml" : ["product_demo.xml"], - "description": """ + 'name': 'Products & Pricelists', + 'version': '1.1', + 'category': 'Generic Modules/Inventory Control', + 'description': """ This is the base module for managing products and pricelists in Open ERP. Products support variants, different pricing methods, suppliers @@ -50,20 +46,18 @@ 'author': 'Tiny', 'depends': ['base', 'process'], 'init_xml': [], - 'update_xml': [ - 'security/product_security.xml', - 'security/ir.model.access.csv', - 'product_data.xml', - 'product_report.xml', - 'product_view.xml', - 'pricelist_view.xml', - 'partner_view.xml', - 'product_wizard.xml', - 'process/product_process.xml' - ], + 'update_xml': [ 'security/product_security.xml', + 'security/ir.model.access.csv', + 'product_data.xml', + 'product_report.xml', + 'product_view.xml', + 'pricelist_view.xml', + 'partner_view.xml', + 'product_wizard.xml', + 'process/product_process.xml'], 'demo_xml': ['product_demo.xml'], 'installable': True, 'active': False, - 'certificate': '68861431437', + 'certificate': '0025731486276829', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/product_margin/__terp__.py b/addons/product_margin/__terp__.py index 0096c61abe6..7c983946613 100644 --- a/addons/product_margin/__terp__.py +++ b/addons/product_margin/__terp__.py @@ -36,6 +36,6 @@ the report has several options to help you get the data you need. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '64392591773', + 'certificate': '0021542640008861', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_accounting/__terp__.py b/addons/profile_accounting/__terp__.py index 73f6f984624..de397d2a63e 100644 --- a/addons/profile_accounting/__terp__.py +++ b/addons/profile_accounting/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '38455352045', + 'certificate': '008676896400205', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_association/__terp__.py b/addons/profile_association/__terp__.py index 7a7efca044b..2c357e73080 100644 --- a/addons/profile_association/__terp__.py +++ b/addons/profile_association/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '78696047261', + 'certificate': '0022739451927261', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_auction/__terp__.py b/addons/profile_auction/__terp__.py index 997087a1049..44b08959c09 100644 --- a/addons/profile_auction/__terp__.py +++ b/addons/profile_auction/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '65280135565', + 'certificate': '0022739451927261', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_crm/__terp__.py b/addons/profile_crm/__terp__.py index bbee7356313..3c24f777121 100644 --- a/addons/profile_crm/__terp__.py +++ b/addons/profile_crm/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '73301264221', + 'certificate': '0017653158886645', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_manufacturing/__terp__.py b/addons/profile_manufacturing/__terp__.py index 167343d05de..906be82f08c 100644 --- a/addons/profile_manufacturing/__terp__.py +++ b/addons/profile_manufacturing/__terp__.py @@ -27,11 +27,16 @@ 'category': 'Profile', 'description': """Profile for manufacturing industries""", 'author': 'Tiny', - 'depends': ['mrp', 'sale', 'delivery', 'board_manufacturing', 'product_margin', 'sale_delivery_report'], + 'depends': [ 'mrp', + 'sale', + 'delivery', + 'board_manufacturing', + 'product_margin', + 'sale_delivery_report'], 'update_xml': ['security/ir.model.access.csv', 'profile_manufacturing.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '27737506213', + 'certificate': '0013464299079029', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_service/__terp__.py b/addons/profile_service/__terp__.py index 828722a2389..7c86f2d7aef 100644 --- a/addons/profile_service/__terp__.py +++ b/addons/profile_service/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '30405502077', + 'certificate': '0023038656317629', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project/__terp__.py b/addons/project/__terp__.py index 01059dc193e..78a85dc082c 100644 --- a/addons/project/__terp__.py +++ b/addons/project/__terp__.py @@ -22,29 +22,26 @@ { - "name" : "Project Management", - "version": "1.1", - "author" : "Tiny", - "website" : "http://www.openerp.com", - "category" : "Generic Modules/Projects & Services", - "depends" : ["product", "account", "hr", "process"], - "description": """Project management module that track multi-level projects, tasks, + 'name': 'Project Management', + 'version': '1.1', + 'category': 'Generic Modules/Projects & Services', + 'description': """Project management module that track multi-level projects, tasks, works done on tasks, eso. It is able to render planning, order tasks, eso. """, - "init_xml" : [], - "demo_xml" : ["project_demo.xml"], - "update_xml": [ - "security/project_security.xml", - "security/ir.model.access.csv", - "project_data.xml", - "project_wizard.xml", - "project_view.xml", - "project_report.xml", - "process/task_process.xml" - ], + 'author': 'Tiny', + 'website': 'http://www.openerp.com', + 'depends': ['product', 'account', 'hr', 'process'], + 'init_xml': [], + 'update_xml': [ 'security/project_security.xml', + 'security/ir.model.access.csv', + 'project_data.xml', + 'project_wizard.xml', + 'project_view.xml', + 'project_report.xml', + 'process/task_process.xml'], 'demo_xml': ['project_demo.xml'], 'installable': True, 'active': False, - 'certificate': '75116868317', + 'certificate': '0020645028723437', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_gtd/__terp__.py b/addons/project_gtd/__terp__.py index 272c7e69a12..e628e500817 100644 --- a/addons/project_gtd/__terp__.py +++ b/addons/project_gtd/__terp__.py @@ -41,14 +41,12 @@ performing those tasks. 'author': 'Tiny', 'depends': ['project'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'project_gtd_view.xml', - 'project_gtd_wizard.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'project_gtd_view.xml', + 'project_gtd_wizard.xml'], 'demo_xml': ['project_gtd_demo.xml'], 'installable': True, 'active': False, - 'certificate': '43525236301', + 'certificate': '0022739115882013', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_mrp/__terp__.py b/addons/project_mrp/__terp__.py index f1da23862e1..b7990b7d9ff 100644 --- a/addons/project_mrp/__terp__.py +++ b/addons/project_mrp/__terp__.py @@ -40,6 +40,6 @@ created by sales orders. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '31976495453', + 'certificate': '0025132707027485', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_retro_planning/__terp__.py b/addons/project_retro_planning/__terp__.py index 14cb39754e8..032ebce2879 100644 --- a/addons/project_retro_planning/__terp__.py +++ b/addons/project_retro_planning/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '57235475485', + 'certificate': '0014660963339373', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_timesheet/__terp__.py b/addons/project_timesheet/__terp__.py index d764fc80684..d82bcbf86c3 100644 --- a/addons/project_timesheet/__terp__.py +++ b/addons/project_timesheet/__terp__.py @@ -38,6 +38,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '75123647453', + 'certificate': '0017952200286749', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/purchase/__terp__.py b/addons/purchase/__terp__.py index f66c1d75dbe..90624337a13 100644 --- a/addons/purchase/__terp__.py +++ b/addons/purchase/__terp__.py @@ -31,22 +31,20 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'account', 'stock', 'process'], 'init_xml': [], - 'update_xml': [ - 'security/purchase_security.xml', - 'security/ir.model.access.csv', - 'purchase_workflow.xml', - 'purchase_sequence.xml', - 'purchase_data.xml', - 'purchase_view.xml', - 'purchase_report.xml', - 'purchase_wizard.xml', - 'stock_view.xml', - 'partner_view.xml', - 'process/purchase_process.xml' - ], + 'update_xml': [ 'security/purchase_security.xml', + 'security/ir.model.access.csv', + 'purchase_workflow.xml', + 'purchase_sequence.xml', + 'purchase_data.xml', + 'purchase_view.xml', + 'purchase_report.xml', + 'purchase_wizard.xml', + 'stock_view.xml', + 'partner_view.xml', + 'process/purchase_process.xml'], 'demo_xml': ['purchase_demo.xml'], 'installable': True, 'active': False, - 'certificate': '57234283549', + 'certificate': '0014361760229405', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/purchase_analytic_plans/__terp__.py b/addons/purchase_analytic_plans/__terp__.py index c639aa1eb66..dd5282287fb 100644 --- a/addons/purchase_analytic_plans/__terp__.py +++ b/addons/purchase_analytic_plans/__terp__.py @@ -36,6 +36,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '62176518909', + 'certificate': '0013463950193309', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_account/__terp__.py b/addons/report_account/__terp__.py index 2b568ce08b0..62c19c659a5 100644 --- a/addons/report_account/__terp__.py +++ b/addons/report_account/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '61754222813', + 'certificate': '0023038913848749', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_analytic/__terp__.py b/addons/report_analytic/__terp__.py index 0d072fcf1ef..3e400773397 100644 --- a/addons/report_analytic/__terp__.py +++ b/addons/report_analytic/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '59950675429', + 'certificate': '0015259537848101', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_analytic_line/__terp__.py b/addons/report_analytic_line/__terp__.py index 905eca096eb..e6b7051e1da 100644 --- a/addons/report_analytic_line/__terp__.py +++ b/addons/report_analytic_line/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '75179053853', + 'certificate': '0025731773908989', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_analytic_planning/__terp__.py b/addons/report_analytic_planning/__terp__.py index 73a71fc0bca..d9a870cd17d 100644 --- a/addons/report_analytic_planning/__terp__.py +++ b/addons/report_analytic_planning/__terp__.py @@ -30,14 +30,12 @@ 'website': 'http://www.openerp.com', 'depends': ['account', 'hr_timesheet_invoice', 'project', 'report_analytic_line'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'report_analytic_planning_view.xml', - 'report_analytic_planning_report.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'report_analytic_planning_view.xml', + 'report_analytic_planning_report.xml'], 'demo_xml': ['report_account_analytic.planning.csv'], 'installable': True, 'active': False, - 'certificate': '34901836973', + 'certificate': '0019149225704477', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_crm/__terp__.py b/addons/report_crm/__terp__.py index 35ea350abf8..c42b2c97b6a 100644 --- a/addons/report_crm/__terp__.py +++ b/addons/report_crm/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '30422968285', + 'certificate': '008976199060109', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_document/__terp__.py b/addons/report_document/__terp__.py index d6ae3bccef3..8c9e9374df2 100644 --- a/addons/report_document/__terp__.py +++ b/addons/report_document/__terp__.py @@ -37,6 +37,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '68012774557', + 'certificate': '0016456365242269', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_intrastat/__terp__.py b/addons/report_intrastat/__terp__.py index f23feae9786..08f8bb1950d 100644 --- a/addons/report_intrastat/__terp__.py +++ b/addons/report_intrastat/__terp__.py @@ -30,14 +30,12 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'product', 'stock', 'sale', 'purchase'], 'init_xml': ['report_intrastat_data.xml'], - 'update_xml': [ - 'security/ir.model.access.csv', - 'report_intrastat_view.xml', - 'intrastat_report.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'report_intrastat_view.xml', + 'intrastat_report.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '56982189085', + 'certificate': '0027227801344045', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_mrp/__terp__.py b/addons/report_mrp/__terp__.py index 4e75a21e41d..d5958a90d6e 100644 --- a/addons/report_mrp/__terp__.py +++ b/addons/report_mrp/__terp__.py @@ -34,6 +34,6 @@ 'update_xml': ['security/ir.model.access.csv', 'report_mrp_view.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '71582896029', + 'certificate': '0011070646110413', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_project/__terp__.py b/addons/report_project/__terp__.py index c88f64c45e2..b4bae62699f 100644 --- a/addons/report_project/__terp__.py +++ b/addons/report_project/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '86804423149', + 'certificate': '0016755572187229', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_purchase/__terp__.py b/addons/report_purchase/__terp__.py index 5cc72c7de17..e5f1a6e6b07 100644 --- a/addons/report_purchase/__terp__.py +++ b/addons/report_purchase/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '73370750365', + 'certificate': '0019149228485661', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_sale/__terp__.py b/addons/report_sale/__terp__.py index 6f8f4408c49..45a28f2651b 100644 --- a/addons/report_sale/__terp__.py +++ b/addons/report_sale/__terp__.py @@ -40,14 +40,12 @@ 'website': 'http://www.openerp.com', 'depends': ['sale'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'report_sale_view.xml', - 'report_sale_graph.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'report_sale_view.xml', + 'report_sale_graph.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '59949739573', + 'certificate': '0027527007452477', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_task/__terp__.py b/addons/report_task/__terp__.py index 4784e0d6c87..9f091656c7a 100644 --- a/addons/report_task/__terp__.py +++ b/addons/report_task/__terp__.py @@ -32,6 +32,6 @@ 'update_xml': ['security/ir.model.access.csv', 'report_task_view.xml'], 'installable': True, 'active': False, - 'certificate': '27671328157', + 'certificate': '0026629187427709', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_timesheet/__terp__.py b/addons/report_timesheet/__terp__.py index bdf3189755f..8dc1c45977f 100644 --- a/addons/report_timesheet/__terp__.py +++ b/addons/report_timesheet/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '78701510301', + 'certificate': '0016156980258077', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale/__terp__.py b/addons/sale/__terp__.py index 3f1a147e541..a18923b3312 100644 --- a/addons/sale/__terp__.py +++ b/addons/sale/__terp__.py @@ -45,23 +45,21 @@ 'website': 'http://www.openerp.com', 'depends': ['product', 'stock', 'mrp', 'process'], 'init_xml': [], - 'update_xml': [ - 'security/sale_security.xml', - 'security/ir.model.access.csv', - 'sale_workflow.xml', - 'sale_sequence.xml', - 'sale_data.xml', - 'sale_wizard.xml', - 'sale_view.xml', - 'sale_report.xml', - 'sale_wizard.xml', - 'stock_view.xml', - 'process/sale_process.xml', - 'product_view.xml' - ], + 'update_xml': [ 'security/sale_security.xml', + 'security/ir.model.access.csv', + 'sale_workflow.xml', + 'sale_sequence.xml', + 'sale_data.xml', + 'sale_wizard.xml', + 'sale_view.xml', + 'sale_report.xml', + 'sale_wizard.xml', + 'stock_view.xml', + 'process/sale_process.xml', + 'product_view.xml'], 'demo_xml': ['sale_demo.xml'], 'installable': True, 'active': False, - 'certificate': '58103601429', + 'certificate': '0013763479809933', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_analytic_plans/__terp__.py b/addons/sale_analytic_plans/__terp__.py index 09583f59f11..60d87ab3582 100644 --- a/addons/sale_analytic_plans/__terp__.py +++ b/addons/sale_analytic_plans/__terp__.py @@ -36,6 +36,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '66055860861', + 'certificate': '0024833956156349', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_crm/__terp__.py b/addons/sale_crm/__terp__.py index e950030db95..ad9675217ec 100644 --- a/addons/sale_crm/__terp__.py +++ b/addons/sale_crm/__terp__.py @@ -46,6 +46,6 @@ crm_configuration modules. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '64360130141', + 'certificate': '0025432520667869', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_delivery_report/__terp__.py b/addons/sale_delivery_report/__terp__.py index 32084e730eb..5df5c2c7635 100644 --- a/addons/sale_delivery_report/__terp__.py +++ b/addons/sale_delivery_report/__terp__.py @@ -29,12 +29,10 @@ 'author': 'Tiny', 'depends': ['sale', 'delivery'], 'init_xml': [], - 'update_xml': [ - 'delivery_report.xml' - ], + 'update_xml': ['delivery_report.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '803459507494914221', + 'certificate': '0026629095848845', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_journal/__terp__.py b/addons/sale_journal/__terp__.py index b03479be8b8..838e4e1c622 100644 --- a/addons/sale_journal/__terp__.py +++ b/addons/sale_journal/__terp__.py @@ -52,15 +52,13 @@ 'website': 'http://www.openerp.com', 'depends': ['stock', 'sale'], 'init_xml': ['sale_journal_data.xml'], - 'update_xml': [ - 'security/ir.model.access.csv', - 'sale_journal_view.xml', - 'picking_journal_view.xml', - 'picking_journal_view_report.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'sale_journal_view.xml', + 'picking_journal_view.xml', + 'picking_journal_view_report.xml'], 'demo_xml': ['sale_journal_demo.xml'], 'installable': True, 'active': False, - 'certificate': '77661619085', + 'certificate': '0021841915965053', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/scrum/__terp__.py b/addons/scrum/__terp__.py index 3915aa5e57a..e43cf21e7ca 100644 --- a/addons/scrum/__terp__.py +++ b/addons/scrum/__terp__.py @@ -50,16 +50,14 @@ 'author': 'Tiny', 'depends': ['project', 'process'], 'init_xml': [], - 'update_xml': [ - 'security/ir.model.access.csv', - 'scrum_view.xml', - 'scrum_report.xml', - 'scrum_wizard.xml', - 'process/scrum_process.xml' - ], + 'update_xml': [ 'security/ir.model.access.csv', + 'scrum_view.xml', + 'scrum_report.xml', + 'scrum_wizard.xml', + 'process/scrum_process.xml'], 'demo_xml': ['scrum_demo.xml'], 'installable': True, 'active': False, - 'certificate': '84121063261', + 'certificate': '0012566677771565', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock/__terp__.py b/addons/stock/__terp__.py index fff0e892b82..3e14a6e1f93 100644 --- a/addons/stock/__terp__.py +++ b/addons/stock/__terp__.py @@ -22,10 +22,10 @@ { - "name" : "Stock Management", - "version" : "1.1", - "author" : "Tiny", - "description" : """OpenERP Stock Management module can manage multi-warehouses, multi and structured stock locations. + 'name': 'Stock Management', + 'version': '1.1', + 'category': 'Generic Modules/Inventory Control', + 'description': """OpenERP Stock Management module can manage multi-warehouses, multi and structured stock locations. Thanks to the double entry management, the inventory controlling is powerful and flexible: * Moves history and planning, * Different inventory methods (FIFO, LIFO, ...) @@ -36,29 +36,26 @@ Thanks to the double entry management, the inventory controlling is powerful and * Rapid detection of mistakes through double entry system * Traceability (upstream/downstream, production lots, serial number, ...) """, - "website" : "http://www.openerp.com", - "depends" : ["product", "account"], - "category" : "Generic Modules/Inventory Control", - "init_xml" : [], - "demo_xml" : ["stock_demo.xml"], - "update_xml" : [ - "stock_workflow.xml", - "stock_data.xml", - "stock_incoterms.xml", - "stock_wizard.xml", - "stock_view.xml", - "stock_report.xml", - "stock_sequence.xml", - "product_data.xml", - "product_view.xml", - "partner_view.xml", - "report_stock_view.xml", - "security/stock_security.xml", - "security/ir.model.access.csv", - ], + 'author': 'Tiny', + 'website': 'http://www.openerp.com', + 'depends': ['product', 'account'], + 'init_xml': [], + 'update_xml': [ 'stock_workflow.xml', + 'stock_data.xml', + 'stock_incoterms.xml', + 'stock_wizard.xml', + 'stock_view.xml', + 'stock_report.xml', + 'stock_sequence.xml', + 'product_data.xml', + 'product_view.xml', + 'partner_view.xml', + 'report_stock_view.xml', + 'security/stock_security.xml', + 'security/ir.model.access.csv'], 'demo_xml': ['stock_demo.xml'], 'installable': True, 'active': False, - 'certificate': '55421559965', + 'certificate': '0023038870767557', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock_invoice_directly/__terp__.py b/addons/stock_invoice_directly/__terp__.py index e89b1b2d56d..09a4cb056b2 100644 --- a/addons/stock_invoice_directly/__terp__.py +++ b/addons/stock_invoice_directly/__terp__.py @@ -37,6 +37,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '81385081261', + 'certificate': '008676896670253', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock_location/__terp__.py b/addons/stock_location/__terp__.py index 42b9f52eeb0..64bc6ba15cc 100644 --- a/addons/stock_location/__terp__.py +++ b/addons/stock_location/__terp__.py @@ -44,6 +44,6 @@ This module may be useful for different purposes: 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '46505115101', + 'certificate': '0026928300011069', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock_no_autopicking/__terp__.py b/addons/stock_no_autopicking/__terp__.py index 31a01a2ae93..32f2af4b1a7 100644 --- a/addons/stock_no_autopicking/__terp__.py +++ b/addons/stock_no_autopicking/__terp__.py @@ -40,6 +40,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '75124168925', + 'certificate': '0015259369768829', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/subscription/__terp__.py b/addons/subscription/__terp__.py index 97e2f7cef54..8c4ee6680b0 100644 --- a/addons/subscription/__terp__.py +++ b/addons/subscription/__terp__.py @@ -33,6 +33,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '29454782573', + 'certificate': '0025731569029469', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/warning/__terp__.py b/addons/warning/__terp__.py index 09c6cdc854e..9248ba63fc1 100644 --- a/addons/warning/__terp__.py +++ b/addons/warning/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '80334018749', + 'certificate': '0017054645297021', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/wiki/__terp__.py b/addons/wiki/__terp__.py index 6ed97909ded..20c8ad34f3a 100644 --- a/addons/wiki/__terp__.py +++ b/addons/wiki/__terp__.py @@ -13,16 +13,14 @@ 'website': 'http://openerp.com', 'depends': ['base'], 'init_xml': [], - 'update_xml': [ - 'wiki_view.xml', - 'data/wiki_quickstart.xml', - 'data/wiki_main.xml', - 'wizard/wizard_view.xml', - 'security/ir.model.access.csv' - ], + 'update_xml': [ 'wiki_view.xml', + 'data/wiki_quickstart.xml', + 'data/wiki_main.xml', + 'wizard/wizard_view.xml', + 'security/ir.model.access.csv'], 'demo_xml': ['data/wiki_faq.xml'], 'installable': True, 'active': False, - 'certificate': '86363630317', + 'certificate': '009574612852253', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From 6c78bfe44e5986b88ca9e95188bd62969ab34ce5 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Tue, 3 Feb 2009 17:54:02 +0100 Subject: [PATCH 7/9] [FIX] Revert bzr revid: stephane@tinyerp.com-20090203165402-ge1pi3i0r8xn1ynq --- addons/account/__terp__.py | 64 ++++++++++--------- addons/account_analytic_analysis/__terp__.py | 23 ++++--- addons/account_analytic_default/__terp__.py | 2 +- addons/account_analytic_plans/__terp__.py | 12 ++-- addons/account_balance/__terp__.py | 2 +- addons/account_budget/__terp__.py | 14 ++-- addons/account_chart/__terp__.py | 2 +- addons/account_date_check/__terp__.py | 2 +- addons/account_followup/__terp__.py | 12 ++-- addons/account_invoice_layout/__terp__.py | 10 +-- addons/account_payment/__terp__.py | 31 +++++---- addons/account_report/__terp__.py | 12 ++-- addons/account_reporting/__terp__.py | 12 ++-- addons/account_tax_include/__terp__.py | 2 +- addons/account_voucher/__terp__.py | 14 ++-- .../analytic_journal_billing_rate/__terp__.py | 2 +- addons/analytic_user_function/__terp__.py | 2 +- addons/auction/__terp__.py | 12 ++-- addons/audittrail/__terp__.py | 10 +-- addons/base_contact/__terp__.py | 10 +-- addons/base_iban/__terp__.py | 2 +- addons/base_module_merge/__terp__.py | 2 +- addons/base_module_publish/__terp__.py | 2 +- addons/base_module_record/__terp__.py | 2 +- addons/base_report_creator/__terp__.py | 10 +-- addons/base_report_designer/__terp__.py | 2 +- addons/base_setup/__terp__.py | 2 +- addons/base_vat/__terp__.py | 2 +- addons/board/__terp__.py | 2 +- addons/board_account/__terp__.py | 18 +++--- addons/board_association/__terp__.py | 2 +- addons/board_auction/__terp__.py | 2 +- addons/board_crm_configuration/__terp__.py | 2 +- addons/board_document/__terp__.py | 2 +- addons/board_manufacturing/__terp__.py | 2 +- addons/board_project/__terp__.py | 18 +++--- addons/board_sale/__terp__.py | 2 +- addons/crm/__terp__.py | 14 ++-- addons/crm_configuration/__terp__.py | 26 ++++---- addons/crm_profiling/__terp__.py | 2 +- addons/crm_vertical/__terp__.py | 2 +- addons/delivery/__terp__.py | 12 ++-- addons/document/__terp__.py | 12 ++-- addons/document_ics/__terp__.py | 2 +- addons/event/__terp__.py | 14 ++-- addons/event_project/__terp__.py | 2 +- addons/google_map/__terp__.py | 2 +- addons/hr/__terp__.py | 26 ++++---- addons/hr_attendance/__terp__.py | 14 ++-- addons/hr_contract/__terp__.py | 10 +-- addons/hr_expense/__terp__.py | 16 +++-- addons/hr_holidays/__terp__.py | 26 ++++---- addons/hr_timesheet/__terp__.py | 14 ++-- addons/hr_timesheet_invoice/__terp__.py | 12 ++-- addons/hr_timesheet_sheet/__terp__.py | 12 ++-- addons/idea/__terp__.py | 12 ++-- addons/l10n_be/__terp__.py | 24 +++++-- addons/l10n_chart_uk_minimal/__terp__.py | 50 +++++++++++++-- addons/l10n_fr/__terp__.py | 50 ++++++++------- addons/l10n_lu/__terp__.py | 14 ++-- addons/membership/__terp__.py | 12 ++-- addons/mrp/__terp__.py | 37 ++++++----- addons/mrp_jit/__terp__.py | 2 +- addons/mrp_operations/__terp__.py | 14 ++-- addons/mrp_repair/__terp__.py | 16 +++-- addons/mrp_subproduct/__terp__.py | 2 +- addons/point_of_sale/__terp__.py | 20 +++--- addons/process/__terp__.py | 2 +- addons/product/__terp__.py | 34 ++++++---- addons/product_margin/__terp__.py | 2 +- addons/profile_accounting/__terp__.py | 2 +- addons/profile_association/__terp__.py | 2 +- addons/profile_auction/__terp__.py | 2 +- addons/profile_crm/__terp__.py | 2 +- addons/profile_manufacturing/__terp__.py | 9 +-- addons/profile_service/__terp__.py | 2 +- addons/project/__terp__.py | 35 +++++----- addons/project_gtd/__terp__.py | 10 +-- addons/project_mrp/__terp__.py | 2 +- addons/project_retro_planning/__terp__.py | 2 +- addons/project_timesheet/__terp__.py | 2 +- addons/purchase/__terp__.py | 26 ++++---- addons/purchase_analytic_plans/__terp__.py | 2 +- addons/report_account/__terp__.py | 2 +- addons/report_analytic/__terp__.py | 2 +- addons/report_analytic_line/__terp__.py | 2 +- addons/report_analytic_planning/__terp__.py | 10 +-- addons/report_crm/__terp__.py | 2 +- addons/report_document/__terp__.py | 2 +- addons/report_intrastat/__terp__.py | 10 +-- addons/report_mrp/__terp__.py | 2 +- addons/report_project/__terp__.py | 2 +- addons/report_purchase/__terp__.py | 2 +- addons/report_sale/__terp__.py | 10 +-- addons/report_task/__terp__.py | 2 +- addons/report_timesheet/__terp__.py | 2 +- addons/sale/__terp__.py | 28 ++++---- addons/sale_analytic_plans/__terp__.py | 2 +- addons/sale_crm/__terp__.py | 2 +- addons/sale_delivery_report/__terp__.py | 6 +- addons/sale_journal/__terp__.py | 12 ++-- addons/scrum/__terp__.py | 14 ++-- addons/stock/__terp__.py | 47 +++++++------- addons/stock_invoice_directly/__terp__.py | 2 +- addons/stock_location/__terp__.py | 2 +- addons/stock_no_autopicking/__terp__.py | 2 +- addons/subscription/__terp__.py | 2 +- addons/warning/__terp__.py | 2 +- addons/wiki/__terp__.py | 14 ++-- 109 files changed, 642 insertions(+), 474 deletions(-) diff --git a/addons/account/__terp__.py b/addons/account/__terp__.py index 3caedb2b285..eb9786c9d63 100644 --- a/addons/account/__terp__.py +++ b/addons/account/__terp__.py @@ -22,9 +22,11 @@ { - 'name': 'Accounting and financial management', - 'version': '1.1', - 'description': """Financial and accounting module that covers: + "name" : "Accounting and financial management", + "version" : "1.1", + "depends" : ["product", "base", "process"], + "author" : "Tiny", + "description": """Financial and accounting module that covers: General accounting Cost / Analytic accounting Third party accounting @@ -37,33 +39,37 @@ 'website': 'http://www.openerp.com', 'depends': ['product', 'base', 'process'], 'init_xml': [], - 'update_xml': [ 'security/account_security.xml', - 'security/ir.model.access.csv', - 'account_menuitem.xml', - 'account_wizard.xml', - 'account_view.xml', - 'account_end_fy.xml', - 'account_invoice_view.xml', - 'account_report.xml', - 'partner_view.xml', - 'data/account_invoice.xml', - 'data/account_data2.xml', - 'account_invoice_workflow.xml', - 'project/project_view.xml', - 'project/project_report.xml', - 'product_view.xml', - 'account_assert_test.xml', - 'process/statement_process.xml', - 'process/customer_invoice_process.xml', - 'process/supplier_invoice_process.xml', - 'sequence_view.xml'], - 'demo_xml': [ 'account_demo.xml', - 'project/project_demo.xml', - 'project/analytic_account_demo.xml', - 'demo/account_minimal.xml', - 'account_unit_test.xml'], + 'update_xml': [ + 'security/account_security.xml', + 'security/ir.model.access.csv', + 'account_menuitem.xml', + 'account_wizard.xml', + 'account_view.xml', + 'account_end_fy.xml', + 'account_invoice_view.xml', + 'account_report.xml', + 'partner_view.xml', + 'data/account_invoice.xml', + 'data/account_data2.xml', + 'account_invoice_workflow.xml', + 'project/project_view.xml', + 'project/project_report.xml', + 'product_view.xml', + 'account_assert_test.xml', + 'process/statement_process.xml', + 'process/customer_invoice_process.xml', + 'process/supplier_invoice_process.xml', + 'sequence_view.xml' + ], + 'demo_xml': [ + 'account_demo.xml', + 'project/project_demo.xml', + 'project/analytic_account_demo.xml', + 'demo/account_minimal.xml', + 'account_unit_test.xml' + ], 'installable': True, 'active': False, - 'certificate': '0021841915058685', + 'certificate': '80331923549', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_analytic_analysis/__terp__.py b/addons/account_analytic_analysis/__terp__.py index 52d95bbfe4d..b45b828c2a8 100644 --- a/addons/account_analytic_analysis/__terp__.py +++ b/addons/account_analytic_analysis/__terp__.py @@ -23,21 +23,26 @@ { 'name': 'report_account_analytic', - 'version': '1.1', + 'version': '1.0', 'category': 'Generic Modules/Accounting', 'description': """Modify account analytic view to show important data for project manager of services companies. Add menu to show relevant information for each manager.""", - 'author': 'Camptocamp', - 'website': 'http://www.camptocamp.com/', - 'depends': ['account', 'hr_timesheet', 'hr_timesheet_invoice', 'project'], - 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'account_analytic_analysis_view.xml', - 'account_analytic_analysis_menu.xml'], + "version" : "1.1", + "author" : "Camptocamp", + "category" : "Generic Modules/Accounting", + "module": "", + "website": "http://www.camptocamp.com/", + "depends" : ["account","hr_timesheet","hr_timesheet_invoice","project"], + "init_xml" : [], + "update_xml" : [ + "security/ir.model.access.csv", + "account_analytic_analysis_view.xml", + "account_analytic_analysis_menu.xml", + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0018849810007757', + 'certificate': '42927202589', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_analytic_default/__terp__.py b/addons/account_analytic_default/__terp__.py index 88075ef8ba0..ae3e599119d 100644 --- a/addons/account_analytic_default/__terp__.py +++ b/addons/account_analytic_default/__terp__.py @@ -41,6 +41,6 @@ Allows to automatically select analytic accounts based on criterions: 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0012267336671725', + 'certificate': '74229833581', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_analytic_plans/__terp__.py b/addons/account_analytic_plans/__terp__.py index 8b082c0477a..722bf2727d3 100644 --- a/addons/account_analytic_plans/__terp__.py +++ b/addons/account_analytic_plans/__terp__.py @@ -57,13 +57,15 @@ for one account entry. 'website': 'http://www.openerp.com', 'depends': ['account', 'account_analytic_default'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'model_wizard.xml', - 'account_analytic_plans_view.xml', - 'account_analytic_plans_report.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'model_wizard.xml', + 'account_analytic_plans_view.xml', + 'account_analytic_plans_report.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0018550331377437', + 'certificate': '36417675373', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_balance/__terp__.py b/addons/account_balance/__terp__.py index 968047324f0..05de61e62ae 100644 --- a/addons/account_balance/__terp__.py +++ b/addons/account_balance/__terp__.py @@ -47,6 +47,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '009275148897645', + 'certificate': '81928745309', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_budget/__terp__.py b/addons/account_budget/__terp__.py index 979e188cf58..bcb1ab7ffd6 100644 --- a/addons/account_budget/__terp__.py +++ b/addons/account_budget/__terp__.py @@ -48,14 +48,16 @@ Three reports are available: 'website': 'http://www.openerp.com', 'depends': ['account'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'account_budget_wizard.xml', - 'crossovered_budget_view.xml', - 'crossovered_budget_report.xml', - 'crossovered_budget_workflow.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'account_budget_wizard.xml', + 'crossovered_budget_view.xml', + 'crossovered_budget_report.xml', + 'crossovered_budget_workflow.xml' + ], 'demo_xml': ['crossovered_budget_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0020645028723437', + 'certificate': '43819694157', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_chart/__terp__.py b/addons/account_chart/__terp__.py index 37104986f0f..bb3aee9760c 100644 --- a/addons/account_chart/__terp__.py +++ b/addons/account_chart/__terp__.py @@ -33,6 +33,6 @@ 'update_xml': [], 'demo_xml': [], 'installable': True, - 'certificate': '0014960165741629', + 'certificate': '73332443901', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_date_check/__terp__.py b/addons/account_date_check/__terp__.py index 65c047ed913..9f38a0c5305 100644 --- a/addons/account_date_check/__terp__.py +++ b/addons/account_date_check/__terp__.py @@ -42,6 +42,6 @@ period !" 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0010472116996909', + 'certificate': '66174843389', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_followup/__terp__.py b/addons/account_followup/__terp__.py index 3f80342abf0..5c58289f215 100644 --- a/addons/account_followup/__terp__.py +++ b/addons/account_followup/__terp__.py @@ -42,13 +42,15 @@ 'website': 'http://www.openerp.com', 'depends': ['account'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'wizard/wizard_view.xml', - 'followup_view.xml', - 'followup_report_view.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'wizard/wizard_view.xml', + 'followup_view.xml', + 'followup_report_view.xml' + ], 'demo_xml': ['followup_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0015558742212861', + 'certificate': '72481076453', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_invoice_layout/__terp__.py b/addons/account_invoice_layout/__terp__.py index b78eac44ccc..05389645833 100644 --- a/addons/account_invoice_layout/__terp__.py +++ b/addons/account_invoice_layout/__terp__.py @@ -40,12 +40,14 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'account'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'account_invoice_layout_view.xml', - 'account_invoice_layout_report.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'account_invoice_layout_view.xml', + 'account_invoice_layout_report.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0025731486677245', + 'certificate': '57235078173', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_payment/__terp__.py b/addons/account_payment/__terp__.py index 8cc543031fc..348b9b1ce08 100644 --- a/addons/account_payment/__terp__.py +++ b/addons/account_payment/__terp__.py @@ -22,10 +22,13 @@ { - 'name': 'Payment Management', - 'version': '1.1', - 'category': 'Generic Modules/Payment', - 'description': """ + "name": "Payment Management", + "version": "1.1", + "author": "Tiny", + "category": "Generic Modules/Payment", + "depends": ["account"], + "init_xml": [], + "description": """ This module provide : * a more efficient way to manage invoice payment. * a basic mechanism to easily plug various automated payment. @@ -33,17 +36,19 @@ 'author': 'Tiny', 'depends': ['account'], 'init_xml': [], - 'update_xml': [ 'security/account_payment_security.xml', - 'security/ir.model.access.csv', - 'payment_wizard.xml', - 'payment_view.xml', - 'payment_workflow.xml', - 'payment_sequence.xml', - 'account_invoice_view.xml', - 'payment_report.xml'], + 'update_xml': [ + 'security/account_payment_security.xml', + 'security/ir.model.access.csv', + 'payment_wizard.xml', + 'payment_view.xml', + 'payment_workflow.xml', + 'payment_sequence.xml', + 'account_invoice_view.xml', + 'payment_report.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0028723518223901', + 'certificate': '61703998541', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_report/__terp__.py b/addons/account_report/__terp__.py index ab9a04435b7..1d1ac5ca605 100644 --- a/addons/account_report/__terp__.py +++ b/addons/account_report/__terp__.py @@ -33,13 +33,15 @@ 'website': 'http://www.openerp.com', 'depends': ['account'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'account_view.xml', - 'account_report.xml', - 'account_wizard.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'account_view.xml', + 'account_report.xml', + 'account_wizard.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '009873710157725', + 'certificate': '50976406925', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_reporting/__terp__.py b/addons/account_reporting/__terp__.py index 5509dd645e6..4f98660da09 100644 --- a/addons/account_reporting/__terp__.py +++ b/addons/account_reporting/__terp__.py @@ -30,13 +30,15 @@ 'author': 'Tiny', 'depends': ['account'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'account_view.xml', - 'account_report.xml', - 'account_data.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'account_view.xml', + 'account_report.xml', + 'account_data.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0010472149969149', + 'certificate': '72305016797', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_tax_include/__terp__.py b/addons/account_tax_include/__terp__.py index 4b174647dff..9e8c138cd41 100644 --- a/addons/account_tax_include/__terp__.py +++ b/addons/account_tax_include/__terp__.py @@ -38,6 +38,6 @@ This module implement the modification on the invoice form. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0024534751356253', + 'certificate': '70514190381', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_voucher/__terp__.py b/addons/account_voucher/__terp__.py index 2ca77746d34..20c6e7c885a 100755 --- a/addons/account_voucher/__terp__.py +++ b/addons/account_voucher/__terp__.py @@ -39,14 +39,16 @@ Basic Accounting, plus new things that are available: 'website': 'http://www.openerp.com', 'depends': ['base', 'account'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'account_voucher_sequence.xml', - 'account_view.xml', - 'account_report.xml', - 'voucher_view.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'account_voucher_sequence.xml', + 'account_view.xml', + 'account_report.xml', + 'voucher_view.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0013165089564733', + 'certificate': '37580727101', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/analytic_journal_billing_rate/__terp__.py b/addons/analytic_journal_billing_rate/__terp__.py index 52209779563..882ef832758 100644 --- a/addons/analytic_journal_billing_rate/__terp__.py +++ b/addons/analytic_journal_billing_rate/__terp__.py @@ -40,6 +40,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0012865885319477', + 'certificate': '30271787965', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/analytic_user_function/__terp__.py b/addons/analytic_user_function/__terp__.py index fa1d44a3555..ae5231cb84e 100644 --- a/addons/analytic_user_function/__terp__.py +++ b/addons/analytic_user_function/__terp__.py @@ -40,6 +40,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0022440249660029', + 'certificate': '82277138269', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/auction/__terp__.py b/addons/auction/__terp__.py index f99092ae1fa..e2e7cd53e11 100644 --- a/addons/auction/__terp__.py +++ b/addons/auction/__terp__.py @@ -33,13 +33,15 @@ 'author': 'Tiny', 'depends': ['base', 'account', 'hr_attendance'], 'init_xml': ['auction_sequence.xml'], - 'update_xml': [ 'security/ir.model.access.csv', - 'auction_view.xml', - 'auction_report.xml', - 'auction_wizard.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'auction_view.xml', + 'auction_report.xml', + 'auction_wizard.xml' + ], 'demo_xml': ['auction_demo.xml'], 'installable': True, 'active': False, - 'certificate': '008676977189565', + 'certificate': '39333102717', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/audittrail/__terp__.py b/addons/audittrail/__terp__.py index 63c0ca8d957..ccd86944270 100644 --- a/addons/audittrail/__terp__.py +++ b/addons/audittrail/__terp__.py @@ -31,12 +31,14 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'account', 'purchase', 'mrp'], 'init_xml': [], - 'update_xml': [ 'audittrail_view.xml', - 'security/ir.model.access.csv', - 'security/audittrail_security.xml'], + 'update_xml': [ + 'audittrail_view.xml', + 'security/ir.model.access.csv', + 'security/audittrail_security.xml' + ], 'demo_xml': ['audittrail_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0010173008267165', + 'certificate': '62572348749', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_contact/__terp__.py b/addons/base_contact/__terp__.py index 97a8c68c55d..f50bfdef95a 100644 --- a/addons/base_contact/__terp__.py +++ b/addons/base_contact/__terp__.py @@ -43,12 +43,14 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'process'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'base_contact_view.xml', - 'process/base_contact_process.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'base_contact_view.xml', + 'process/base_contact_process.xml' + ], 'demo_xml': ['base_contact_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0027227757067813', + 'certificate': '31287885469', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_iban/__terp__.py b/addons/base_iban/__terp__.py index 8969e7de62a..d677b401dba 100644 --- a/addons/base_iban/__terp__.py +++ b/addons/base_iban/__terp__.py @@ -35,6 +35,6 @@ This module install the base for IBAN bank accounts. 'update_xml': ['base_iban_view.xml'], 'installable': True, 'active': False, - 'certificate': '0016157146365533', + 'certificate': '50014379549', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_merge/__terp__.py b/addons/base_module_merge/__terp__.py index 7950cce66a3..6d7b4d97fe1 100644 --- a/addons/base_module_merge/__terp__.py +++ b/addons/base_module_merge/__terp__.py @@ -41,6 +41,6 @@ 'update_xml': ['base_module_merge_wizard.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '009275389048693', + 'certificate': '35756279709', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_publish/__terp__.py b/addons/base_module_publish/__terp__.py index 257663338ed..af3afdfad0b 100644 --- a/addons/base_module_publish/__terp__.py +++ b/addons/base_module_publish/__terp__.py @@ -43,6 +43,6 @@ to call this button when you want to release a new version of your module. 'update_xml': ['base_module_publish_wizard.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '008976182484749', + 'certificate': '67939821245', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_record/__terp__.py b/addons/base_module_record/__terp__.py index 9bb1f76c7de..aaf16cc283f 100644 --- a/addons/base_module_record/__terp__.py +++ b/addons/base_module_record/__terp__.py @@ -51,6 +51,6 @@ How to use it: 'update_xml': ['security/ir.model.access.csv', 'base_module_record_wizard.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '0020046809368957', + 'certificate': '83134865813', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_report_creator/__terp__.py b/addons/base_report_creator/__terp__.py index c9746a4cb50..d95ebf3ef09 100644 --- a/addons/base_report_creator/__terp__.py +++ b/addons/base_report_creator/__terp__.py @@ -36,12 +36,14 @@ the "Dashboard" menu. 'website': '', 'depends': ['base', 'board'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'base_report_creator_wizard.xml', - 'base_report_creator_view.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'base_report_creator_wizard.xml', + 'base_report_creator_view.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0027826168589381', + 'certificate': '31285794149', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_report_designer/__terp__.py b/addons/base_report_designer/__terp__.py index 9606d7a17ca..38c9eb12b42 100644 --- a/addons/base_report_designer/__terp__.py +++ b/addons/base_report_designer/__terp__.py @@ -37,6 +37,6 @@ OpenOffice. 'demo_xml': ['base_report_data.xml'], 'installable': True, 'active': False, - 'certificate': '0018850014946253', + 'certificate': '56379010493', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_setup/__terp__.py b/addons/base_setup/__terp__.py index 33ecef974ea..d4499f2e093 100644 --- a/addons/base_setup/__terp__.py +++ b/addons/base_setup/__terp__.py @@ -46,6 +46,6 @@ 'demo_xml': ['base_setup_demo.xml'], 'installable': True, 'active': True, - 'certificate': '0021243634084373', + 'certificate': '86711085869', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_vat/__terp__.py b/addons/base_vat/__terp__.py index 7a95130606d..a4e15b75188 100644 --- a/addons/base_vat/__terp__.py +++ b/addons/base_vat/__terp__.py @@ -31,6 +31,6 @@ 'update_xml': ['base_vat_data.xml'], 'installable': True, 'active': False, - 'certificate': '0014361902367773', + 'certificate': '84849360989', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board/__terp__.py b/addons/board/__terp__.py index 1f285501513..fe03a113ea3 100644 --- a/addons/board/__terp__.py +++ b/addons/board/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '008676896805277', + 'certificate': '76912305725', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_account/__terp__.py b/addons/board_account/__terp__.py index b468abf2748..e44cc0b45c5 100644 --- a/addons/board_account/__terp__.py +++ b/addons/board_account/__terp__.py @@ -35,17 +35,19 @@ * Graph of aged incomes """, 'author': 'Tiny', - 'depends': [ 'account', - 'hr_timesheet_invoice', - 'board', - 'report_account', - 'report_analytic', - 'report_analytic_line', - 'account_report'], + 'depends': [ + 'account', + 'hr_timesheet_invoice', + 'board', + 'report_account', + 'report_analytic', + 'report_analytic_line', + 'account_report' + ], 'update_xml': ['board_account_view.xml'], 'demo_xml': ['board_account_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0014361759782429', + 'certificate': '76016921229', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_association/__terp__.py b/addons/board_association/__terp__.py index c7989d3dbcc..58557ed5a97 100644 --- a/addons/board_association/__terp__.py +++ b/addons/board_association/__terp__.py @@ -34,6 +34,6 @@ This module implements a dashboard for associations. 'demo_xml': ['board_association_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0023338115437757', + 'certificate': '79647781773', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_auction/__terp__.py b/addons/board_auction/__terp__.py index 4c47ec8b4ac..e7e49542632 100644 --- a/addons/board_auction/__terp__.py +++ b/addons/board_auction/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': ['board_auction_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0027825909145421', + 'certificate': '49187078189', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_crm_configuration/__terp__.py b/addons/board_crm_configuration/__terp__.py index 845595adcb4..eb6e0a435d1 100644 --- a/addons/board_crm_configuration/__terp__.py +++ b/addons/board_crm_configuration/__terp__.py @@ -40,6 +40,6 @@ This module implements a dashboard for CRM that includes: 'demo_xml': ['board_crm_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0023637319471165', + 'certificate': '71599098909', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_document/__terp__.py b/addons/board_document/__terp__.py index ff0e2aaf886..17e44ae48d7 100644 --- a/addons/board_document/__terp__.py +++ b/addons/board_document/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': ['board_document_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0019747483618397', + 'certificate': '44628458429', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_manufacturing/__terp__.py b/addons/board_manufacturing/__terp__.py index 99459bc575e..41e0d37bcdf 100644 --- a/addons/board_manufacturing/__terp__.py +++ b/addons/board_manufacturing/__terp__.py @@ -38,6 +38,6 @@ 'demo_xml': ['board_manufacturing_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0026629097091997', + 'certificate': '30407612797', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_project/__terp__.py b/addons/board_project/__terp__.py index 1edc75136de..d89aecab86e 100644 --- a/addons/board_project/__terp__.py +++ b/addons/board_project/__terp__.py @@ -34,17 +34,19 @@ This module implements a dashboard for project member that includes: * Graph of my work analysis """, 'author': 'Tiny', - 'depends': [ 'project', - 'report_timesheet', - 'board', - 'report_analytic_planning', - 'report_analytic_line', - 'report_task', - 'hr_timesheet_sheet'], + 'depends': [ + 'project', + 'report_timesheet', + 'board', + 'report_analytic_planning', + 'report_analytic_line', + 'report_task', + 'hr_timesheet_sheet' + ], 'update_xml': ['board_project_view.xml', 'board_project_manager_view.xml'], 'demo_xml': ['board_project_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0013464149376989', + 'certificate': '39350482013', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_sale/__terp__.py b/addons/board_sale/__terp__.py index f7100b32d08..0546c03b50f 100644 --- a/addons/board_sale/__terp__.py +++ b/addons/board_sale/__terp__.py @@ -39,6 +39,6 @@ This module implements a dashboard for salesman that includes: 'demo_xml': ['board_sale_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0011668930186397', + 'certificate': '46503501021', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm/__terp__.py b/addons/crm/__terp__.py index 2a7c357e41d..34927ec17a3 100644 --- a/addons/crm/__terp__.py +++ b/addons/crm/__terp__.py @@ -47,14 +47,16 @@ between mails and Open ERP.""", 'website': 'http://www.openerp.com', 'depends': ['base'], 'init_xml': ['crm_data.xml'], - 'update_xml': [ 'crm_view.xml', - 'crm_report.xml', - 'crm_wizard.xml', - 'security/crm_security.xml', - 'security/ir.model.access.csv'], + 'update_xml': [ + 'crm_view.xml', + 'crm_report.xml', + 'crm_wizard.xml', + 'security/crm_security.xml', + 'security/ir.model.access.csv' + ], 'demo_xml': ['crm_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0024235645566773', + 'certificate': '79056041421', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm_configuration/__terp__.py b/addons/crm_configuration/__terp__.py index fe44a662ca8..d5da400d409 100644 --- a/addons/crm_configuration/__terp__.py +++ b/addons/crm_configuration/__terp__.py @@ -38,21 +38,23 @@ meetings, eso. 'author': 'Tiny', 'website': 'http://www.openerp.com', 'depends': ['crm', 'report_crm', 'process'], - 'init_xml': [ 'crm_configuration_wizard.xml', - 'crm_config_view.xml', - 'crm_bugs_view.xml', - 'crm_jobs_view.xml', - 'crm_lead_view.xml', - 'crm_meeting_view.xml', - 'crm_opportunity_view.xml', - 'crm_fund_view.xml', - 'crm_claims_view.xml', - 'crm_phonecall_view.xml', - 'crm_report_view.xml'], + 'init_xml': [ + 'crm_configuration_wizard.xml', + 'crm_config_view.xml', + 'crm_bugs_view.xml', + 'crm_jobs_view.xml', + 'crm_lead_view.xml', + 'crm_meeting_view.xml', + 'crm_opportunity_view.xml', + 'crm_fund_view.xml', + 'crm_claims_view.xml', + 'crm_phonecall_view.xml', + 'crm_report_view.xml' + ], 'update_xml': ['security/ir.model.access.csv', 'process/crm_configuration_process.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0012865886253781', + 'certificate': '80531386589', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm_profiling/__terp__.py b/addons/crm_profiling/__terp__.py index 4b70fe07807..37629b2071e 100644 --- a/addons/crm_profiling/__terp__.py +++ b/addons/crm_profiling/__terp__.py @@ -45,6 +45,6 @@ 'demo_xml': ['crm_profiling_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0012566539614077', + 'certificate': '33984979005', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm_vertical/__terp__.py b/addons/crm_vertical/__terp__.py index 411d5ff8962..44e8113a165 100644 --- a/addons/crm_vertical/__terp__.py +++ b/addons/crm_vertical/__terp__.py @@ -33,6 +33,6 @@ 'update_xml': [], 'demo_xml': [], 'installable': True, - 'certificate': '0017050451838029', + 'certificate': '59915476845', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/delivery/__terp__.py b/addons/delivery/__terp__.py index b00a6c519bd..1aec98e6f6f 100644 --- a/addons/delivery/__terp__.py +++ b/addons/delivery/__terp__.py @@ -29,13 +29,15 @@ 'author': 'Tiny', 'depends': ['sale', 'purchase', 'stock'], 'init_xml': ['delivery_data.xml'], - 'update_xml': [ 'security/ir.model.access.csv', - 'delivery_view.xml', - 'delivery_wizard.xml', - 'partner_view.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'delivery_view.xml', + 'delivery_wizard.xml', + 'partner_view.xml' + ], 'demo_xml': ['delivery_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0023337859283261', + 'certificate': '33981912253', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/document/__terp__.py b/addons/document/__terp__.py index 8a38319859d..c6a772f5287 100644 --- a/addons/document/__terp__.py +++ b/addons/document/__terp__.py @@ -34,13 +34,15 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'process'], 'init_xml': ['document_data.xml', 'document_demo.xml'], - 'update_xml': [ 'document_view.xml', - 'document_data.xml', - 'security/document_security.xml', - 'security/ir.model.access.csv'], + 'update_xml': [ + 'document_view.xml', + 'document_data.xml', + 'security/document_security.xml', + 'security/ir.model.access.csv' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0025133162533277', + 'certificate': '70515416461', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/document_ics/__terp__.py b/addons/document_ics/__terp__.py index 4a0cc474e16..0a9a626d3cc 100644 --- a/addons/document_ics/__terp__.py +++ b/addons/document_ics/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': ['document_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0013463924422349', + 'certificate': '71242387229', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/event/__terp__.py b/addons/event/__terp__.py index f7bb8acfc1e..2cd05130736 100644 --- a/addons/event/__terp__.py +++ b/addons/event/__terp__.py @@ -41,14 +41,16 @@ 'author': 'Tiny', 'depends': ['crm', 'base_contact', 'account'], 'init_xml': ['event_data.xml'], - 'update_xml': [ 'event_wizard.xml', - 'event_view.xml', - 'event_sequence.xml', - 'security/event_security.xml', - 'security/ir.model.access.csv'], + 'update_xml': [ + 'event_wizard.xml', + 'event_view.xml', + 'event_sequence.xml', + 'security/event_security.xml', + 'security/ir.model.access.csv' + ], 'demo_xml': ['event_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0011369839138589', + 'certificate': '83059161581', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/event_project/__terp__.py b/addons/event_project/__terp__.py index 219a08875ab..741f9796509 100644 --- a/addons/event_project/__terp__.py +++ b/addons/event_project/__terp__.py @@ -36,6 +36,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0028125369597165', + 'certificate': '69726863885', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/google_map/__terp__.py b/addons/google_map/__terp__.py index 5b9057a64b8..6b6b15b0838 100644 --- a/addons/google_map/__terp__.py +++ b/addons/google_map/__terp__.py @@ -36,6 +36,6 @@ url widget.""", 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '009275388447293', + 'certificate': '29498930765', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr/__terp__.py b/addons/hr/__terp__.py index 2657fd0b716..2a82c2ba01f 100644 --- a/addons/hr/__terp__.py +++ b/addons/hr/__terp__.py @@ -22,10 +22,12 @@ { - 'name': 'Human Resources', - 'version': '1.1', - 'category': 'Generic Modules/Human Resources', - 'description': """ + "name" : "Human Resources", + "version" : "1.1", + "author" : "Tiny", + "category" : "Generic Modules/Human Resources", + "website" : "http://www.openerp.com", + "description": """ Module for human resource management. You can manage: * Employees and hierarchies * Work hours sheets @@ -37,15 +39,17 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'process'], 'init_xml': [], - 'update_xml': [ 'security/hr_security.xml', - 'security/ir.model.access.csv', - 'hr_view.xml', - 'hr_wizard.xml', - 'hr_department_view.xml', - 'process/hr_process.xml'], + 'update_xml': [ + 'security/hr_security.xml', + 'security/ir.model.access.csv', + 'hr_view.xml', + 'hr_wizard.xml', + 'hr_department_view.xml', + 'process/hr_process.xml' + ], 'demo_xml': ['hr_demo.xml', 'hr_department_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0021842042346741', + 'certificate': '86710558965', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/__terp__.py b/addons/hr_attendance/__terp__.py index dc196a15e66..6afa17c958c 100644 --- a/addons/hr_attendance/__terp__.py +++ b/addons/hr_attendance/__terp__.py @@ -28,14 +28,16 @@ 'description': """This module aims to manage employee's attendances.""", 'author': 'Tiny', 'depends': ['base', 'hr'], - 'update_xml': [ 'security/hr_security.xml', - 'hr_attendance_view.xml', - 'hr_attendance_wizard.xml', - 'hr_attendance_report.xml', - 'security/ir.model.access.csv'], + 'update_xml': [ + 'security/hr_security.xml', + 'hr_attendance_view.xml', + 'hr_attendance_wizard.xml', + 'hr_attendance_report.xml', + 'security/ir.model.access.csv' + ], 'demo_xml': ['hr_attendance_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0021542640344093', + 'certificate': '63495605613', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_contract/__terp__.py b/addons/hr_contract/__terp__.py index 1967f7304ac..a253d60109e 100644 --- a/addons/hr_contract/__terp__.py +++ b/addons/hr_contract/__terp__.py @@ -37,12 +37,14 @@ 'website': 'http://www.openerp.com', 'depends': ['hr'], 'init_xml': ['hr_contract_data.xml'], - 'update_xml': [ 'security/hr_contract_security.xml', - 'security/ir.model.access.csv', - 'hr_contract_view.xml'], + 'update_xml': [ + 'security/hr_contract_security.xml', + 'security/ir.model.access.csv', + 'hr_contract_view.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0011369849872221', + 'certificate': '46298028637', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_expense/__terp__.py b/addons/hr_expense/__terp__.py index dfe1eb54ec2..8c08af34e70 100644 --- a/addons/hr_expense/__terp__.py +++ b/addons/hr_expense/__terp__.py @@ -43,15 +43,17 @@ 'website': 'http://www.openerp.com', 'depends': ['hr', 'account', 'account_tax_include'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'hr_expense_sequence.xml', - 'hr_expense_workflow.xml', - 'hr_expense_view.xml', - 'hr_expense_report.xml', - 'process/hr_expense_process.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'hr_expense_sequence.xml', + 'hr_expense_workflow.xml', + 'hr_expense_view.xml', + 'hr_expense_report.xml', + 'process/hr_expense_process.xml' + ], 'demo_xml': ['hr_expense_demo.xml', 'hr.expense.expense.csv'], 'installable': True, 'active': False, - 'certificate': '0028424408828349', + 'certificate': '62479841789', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_holidays/__terp__.py b/addons/hr_holidays/__terp__.py index 6c433a7b078..948df531ceb 100644 --- a/addons/hr_holidays/__terp__.py +++ b/addons/hr_holidays/__terp__.py @@ -2,10 +2,12 @@ { - 'name': 'Human Resources: Holidays management', - 'version': '1.1', - 'category': 'Generic Modules/Human Resources', - 'description': """Human Ressources: Holidays tracking and workflow + "name" : "Human Resources: Holidays management", + "version" : "1.1", + "author" : "Tiny & Axelor", + "category" : "Generic Modules/Human Resources", + "website" : "http://www.openerp.com", + "description": """Human Ressources: Holidays tracking and workflow This module allows you to manage holidays and holidays requests. For each employee, you can also define a number of available holidays per holiday status. @@ -28,15 +30,17 @@ 'website': 'http://www.openerp.com', 'depends': ['hr', 'crm_configuration', 'process'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'hr_workflow.xml', - 'hr_view.xml', - 'hr_holidays_report.xml', - 'hr_holidays_wizard.xml', - 'process/hr_holidays_process.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'hr_workflow.xml', + 'hr_view.xml', + 'hr_holidays_report.xml', + 'hr_holidays_wizard.xml', + 'process/hr_holidays_process.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0020345896856477', + 'certificate': '86579209325', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_timesheet/__terp__.py b/addons/hr_timesheet/__terp__.py index 0f85e543310..c17deafa743 100644 --- a/addons/hr_timesheet/__terp__.py +++ b/addons/hr_timesheet/__terp__.py @@ -40,14 +40,16 @@ to set up a management by affair. 'website': 'http://www.openerp.com', 'depends': ['account', 'hr', 'base', 'hr_attendance', 'process'], 'init_xml': ['hr_timesheet_data.xml'], - 'update_xml': [ 'security/ir.model.access.csv', - 'hr_timesheet_view.xml', - 'hr_timesheet_report.xml', - 'hr_timesheet_wizard.xml', - 'process/hr_timesheet_process.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'hr_timesheet_view.xml', + 'hr_timesheet_report.xml', + 'hr_timesheet_wizard.xml', + 'process/hr_timesheet_process.xml' + ], 'demo_xml': ['hr_timesheet_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0022739527534493', + 'certificate': '71405533469', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_timesheet_invoice/__terp__.py b/addons/hr_timesheet_invoice/__terp__.py index e3b77502a76..899c466bdf7 100644 --- a/addons/hr_timesheet_invoice/__terp__.py +++ b/addons/hr_timesheet_invoice/__terp__.py @@ -33,13 +33,15 @@ reports, eso.""", 'website': 'http://www.openerp.com', 'depends': ['account', 'hr_timesheet'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'hr_timesheet_invoice_view.xml', - 'hr_timesheet_invoice_wizard.xml', - 'hr_timesheet_invoice_report.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'hr_timesheet_invoice_view.xml', + 'hr_timesheet_invoice_wizard.xml', + 'hr_timesheet_invoice_report.xml' + ], 'demo_xml': ['hr_timesheet_invoice_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0020346051941629', + 'certificate': '56091842381', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_timesheet_sheet/__terp__.py b/addons/hr_timesheet_sheet/__terp__.py index de80e66421a..006569b4c0e 100644 --- a/addons/hr_timesheet_sheet/__terp__.py +++ b/addons/hr_timesheet_sheet/__terp__.py @@ -48,13 +48,15 @@ The validation can be configured in te company: 'website': 'http://www.openerp.com', 'depends': ['hr_timesheet', 'hr_timesheet_invoice', 'process'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'hr_timesheet_sheet_view.xml', - 'hr_timesheet_workflow.xml', - 'process/hr_timesheet_sheet_process.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'hr_timesheet_sheet_view.xml', + 'hr_timesheet_workflow.xml', + 'process/hr_timesheet_sheet_process.xml' + ], 'demo_xml': ['hr_timesheet_sheet_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0011669036322245', + 'certificate': '73297700829', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/idea/__terp__.py b/addons/idea/__terp__.py index 294d8dcbe58..37b6d0c52ab 100644 --- a/addons/idea/__terp__.py +++ b/addons/idea/__terp__.py @@ -30,12 +30,14 @@ 'website': 'http://openerp.com', 'depends': ['base'], 'init_xml': [], - 'update_xml': [ 'idea_view.xml', - 'idea_workflow.xml', - 'security/idea_security.xml', - 'security/ir.model.access.csv'], + 'update_xml': [ + 'idea_view.xml', + 'idea_workflow.xml', + 'security/idea_security.xml', + 'security/ir.model.access.csv' + ], 'demo_xml': [], 'installable': True, - 'certificate': '0015857924651741', + 'certificate': '71515601309', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_be/__terp__.py b/addons/l10n_be/__terp__.py index 971135e6393..05c87181e45 100644 --- a/addons/l10n_be/__terp__.py +++ b/addons/l10n_be/__terp__.py @@ -40,14 +40,24 @@ """, 'author': 'Tiny', - 'depends': ['account', 'account_report', 'base_vat', 'base_iban', 'account_chart'], + 'depends': [ + 'account', + 'account_report', + 'base_vat', + 'base_iban', + 'account_chart' + ], 'init_xml': [], - 'update_xml': [ 'account_pcmn_belgium.xml', - 'l10n_be_wizard.xml', - 'l10n_be_sequence.xml', - 'fiscal_templates.xml'], - 'demo_xml': ['account.report.report.csv'], + 'update_xml': [ + 'account_pcmn_belgium.xml', + 'l10n_be_wizard.xml', + 'l10n_be_sequence.xml', + 'fiscal_templates.xml', + ], + 'demo_xml': [ + 'account.report.report.csv' + ], 'installable': True, - 'certificate': '0019747560288749', + 'certificate': '31977724637', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_chart_uk_minimal/__terp__.py b/addons/l10n_chart_uk_minimal/__terp__.py index 3add68dd4bf..3b714b16986 100644 --- a/addons/l10n_chart_uk_minimal/__terp__.py +++ b/addons/l10n_chart_uk_minimal/__terp__.py @@ -20,6 +20,44 @@ # ############################################################################## +# +# This module provides a minimal UK chart of accounts for building upon further +# Open ERP's default currency and accounts are remapped to this chart +# +# This module works for Open ERP 4.1.0 (and, assumed, onwards). +# This module does not work for Open ERP 4.0.2 and before. +# +# VAT is structured thus: +# - the user company is assumed to be non-VAT exempt (easy to modify, however) +# - categories OVATS (Standard), OVATR (Reduced), OVATZ (Zero) should be +# assigned to the customer taxes section of products (depending on the product) +# - categories IVATS (Standard), IVATR (Reduced), IVATZ (Zero) should be +# assigned to the supplier taxes section of products (depending on the product) +# - categories OVATX (eXempt), OVATO (Out of scope), or nothing at all should be +# assigned to default tax field of customers (depending on the customer) +# - customer categorization trumps product categorization (unchanged Tiny functionality) +# - on purchases, upon invoicing +# - the base amount (ex-VAT) appears in the appropriate input base category (S, R, Z) +# - the VAT amount appears in the appropriate input VAT category (S, R) +# - invoice lines can be traced in these VAT categories +# - refunds of invoices are deducted from the input category +# - on sales, upon invoicing +# - the base amount (ex-VAT) appears in the appropriate output base category (S, R, Z, X, O) +# - the VAT amount appears in the appropriate output VAT category (S, R) +# - invoice lines can be traced in these VAT categories +# - refunds of invoices are deducted from the output category +# +# This forms a basis for accrual tax accounting +# Cash tax accounting can be accommodated with further processing in Open ERP +# +# Status beta 0.92 - tested on Open ERP 4.1.0 +# Status beta 0.93 - tested on Open ERP 4.1.0 +# - trivial change to depend only on 'account' +# (seemed to be important for importing with no demo data) +# Status 1.0 - tested on Open ERP 4.1.0, 4.0.3 +# - COGS account type fixed +# + { 'name': 'United Kingdom - minimal', @@ -30,12 +68,14 @@ 'website': 'http://www.seathsolutions.com', 'depends': ['base', 'account', 'base_iban', 'base_vat', 'account_chart'], 'init_xml': [], - 'update_xml': [ 'account_types.xml', - 'account_chart.xml', - 'account_tax.xml', - 'l10n_uk_wizard.xml'], + 'update_xml': [ + 'account_types.xml', + 'account_chart.xml', + 'account_tax.xml', + 'l10n_uk_wizard.xml' + ], 'demo_xml': [], 'installable': True, - 'certificate': '0025133078445917', + 'certificate': '64392144797', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_fr/__terp__.py b/addons/l10n_fr/__terp__.py index 3151a7e2ffb..6d9bccc590d 100644 --- a/addons/l10n_fr/__terp__.py +++ b/addons/l10n_fr/__terp__.py @@ -25,33 +25,35 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## - - { - 'name': 'France - Plan Comptable G\xc3\xa9n\xc3\xa9ral', - 'version': '1.0', - 'category': 'Localisation/Account Charts', - 'description': """This is the module to manage the accounting chart for France in Open ERP. + "name" : "France - Plan Comptable Général", + "version" : "1.0", + "author" : "OpenERP", + "website": "http://www.openerp.com", + "category" : "Localisation/Account Charts", + "description": """This is the module to manage the accounting chart for France in Open ERP. Credits: Sistheo Zeekom CrysaLEAD """, - 'author': 'OpenERP', - 'website': 'http://www.openerp.com', - 'depends': ['base', 'account', 'account_chart', 'account_report', 'base_vat'], - 'init_xml': [], - 'update_xml': [ 'report.xml', - 'pcg.xml', - 'l10n_fr_pcg_taxes.xml', - 'tax.xml', - 'fiscal_templates_fr.xml', - 'l10n_fr_pcg_account_report.xml', - 'l10n_fr_pcg_report.xml', - 'l10n_fr_pcg_wizard.xml', - 'l10n_fr_pcg_view.xml', - 'security/ir.model.access.csv'], - 'demo_xml': [], - 'installable': True, - 'active': False, - 'certificate': '0012865552406941', + "depends" : ['base', 'account', 'account_chart', 'account_report', 'base_vat'], + "init_xml" : [ + ], + "update_xml" : [ + "report.xml", + "pcg.xml", + "l10n_fr_pcg_taxes.xml", + "tax.xml", + "fiscal_templates_fr.xml", + "l10n_fr_pcg_account_report.xml", + "l10n_fr_pcg_report.xml", + "l10n_fr_pcg_wizard.xml", + "l10n_fr_pcg_view.xml", + "security/ir.model.access.csv", + ], + "demo_xml" : [], + "certificate" : "435321693876313629", + "active": False, + "installable": True } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + diff --git a/addons/l10n_lu/__terp__.py b/addons/l10n_lu/__terp__.py index 69f29bdf6bc..62d39d81e67 100644 --- a/addons/l10n_lu/__terp__.py +++ b/addons/l10n_lu/__terp__.py @@ -35,13 +35,15 @@ This module installs: 'website': 'http://openerp.com', 'depends': ['account', 'account_report', 'base_vat', 'base_iban'], 'init_xml': [], - 'update_xml': [ 'account.tax.code.template.csv', - 'l10n_lu_data.xml', - 'account.tax.template.csv', - 'l10n_lu_wizard.xml', - 'l10n_lu_report.xml'], + 'update_xml': [ + 'account.tax.code.template.csv', + 'l10n_lu_data.xml', + 'account.tax.template.csv', + 'l10n_lu_wizard.xml', + 'l10n_lu_report.xml' + ], 'demo_xml': ['account.report.report.csv'], 'installable': True, - 'certificate': '0011967958241629', + 'certificate': '78164766621', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/membership/__terp__.py b/addons/membership/__terp__.py index c346da6b35e..54dce054fad 100644 --- a/addons/membership/__terp__.py +++ b/addons/membership/__terp__.py @@ -40,13 +40,15 @@ invoice and send propositions for membership renewal. 'author': 'Tiny', 'depends': ['base', 'product', 'account', 'process'], 'init_xml': ['membership_data.xml'], - 'update_xml': [ 'security/ir.model.access.csv', - 'membership_view.xml', - 'membership_wizard.xml', - 'process/membership_process.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'membership_view.xml', + 'membership_wizard.xml', + 'process/membership_process.xml' + ], 'demo_xml': ['membership_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0025731724123933', + 'certificate': '42907796381', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp/__terp__.py b/addons/mrp/__terp__.py index 8469f1d9cc2..47d2a6a2836 100644 --- a/addons/mrp/__terp__.py +++ b/addons/mrp/__terp__.py @@ -22,10 +22,13 @@ { - 'name': 'Manufacturing Resource Planning', - 'version': '1.1', - 'category': 'Generic Modules/Production', - 'description': """ + "name" : "Manufacturing Resource Planning", + "version" : "1.1", + "author" : "Tiny", + "website" : "http://www.openerp.com", + "category" : "Generic Modules/Production", + "depends" : ["stock", "hr", "purchase", "product","process"], + "description": """ This is the base module to manage the manufacturing process in Open ERP. Features: @@ -56,20 +59,22 @@ 'website': 'http://www.openerp.com', 'depends': ['stock', 'hr', 'purchase', 'product', 'process'], 'init_xml': [], - 'update_xml': [ 'security/mrp_security.xml', - 'security/ir.model.access.csv', - 'mrp_workflow.xml', - 'mrp_data.xml', - 'mrp_view.xml', - 'mrp_wizard.xml', - 'mrp_report.xml', - 'company_view.xml', - 'process/stockable_product_process.xml', - 'process/service_product_process.xml', - 'process/procurement_process.xml'], + 'update_xml': [ + 'security/mrp_security.xml', + 'security/ir.model.access.csv', + 'mrp_workflow.xml', + 'mrp_data.xml', + 'mrp_view.xml', + 'mrp_wizard.xml', + 'mrp_report.xml', + 'company_view.xml', + 'process/stockable_product_process.xml', + 'process/service_product_process.xml', + 'process/procurement_process.xml' + ], 'demo_xml': ['mrp_demo.xml', 'mrp_order_point.xml'], 'installable': True, 'active': False, - 'certificate': '009574614938141', + 'certificate': '32052481373', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_jit/__terp__.py b/addons/mrp_jit/__terp__.py index 75954145503..399419d0d82 100644 --- a/addons/mrp_jit/__terp__.py +++ b/addons/mrp_jit/__terp__.py @@ -42,6 +42,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0016456348340989', + 'certificate': '86634760061', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_operations/__terp__.py b/addons/mrp_operations/__terp__.py index 00c430c8036..ed7f848fe5f 100644 --- a/addons/mrp_operations/__terp__.py +++ b/addons/mrp_operations/__terp__.py @@ -54,14 +54,16 @@ 'website': 'http://www.openerp.com', 'depends': ['stock', 'hr', 'purchase', 'product', 'mrp'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'mrp_operations_workflow.xml', - 'mrp_operations_view.xml', - 'mrp_operations_report.xml', - 'process/mrp_operation_process.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'mrp_operations_workflow.xml', + 'mrp_operations_view.xml', + 'mrp_operations_report.xml', + 'process/mrp_operation_process.xml' + ], 'demo_xml': ['mrp_operation_data.xml'], 'installable': True, 'active': False, - 'certificate': '0016755442036509', + 'certificate': '56233813133', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_repair/__terp__.py b/addons/mrp_repair/__terp__.py index 5202e722bbe..380e02a6c67 100644 --- a/addons/mrp_repair/__terp__.py +++ b/addons/mrp_repair/__terp__.py @@ -36,15 +36,17 @@ """, 'author': 'Tiny', 'depends': ['base', 'sale', 'account'], - 'update_xml': [ 'security/ir.model.access.csv', - 'mrp_repair_sequence.xml', - 'mrp_repair_wizard.xml', - 'mrp_repair_view.xml', - 'mrp_repair_workflow.xml', - 'mrp_repair_report.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'mrp_repair_sequence.xml', + 'mrp_repair_wizard.xml', + 'mrp_repair_view.xml', + 'mrp_repair_workflow.xml', + 'mrp_repair_report.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0019747418778941', + 'certificate': '60814381277', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_subproduct/__terp__.py b/addons/mrp_subproduct/__terp__.py index c6f0590de28..80181422a55 100644 --- a/addons/mrp_subproduct/__terp__.py +++ b/addons/mrp_subproduct/__terp__.py @@ -41,6 +41,6 @@ With this module: 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0010472212219869', + 'certificate': '50060616733', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/point_of_sale/__terp__.py b/addons/point_of_sale/__terp__.py index 6377d9d59ef..46e6f519b08 100644 --- a/addons/point_of_sale/__terp__.py +++ b/addons/point_of_sale/__terp__.py @@ -38,16 +38,18 @@ Main features : 'author': 'Tiny', 'depends': ['sale', 'purchase', 'account', 'account_tax_include'], 'init_xml': [], - 'update_xml': [ 'security/point_of_sale_security.xml', - 'security/ir.model.access.csv', - 'pos_report.xml', - 'pos_wizard.xml', - 'pos_view.xml', - 'pos_sequence.xml', - 'pos_data.xml', - 'pos_workflow.xml'], + 'update_xml': [ + 'security/point_of_sale_security.xml', + 'security/ir.model.access.csv', + 'pos_report.xml', + 'pos_wizard.xml', + 'pos_view.xml', + 'pos_sequence.xml', + 'pos_data.xml', + 'pos_workflow.xml' + ], 'demo_xml': [], 'installable': True, - 'certificate': '0014361891603101', + 'certificate': '48272150909', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/process/__terp__.py b/addons/process/__terp__.py index ac203b938ce..b76360ee420 100644 --- a/addons/process/__terp__.py +++ b/addons/process/__terp__.py @@ -36,6 +36,6 @@ This module allows you to manage your process for the end-users. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0021841841982765', + 'certificate': '55447636669', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/product/__terp__.py b/addons/product/__terp__.py index 23aa914b798..568471df253 100644 --- a/addons/product/__terp__.py +++ b/addons/product/__terp__.py @@ -22,10 +22,14 @@ { - 'name': 'Products & Pricelists', - 'version': '1.1', - 'category': 'Generic Modules/Inventory Control', - 'description': """ + "name" : "Products & Pricelists", + "version" : "1.1", + "author" : "Tiny", + "category" : "Generic Modules/Inventory Control", + "depends" : ["base", "process"], + "init_xml" : [], + "demo_xml" : ["product_demo.xml"], + "description": """ This is the base module for managing products and pricelists in Open ERP. Products support variants, different pricing methods, suppliers @@ -46,18 +50,20 @@ 'author': 'Tiny', 'depends': ['base', 'process'], 'init_xml': [], - 'update_xml': [ 'security/product_security.xml', - 'security/ir.model.access.csv', - 'product_data.xml', - 'product_report.xml', - 'product_view.xml', - 'pricelist_view.xml', - 'partner_view.xml', - 'product_wizard.xml', - 'process/product_process.xml'], + 'update_xml': [ + 'security/product_security.xml', + 'security/ir.model.access.csv', + 'product_data.xml', + 'product_report.xml', + 'product_view.xml', + 'pricelist_view.xml', + 'partner_view.xml', + 'product_wizard.xml', + 'process/product_process.xml' + ], 'demo_xml': ['product_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0025731486276829', + 'certificate': '68861431437', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/product_margin/__terp__.py b/addons/product_margin/__terp__.py index 7c983946613..0096c61abe6 100644 --- a/addons/product_margin/__terp__.py +++ b/addons/product_margin/__terp__.py @@ -36,6 +36,6 @@ the report has several options to help you get the data you need. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0021542640008861', + 'certificate': '64392591773', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_accounting/__terp__.py b/addons/profile_accounting/__terp__.py index de397d2a63e..73f6f984624 100644 --- a/addons/profile_accounting/__terp__.py +++ b/addons/profile_accounting/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '008676896400205', + 'certificate': '38455352045', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_association/__terp__.py b/addons/profile_association/__terp__.py index 2c357e73080..7a7efca044b 100644 --- a/addons/profile_association/__terp__.py +++ b/addons/profile_association/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0022739451927261', + 'certificate': '78696047261', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_auction/__terp__.py b/addons/profile_auction/__terp__.py index 44b08959c09..997087a1049 100644 --- a/addons/profile_auction/__terp__.py +++ b/addons/profile_auction/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0022739451927261', + 'certificate': '65280135565', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_crm/__terp__.py b/addons/profile_crm/__terp__.py index 3c24f777121..bbee7356313 100644 --- a/addons/profile_crm/__terp__.py +++ b/addons/profile_crm/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0017653158886645', + 'certificate': '73301264221', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_manufacturing/__terp__.py b/addons/profile_manufacturing/__terp__.py index 906be82f08c..167343d05de 100644 --- a/addons/profile_manufacturing/__terp__.py +++ b/addons/profile_manufacturing/__terp__.py @@ -27,16 +27,11 @@ 'category': 'Profile', 'description': """Profile for manufacturing industries""", 'author': 'Tiny', - 'depends': [ 'mrp', - 'sale', - 'delivery', - 'board_manufacturing', - 'product_margin', - 'sale_delivery_report'], + 'depends': ['mrp', 'sale', 'delivery', 'board_manufacturing', 'product_margin', 'sale_delivery_report'], 'update_xml': ['security/ir.model.access.csv', 'profile_manufacturing.xml'], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0013464299079029', + 'certificate': '27737506213', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_service/__terp__.py b/addons/profile_service/__terp__.py index 7c86f2d7aef..828722a2389 100644 --- a/addons/profile_service/__terp__.py +++ b/addons/profile_service/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0023038656317629', + 'certificate': '30405502077', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project/__terp__.py b/addons/project/__terp__.py index 78a85dc082c..01059dc193e 100644 --- a/addons/project/__terp__.py +++ b/addons/project/__terp__.py @@ -22,26 +22,29 @@ { - 'name': 'Project Management', - 'version': '1.1', - 'category': 'Generic Modules/Projects & Services', - 'description': """Project management module that track multi-level projects, tasks, + "name" : "Project Management", + "version": "1.1", + "author" : "Tiny", + "website" : "http://www.openerp.com", + "category" : "Generic Modules/Projects & Services", + "depends" : ["product", "account", "hr", "process"], + "description": """Project management module that track multi-level projects, tasks, works done on tasks, eso. It is able to render planning, order tasks, eso. """, - 'author': 'Tiny', - 'website': 'http://www.openerp.com', - 'depends': ['product', 'account', 'hr', 'process'], - 'init_xml': [], - 'update_xml': [ 'security/project_security.xml', - 'security/ir.model.access.csv', - 'project_data.xml', - 'project_wizard.xml', - 'project_view.xml', - 'project_report.xml', - 'process/task_process.xml'], + "init_xml" : [], + "demo_xml" : ["project_demo.xml"], + "update_xml": [ + "security/project_security.xml", + "security/ir.model.access.csv", + "project_data.xml", + "project_wizard.xml", + "project_view.xml", + "project_report.xml", + "process/task_process.xml" + ], 'demo_xml': ['project_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0020645028723437', + 'certificate': '75116868317', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_gtd/__terp__.py b/addons/project_gtd/__terp__.py index e628e500817..272c7e69a12 100644 --- a/addons/project_gtd/__terp__.py +++ b/addons/project_gtd/__terp__.py @@ -41,12 +41,14 @@ performing those tasks. 'author': 'Tiny', 'depends': ['project'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'project_gtd_view.xml', - 'project_gtd_wizard.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'project_gtd_view.xml', + 'project_gtd_wizard.xml' + ], 'demo_xml': ['project_gtd_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0022739115882013', + 'certificate': '43525236301', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_mrp/__terp__.py b/addons/project_mrp/__terp__.py index b7990b7d9ff..f1da23862e1 100644 --- a/addons/project_mrp/__terp__.py +++ b/addons/project_mrp/__terp__.py @@ -40,6 +40,6 @@ created by sales orders. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0025132707027485', + 'certificate': '31976495453', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_retro_planning/__terp__.py b/addons/project_retro_planning/__terp__.py index 032ebce2879..14cb39754e8 100644 --- a/addons/project_retro_planning/__terp__.py +++ b/addons/project_retro_planning/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0014660963339373', + 'certificate': '57235475485', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_timesheet/__terp__.py b/addons/project_timesheet/__terp__.py index d82bcbf86c3..d764fc80684 100644 --- a/addons/project_timesheet/__terp__.py +++ b/addons/project_timesheet/__terp__.py @@ -38,6 +38,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0017952200286749', + 'certificate': '75123647453', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/purchase/__terp__.py b/addons/purchase/__terp__.py index 90624337a13..f66c1d75dbe 100644 --- a/addons/purchase/__terp__.py +++ b/addons/purchase/__terp__.py @@ -31,20 +31,22 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'account', 'stock', 'process'], 'init_xml': [], - 'update_xml': [ 'security/purchase_security.xml', - 'security/ir.model.access.csv', - 'purchase_workflow.xml', - 'purchase_sequence.xml', - 'purchase_data.xml', - 'purchase_view.xml', - 'purchase_report.xml', - 'purchase_wizard.xml', - 'stock_view.xml', - 'partner_view.xml', - 'process/purchase_process.xml'], + 'update_xml': [ + 'security/purchase_security.xml', + 'security/ir.model.access.csv', + 'purchase_workflow.xml', + 'purchase_sequence.xml', + 'purchase_data.xml', + 'purchase_view.xml', + 'purchase_report.xml', + 'purchase_wizard.xml', + 'stock_view.xml', + 'partner_view.xml', + 'process/purchase_process.xml' + ], 'demo_xml': ['purchase_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0014361760229405', + 'certificate': '57234283549', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/purchase_analytic_plans/__terp__.py b/addons/purchase_analytic_plans/__terp__.py index dd5282287fb..c639aa1eb66 100644 --- a/addons/purchase_analytic_plans/__terp__.py +++ b/addons/purchase_analytic_plans/__terp__.py @@ -36,6 +36,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0013463950193309', + 'certificate': '62176518909', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_account/__terp__.py b/addons/report_account/__terp__.py index 62c19c659a5..2b568ce08b0 100644 --- a/addons/report_account/__terp__.py +++ b/addons/report_account/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0023038913848749', + 'certificate': '61754222813', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_analytic/__terp__.py b/addons/report_analytic/__terp__.py index 3e400773397..0d072fcf1ef 100644 --- a/addons/report_analytic/__terp__.py +++ b/addons/report_analytic/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0015259537848101', + 'certificate': '59950675429', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_analytic_line/__terp__.py b/addons/report_analytic_line/__terp__.py index e6b7051e1da..905eca096eb 100644 --- a/addons/report_analytic_line/__terp__.py +++ b/addons/report_analytic_line/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0025731773908989', + 'certificate': '75179053853', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_analytic_planning/__terp__.py b/addons/report_analytic_planning/__terp__.py index d9a870cd17d..73a71fc0bca 100644 --- a/addons/report_analytic_planning/__terp__.py +++ b/addons/report_analytic_planning/__terp__.py @@ -30,12 +30,14 @@ 'website': 'http://www.openerp.com', 'depends': ['account', 'hr_timesheet_invoice', 'project', 'report_analytic_line'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'report_analytic_planning_view.xml', - 'report_analytic_planning_report.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'report_analytic_planning_view.xml', + 'report_analytic_planning_report.xml' + ], 'demo_xml': ['report_account_analytic.planning.csv'], 'installable': True, 'active': False, - 'certificate': '0019149225704477', + 'certificate': '34901836973', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_crm/__terp__.py b/addons/report_crm/__terp__.py index c42b2c97b6a..35ea350abf8 100644 --- a/addons/report_crm/__terp__.py +++ b/addons/report_crm/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '008976199060109', + 'certificate': '30422968285', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_document/__terp__.py b/addons/report_document/__terp__.py index 8c9e9374df2..d6ae3bccef3 100644 --- a/addons/report_document/__terp__.py +++ b/addons/report_document/__terp__.py @@ -37,6 +37,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0016456365242269', + 'certificate': '68012774557', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_intrastat/__terp__.py b/addons/report_intrastat/__terp__.py index 08f8bb1950d..f23feae9786 100644 --- a/addons/report_intrastat/__terp__.py +++ b/addons/report_intrastat/__terp__.py @@ -30,12 +30,14 @@ 'website': 'http://www.openerp.com', 'depends': ['base', 'product', 'stock', 'sale', 'purchase'], 'init_xml': ['report_intrastat_data.xml'], - 'update_xml': [ 'security/ir.model.access.csv', - 'report_intrastat_view.xml', - 'intrastat_report.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'report_intrastat_view.xml', + 'intrastat_report.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0027227801344045', + 'certificate': '56982189085', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_mrp/__terp__.py b/addons/report_mrp/__terp__.py index d5958a90d6e..4e75a21e41d 100644 --- a/addons/report_mrp/__terp__.py +++ b/addons/report_mrp/__terp__.py @@ -34,6 +34,6 @@ 'update_xml': ['security/ir.model.access.csv', 'report_mrp_view.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '0011070646110413', + 'certificate': '71582896029', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_project/__terp__.py b/addons/report_project/__terp__.py index b4bae62699f..c88f64c45e2 100644 --- a/addons/report_project/__terp__.py +++ b/addons/report_project/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0016755572187229', + 'certificate': '86804423149', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_purchase/__terp__.py b/addons/report_purchase/__terp__.py index e5f1a6e6b07..5cc72c7de17 100644 --- a/addons/report_purchase/__terp__.py +++ b/addons/report_purchase/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0019149228485661', + 'certificate': '73370750365', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_sale/__terp__.py b/addons/report_sale/__terp__.py index 45a28f2651b..6f8f4408c49 100644 --- a/addons/report_sale/__terp__.py +++ b/addons/report_sale/__terp__.py @@ -40,12 +40,14 @@ 'website': 'http://www.openerp.com', 'depends': ['sale'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'report_sale_view.xml', - 'report_sale_graph.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'report_sale_view.xml', + 'report_sale_graph.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0027527007452477', + 'certificate': '59949739573', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_task/__terp__.py b/addons/report_task/__terp__.py index 9f091656c7a..4784e0d6c87 100644 --- a/addons/report_task/__terp__.py +++ b/addons/report_task/__terp__.py @@ -32,6 +32,6 @@ 'update_xml': ['security/ir.model.access.csv', 'report_task_view.xml'], 'installable': True, 'active': False, - 'certificate': '0026629187427709', + 'certificate': '27671328157', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_timesheet/__terp__.py b/addons/report_timesheet/__terp__.py index 8dc1c45977f..bdf3189755f 100644 --- a/addons/report_timesheet/__terp__.py +++ b/addons/report_timesheet/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0016156980258077', + 'certificate': '78701510301', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale/__terp__.py b/addons/sale/__terp__.py index a18923b3312..3f1a147e541 100644 --- a/addons/sale/__terp__.py +++ b/addons/sale/__terp__.py @@ -45,21 +45,23 @@ 'website': 'http://www.openerp.com', 'depends': ['product', 'stock', 'mrp', 'process'], 'init_xml': [], - 'update_xml': [ 'security/sale_security.xml', - 'security/ir.model.access.csv', - 'sale_workflow.xml', - 'sale_sequence.xml', - 'sale_data.xml', - 'sale_wizard.xml', - 'sale_view.xml', - 'sale_report.xml', - 'sale_wizard.xml', - 'stock_view.xml', - 'process/sale_process.xml', - 'product_view.xml'], + 'update_xml': [ + 'security/sale_security.xml', + 'security/ir.model.access.csv', + 'sale_workflow.xml', + 'sale_sequence.xml', + 'sale_data.xml', + 'sale_wizard.xml', + 'sale_view.xml', + 'sale_report.xml', + 'sale_wizard.xml', + 'stock_view.xml', + 'process/sale_process.xml', + 'product_view.xml' + ], 'demo_xml': ['sale_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0013763479809933', + 'certificate': '58103601429', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_analytic_plans/__terp__.py b/addons/sale_analytic_plans/__terp__.py index 60d87ab3582..09583f59f11 100644 --- a/addons/sale_analytic_plans/__terp__.py +++ b/addons/sale_analytic_plans/__terp__.py @@ -36,6 +36,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0024833956156349', + 'certificate': '66055860861', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_crm/__terp__.py b/addons/sale_crm/__terp__.py index ad9675217ec..e950030db95 100644 --- a/addons/sale_crm/__terp__.py +++ b/addons/sale_crm/__terp__.py @@ -46,6 +46,6 @@ crm_configuration modules. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0025432520667869', + 'certificate': '64360130141', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_delivery_report/__terp__.py b/addons/sale_delivery_report/__terp__.py index 5df5c2c7635..32084e730eb 100644 --- a/addons/sale_delivery_report/__terp__.py +++ b/addons/sale_delivery_report/__terp__.py @@ -29,10 +29,12 @@ 'author': 'Tiny', 'depends': ['sale', 'delivery'], 'init_xml': [], - 'update_xml': ['delivery_report.xml'], + 'update_xml': [ + 'delivery_report.xml' + ], 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0026629095848845', + 'certificate': '803459507494914221', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_journal/__terp__.py b/addons/sale_journal/__terp__.py index 838e4e1c622..b03479be8b8 100644 --- a/addons/sale_journal/__terp__.py +++ b/addons/sale_journal/__terp__.py @@ -52,13 +52,15 @@ 'website': 'http://www.openerp.com', 'depends': ['stock', 'sale'], 'init_xml': ['sale_journal_data.xml'], - 'update_xml': [ 'security/ir.model.access.csv', - 'sale_journal_view.xml', - 'picking_journal_view.xml', - 'picking_journal_view_report.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'sale_journal_view.xml', + 'picking_journal_view.xml', + 'picking_journal_view_report.xml' + ], 'demo_xml': ['sale_journal_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0021841915965053', + 'certificate': '77661619085', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/scrum/__terp__.py b/addons/scrum/__terp__.py index e43cf21e7ca..3915aa5e57a 100644 --- a/addons/scrum/__terp__.py +++ b/addons/scrum/__terp__.py @@ -50,14 +50,16 @@ 'author': 'Tiny', 'depends': ['project', 'process'], 'init_xml': [], - 'update_xml': [ 'security/ir.model.access.csv', - 'scrum_view.xml', - 'scrum_report.xml', - 'scrum_wizard.xml', - 'process/scrum_process.xml'], + 'update_xml': [ + 'security/ir.model.access.csv', + 'scrum_view.xml', + 'scrum_report.xml', + 'scrum_wizard.xml', + 'process/scrum_process.xml' + ], 'demo_xml': ['scrum_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0012566677771565', + 'certificate': '84121063261', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock/__terp__.py b/addons/stock/__terp__.py index 3e14a6e1f93..fff0e892b82 100644 --- a/addons/stock/__terp__.py +++ b/addons/stock/__terp__.py @@ -22,10 +22,10 @@ { - 'name': 'Stock Management', - 'version': '1.1', - 'category': 'Generic Modules/Inventory Control', - 'description': """OpenERP Stock Management module can manage multi-warehouses, multi and structured stock locations. + "name" : "Stock Management", + "version" : "1.1", + "author" : "Tiny", + "description" : """OpenERP Stock Management module can manage multi-warehouses, multi and structured stock locations. Thanks to the double entry management, the inventory controlling is powerful and flexible: * Moves history and planning, * Different inventory methods (FIFO, LIFO, ...) @@ -36,26 +36,29 @@ Thanks to the double entry management, the inventory controlling is powerful and * Rapid detection of mistakes through double entry system * Traceability (upstream/downstream, production lots, serial number, ...) """, - 'author': 'Tiny', - 'website': 'http://www.openerp.com', - 'depends': ['product', 'account'], - 'init_xml': [], - 'update_xml': [ 'stock_workflow.xml', - 'stock_data.xml', - 'stock_incoterms.xml', - 'stock_wizard.xml', - 'stock_view.xml', - 'stock_report.xml', - 'stock_sequence.xml', - 'product_data.xml', - 'product_view.xml', - 'partner_view.xml', - 'report_stock_view.xml', - 'security/stock_security.xml', - 'security/ir.model.access.csv'], + "website" : "http://www.openerp.com", + "depends" : ["product", "account"], + "category" : "Generic Modules/Inventory Control", + "init_xml" : [], + "demo_xml" : ["stock_demo.xml"], + "update_xml" : [ + "stock_workflow.xml", + "stock_data.xml", + "stock_incoterms.xml", + "stock_wizard.xml", + "stock_view.xml", + "stock_report.xml", + "stock_sequence.xml", + "product_data.xml", + "product_view.xml", + "partner_view.xml", + "report_stock_view.xml", + "security/stock_security.xml", + "security/ir.model.access.csv", + ], 'demo_xml': ['stock_demo.xml'], 'installable': True, 'active': False, - 'certificate': '0023038870767557', + 'certificate': '55421559965', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock_invoice_directly/__terp__.py b/addons/stock_invoice_directly/__terp__.py index 09a4cb056b2..e89b1b2d56d 100644 --- a/addons/stock_invoice_directly/__terp__.py +++ b/addons/stock_invoice_directly/__terp__.py @@ -37,6 +37,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '008676896670253', + 'certificate': '81385081261', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock_location/__terp__.py b/addons/stock_location/__terp__.py index 64bc6ba15cc..42b9f52eeb0 100644 --- a/addons/stock_location/__terp__.py +++ b/addons/stock_location/__terp__.py @@ -44,6 +44,6 @@ This module may be useful for different purposes: 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0026928300011069', + 'certificate': '46505115101', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock_no_autopicking/__terp__.py b/addons/stock_no_autopicking/__terp__.py index 32f2af4b1a7..31a01a2ae93 100644 --- a/addons/stock_no_autopicking/__terp__.py +++ b/addons/stock_no_autopicking/__terp__.py @@ -40,6 +40,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0015259369768829', + 'certificate': '75124168925', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/subscription/__terp__.py b/addons/subscription/__terp__.py index 8c4ee6680b0..97e2f7cef54 100644 --- a/addons/subscription/__terp__.py +++ b/addons/subscription/__terp__.py @@ -33,6 +33,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0025731569029469', + 'certificate': '29454782573', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/warning/__terp__.py b/addons/warning/__terp__.py index 9248ba63fc1..09c6cdc854e 100644 --- a/addons/warning/__terp__.py +++ b/addons/warning/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '0017054645297021', + 'certificate': '80334018749', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/wiki/__terp__.py b/addons/wiki/__terp__.py index 20c8ad34f3a..6ed97909ded 100644 --- a/addons/wiki/__terp__.py +++ b/addons/wiki/__terp__.py @@ -13,14 +13,16 @@ 'website': 'http://openerp.com', 'depends': ['base'], 'init_xml': [], - 'update_xml': [ 'wiki_view.xml', - 'data/wiki_quickstart.xml', - 'data/wiki_main.xml', - 'wizard/wizard_view.xml', - 'security/ir.model.access.csv'], + 'update_xml': [ + 'wiki_view.xml', + 'data/wiki_quickstart.xml', + 'data/wiki_main.xml', + 'wizard/wizard_view.xml', + 'security/ir.model.access.csv' + ], 'demo_xml': ['data/wiki_faq.xml'], 'installable': True, 'active': False, - 'certificate': '009574612852253', + 'certificate': '86363630317', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From 9c2073e44fcbba03ae97cbaf7b3e6eeb94a185bf Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Tue, 3 Feb 2009 18:02:20 +0100 Subject: [PATCH 8/9] [IMP] Prefix the certificate ID with 00 bzr revid: stephane@tinyerp.com-20090203170220-t1bem02ey7ivdedr --- addons/account/__terp__.py | 2 +- addons/account_analytic_analysis/__terp__.py | 2 +- addons/account_analytic_default/__terp__.py | 2 +- addons/account_analytic_plans/__terp__.py | 2 +- addons/account_balance/__terp__.py | 2 +- addons/account_budget/__terp__.py | 2 +- addons/account_chart/__terp__.py | 2 +- addons/account_date_check/__terp__.py | 2 +- addons/account_followup/__terp__.py | 2 +- addons/account_invoice_layout/__terp__.py | 2 +- addons/account_payment/__terp__.py | 2 +- addons/account_report/__terp__.py | 2 +- addons/account_reporting/__terp__.py | 2 +- addons/account_tax_include/__terp__.py | 2 +- addons/account_voucher/__terp__.py | 2 +- addons/analytic_journal_billing_rate/__terp__.py | 2 +- addons/analytic_user_function/__terp__.py | 2 +- addons/auction/__terp__.py | 2 +- addons/audittrail/__terp__.py | 2 +- addons/base_contact/__terp__.py | 2 +- addons/base_iban/__terp__.py | 2 +- addons/base_module_merge/__terp__.py | 2 +- addons/base_module_publish/__terp__.py | 2 +- addons/base_module_record/__terp__.py | 2 +- addons/base_report_creator/__terp__.py | 2 +- addons/base_report_designer/__terp__.py | 2 +- addons/base_setup/__terp__.py | 2 +- addons/base_vat/__terp__.py | 2 +- addons/board/__terp__.py | 2 +- addons/board_account/__terp__.py | 2 +- addons/board_association/__terp__.py | 2 +- addons/board_auction/__terp__.py | 2 +- addons/board_crm_configuration/__terp__.py | 2 +- addons/board_document/__terp__.py | 2 +- addons/board_manufacturing/__terp__.py | 2 +- addons/board_project/__terp__.py | 2 +- addons/board_sale/__terp__.py | 2 +- addons/crm/__terp__.py | 2 +- addons/crm_configuration/__terp__.py | 2 +- addons/crm_profiling/__terp__.py | 2 +- addons/crm_vertical/__terp__.py | 2 +- addons/delivery/__terp__.py | 2 +- addons/document/__terp__.py | 2 +- addons/document_ics/__terp__.py | 2 +- addons/event/__terp__.py | 2 +- addons/event_project/__terp__.py | 2 +- addons/google_map/__terp__.py | 2 +- addons/hr/__terp__.py | 2 +- addons/hr_attendance/__terp__.py | 2 +- addons/hr_contract/__terp__.py | 2 +- addons/hr_expense/__terp__.py | 2 +- addons/hr_holidays/__terp__.py | 2 +- addons/hr_timesheet/__terp__.py | 2 +- addons/hr_timesheet_invoice/__terp__.py | 2 +- addons/hr_timesheet_sheet/__terp__.py | 2 +- addons/idea/__terp__.py | 2 +- addons/l10n_be/__terp__.py | 2 +- addons/l10n_chart_uk_minimal/__terp__.py | 2 +- addons/l10n_lu/__terp__.py | 2 +- addons/membership/__terp__.py | 2 +- addons/mrp/__terp__.py | 2 +- addons/mrp_jit/__terp__.py | 2 +- addons/mrp_operations/__terp__.py | 2 +- addons/mrp_repair/__terp__.py | 2 +- addons/mrp_subproduct/__terp__.py | 2 +- addons/point_of_sale/__terp__.py | 2 +- addons/process/__terp__.py | 2 +- addons/product/__terp__.py | 2 +- addons/product_margin/__terp__.py | 2 +- addons/profile_accounting/__terp__.py | 2 +- addons/profile_association/__terp__.py | 2 +- addons/profile_auction/__terp__.py | 2 +- addons/profile_crm/__terp__.py | 2 +- addons/profile_manufacturing/__terp__.py | 2 +- addons/profile_service/__terp__.py | 2 +- addons/project/__terp__.py | 2 +- addons/project_gtd/__terp__.py | 2 +- addons/project_mrp/__terp__.py | 2 +- addons/project_retro_planning/__terp__.py | 2 +- addons/project_timesheet/__terp__.py | 2 +- addons/purchase/__terp__.py | 2 +- addons/purchase_analytic_plans/__terp__.py | 2 +- addons/report_account/__terp__.py | 2 +- addons/report_analytic/__terp__.py | 2 +- addons/report_analytic_line/__terp__.py | 2 +- addons/report_analytic_planning/__terp__.py | 2 +- addons/report_crm/__terp__.py | 2 +- addons/report_document/__terp__.py | 2 +- addons/report_intrastat/__terp__.py | 2 +- addons/report_mrp/__terp__.py | 2 +- addons/report_project/__terp__.py | 2 +- addons/report_purchase/__terp__.py | 2 +- addons/report_sale/__terp__.py | 2 +- addons/report_task/__terp__.py | 2 +- addons/report_timesheet/__terp__.py | 2 +- addons/sale/__terp__.py | 2 +- addons/sale_analytic_plans/__terp__.py | 2 +- addons/sale_crm/__terp__.py | 2 +- addons/sale_delivery_report/__terp__.py | 2 +- addons/sale_journal/__terp__.py | 2 +- addons/scrum/__terp__.py | 2 +- addons/stock/__terp__.py | 2 +- addons/stock_invoice_directly/__terp__.py | 2 +- addons/stock_location/__terp__.py | 2 +- addons/stock_no_autopicking/__terp__.py | 2 +- addons/subscription/__terp__.py | 2 +- addons/warning/__terp__.py | 2 +- addons/wiki/__terp__.py | 2 +- 108 files changed, 108 insertions(+), 108 deletions(-) diff --git a/addons/account/__terp__.py b/addons/account/__terp__.py index eb9786c9d63..2679bc5e515 100644 --- a/addons/account/__terp__.py +++ b/addons/account/__terp__.py @@ -70,6 +70,6 @@ ], 'installable': True, 'active': False, - 'certificate': '80331923549', + 'certificate': '0080331923549', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_analytic_analysis/__terp__.py b/addons/account_analytic_analysis/__terp__.py index b45b828c2a8..89c9c6741f0 100644 --- a/addons/account_analytic_analysis/__terp__.py +++ b/addons/account_analytic_analysis/__terp__.py @@ -43,6 +43,6 @@ Add menu to show relevant information for each manager.""", 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '42927202589', + 'certificate': '0042927202589', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_analytic_default/__terp__.py b/addons/account_analytic_default/__terp__.py index ae3e599119d..cea4b3b981e 100644 --- a/addons/account_analytic_default/__terp__.py +++ b/addons/account_analytic_default/__terp__.py @@ -41,6 +41,6 @@ Allows to automatically select analytic accounts based on criterions: 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '74229833581', + 'certificate': '0074229833581', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_analytic_plans/__terp__.py b/addons/account_analytic_plans/__terp__.py index 722bf2727d3..97d22b33fe4 100644 --- a/addons/account_analytic_plans/__terp__.py +++ b/addons/account_analytic_plans/__terp__.py @@ -66,6 +66,6 @@ for one account entry. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '36417675373', + 'certificate': '0036417675373', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_balance/__terp__.py b/addons/account_balance/__terp__.py index 05de61e62ae..165e1e75aaa 100644 --- a/addons/account_balance/__terp__.py +++ b/addons/account_balance/__terp__.py @@ -47,6 +47,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '81928745309', + 'certificate': '0081928745309', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_budget/__terp__.py b/addons/account_budget/__terp__.py index bcb1ab7ffd6..2b6e84089a5 100644 --- a/addons/account_budget/__terp__.py +++ b/addons/account_budget/__terp__.py @@ -58,6 +58,6 @@ Three reports are available: 'demo_xml': ['crossovered_budget_demo.xml'], 'installable': True, 'active': False, - 'certificate': '43819694157', + 'certificate': '0043819694157', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_chart/__terp__.py b/addons/account_chart/__terp__.py index bb3aee9760c..4733043cc5b 100644 --- a/addons/account_chart/__terp__.py +++ b/addons/account_chart/__terp__.py @@ -33,6 +33,6 @@ 'update_xml': [], 'demo_xml': [], 'installable': True, - 'certificate': '73332443901', + 'certificate': '0073332443901', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_date_check/__terp__.py b/addons/account_date_check/__terp__.py index 9f38a0c5305..6a4741f916b 100644 --- a/addons/account_date_check/__terp__.py +++ b/addons/account_date_check/__terp__.py @@ -42,6 +42,6 @@ period !" 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '66174843389', + 'certificate': '0066174843389', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_followup/__terp__.py b/addons/account_followup/__terp__.py index 5c58289f215..6a297ec668f 100644 --- a/addons/account_followup/__terp__.py +++ b/addons/account_followup/__terp__.py @@ -51,6 +51,6 @@ 'demo_xml': ['followup_demo.xml'], 'installable': True, 'active': False, - 'certificate': '72481076453', + 'certificate': '0072481076453', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_invoice_layout/__terp__.py b/addons/account_invoice_layout/__terp__.py index 05389645833..c1e28ad8713 100644 --- a/addons/account_invoice_layout/__terp__.py +++ b/addons/account_invoice_layout/__terp__.py @@ -48,6 +48,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '57235078173', + 'certificate': '0057235078173', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_payment/__terp__.py b/addons/account_payment/__terp__.py index 348b9b1ce08..812bd319306 100644 --- a/addons/account_payment/__terp__.py +++ b/addons/account_payment/__terp__.py @@ -49,6 +49,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '61703998541', + 'certificate': '0061703998541', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_report/__terp__.py b/addons/account_report/__terp__.py index 1d1ac5ca605..0aed736ec78 100644 --- a/addons/account_report/__terp__.py +++ b/addons/account_report/__terp__.py @@ -42,6 +42,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '50976406925', + 'certificate': '0050976406925', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_reporting/__terp__.py b/addons/account_reporting/__terp__.py index 4f98660da09..eff79429153 100644 --- a/addons/account_reporting/__terp__.py +++ b/addons/account_reporting/__terp__.py @@ -39,6 +39,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '72305016797', + 'certificate': '0072305016797', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_tax_include/__terp__.py b/addons/account_tax_include/__terp__.py index 9e8c138cd41..db8143735f1 100644 --- a/addons/account_tax_include/__terp__.py +++ b/addons/account_tax_include/__terp__.py @@ -38,6 +38,6 @@ This module implement the modification on the invoice form. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '70514190381', + 'certificate': '0070514190381', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_voucher/__terp__.py b/addons/account_voucher/__terp__.py index 20c6e7c885a..dca0f4075f2 100755 --- a/addons/account_voucher/__terp__.py +++ b/addons/account_voucher/__terp__.py @@ -49,6 +49,6 @@ Basic Accounting, plus new things that are available: 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '37580727101', + 'certificate': '0037580727101', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/analytic_journal_billing_rate/__terp__.py b/addons/analytic_journal_billing_rate/__terp__.py index 882ef832758..2290900f99a 100644 --- a/addons/analytic_journal_billing_rate/__terp__.py +++ b/addons/analytic_journal_billing_rate/__terp__.py @@ -40,6 +40,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '30271787965', + 'certificate': '0030271787965', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/analytic_user_function/__terp__.py b/addons/analytic_user_function/__terp__.py index ae5231cb84e..786919785b3 100644 --- a/addons/analytic_user_function/__terp__.py +++ b/addons/analytic_user_function/__terp__.py @@ -40,6 +40,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '82277138269', + 'certificate': '0082277138269', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/auction/__terp__.py b/addons/auction/__terp__.py index e2e7cd53e11..99e2b87718b 100644 --- a/addons/auction/__terp__.py +++ b/addons/auction/__terp__.py @@ -42,6 +42,6 @@ 'demo_xml': ['auction_demo.xml'], 'installable': True, 'active': False, - 'certificate': '39333102717', + 'certificate': '0039333102717', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/audittrail/__terp__.py b/addons/audittrail/__terp__.py index ccd86944270..122bd6dc789 100644 --- a/addons/audittrail/__terp__.py +++ b/addons/audittrail/__terp__.py @@ -39,6 +39,6 @@ 'demo_xml': ['audittrail_demo.xml'], 'installable': True, 'active': False, - 'certificate': '62572348749', + 'certificate': '0062572348749', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_contact/__terp__.py b/addons/base_contact/__terp__.py index f50bfdef95a..e02191c703f 100644 --- a/addons/base_contact/__terp__.py +++ b/addons/base_contact/__terp__.py @@ -51,6 +51,6 @@ 'demo_xml': ['base_contact_demo.xml'], 'installable': True, 'active': False, - 'certificate': '31287885469', + 'certificate': '0031287885469', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_iban/__terp__.py b/addons/base_iban/__terp__.py index d677b401dba..b4de833c77b 100644 --- a/addons/base_iban/__terp__.py +++ b/addons/base_iban/__terp__.py @@ -35,6 +35,6 @@ This module install the base for IBAN bank accounts. 'update_xml': ['base_iban_view.xml'], 'installable': True, 'active': False, - 'certificate': '50014379549', + 'certificate': '0050014379549', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_merge/__terp__.py b/addons/base_module_merge/__terp__.py index 6d7b4d97fe1..4a2a004753d 100644 --- a/addons/base_module_merge/__terp__.py +++ b/addons/base_module_merge/__terp__.py @@ -41,6 +41,6 @@ 'update_xml': ['base_module_merge_wizard.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '35756279709', + 'certificate': '0035756279709', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_publish/__terp__.py b/addons/base_module_publish/__terp__.py index af3afdfad0b..400409c6ebc 100644 --- a/addons/base_module_publish/__terp__.py +++ b/addons/base_module_publish/__terp__.py @@ -43,6 +43,6 @@ to call this button when you want to release a new version of your module. 'update_xml': ['base_module_publish_wizard.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '67939821245', + 'certificate': '0067939821245', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_module_record/__terp__.py b/addons/base_module_record/__terp__.py index aaf16cc283f..8c6edb399a3 100644 --- a/addons/base_module_record/__terp__.py +++ b/addons/base_module_record/__terp__.py @@ -51,6 +51,6 @@ How to use it: 'update_xml': ['security/ir.model.access.csv', 'base_module_record_wizard.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '83134865813', + 'certificate': '0083134865813', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_report_creator/__terp__.py b/addons/base_report_creator/__terp__.py index d95ebf3ef09..32e6c4e0c25 100644 --- a/addons/base_report_creator/__terp__.py +++ b/addons/base_report_creator/__terp__.py @@ -44,6 +44,6 @@ the "Dashboard" menu. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '31285794149', + 'certificate': '0031285794149', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_report_designer/__terp__.py b/addons/base_report_designer/__terp__.py index 38c9eb12b42..c66be0ec379 100644 --- a/addons/base_report_designer/__terp__.py +++ b/addons/base_report_designer/__terp__.py @@ -37,6 +37,6 @@ OpenOffice. 'demo_xml': ['base_report_data.xml'], 'installable': True, 'active': False, - 'certificate': '56379010493', + 'certificate': '0056379010493', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_setup/__terp__.py b/addons/base_setup/__terp__.py index d4499f2e093..0d20c3a01c6 100644 --- a/addons/base_setup/__terp__.py +++ b/addons/base_setup/__terp__.py @@ -46,6 +46,6 @@ 'demo_xml': ['base_setup_demo.xml'], 'installable': True, 'active': True, - 'certificate': '86711085869', + 'certificate': '0086711085869', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_vat/__terp__.py b/addons/base_vat/__terp__.py index a4e15b75188..86e2af8a555 100644 --- a/addons/base_vat/__terp__.py +++ b/addons/base_vat/__terp__.py @@ -31,6 +31,6 @@ 'update_xml': ['base_vat_data.xml'], 'installable': True, 'active': False, - 'certificate': '84849360989', + 'certificate': '0084849360989', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board/__terp__.py b/addons/board/__terp__.py index fe03a113ea3..4477c45ae82 100644 --- a/addons/board/__terp__.py +++ b/addons/board/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '76912305725', + 'certificate': '0076912305725', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_account/__terp__.py b/addons/board_account/__terp__.py index e44cc0b45c5..64f80fba8d1 100644 --- a/addons/board_account/__terp__.py +++ b/addons/board_account/__terp__.py @@ -48,6 +48,6 @@ 'demo_xml': ['board_account_demo.xml'], 'installable': True, 'active': False, - 'certificate': '76016921229', + 'certificate': '0076016921229', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_association/__terp__.py b/addons/board_association/__terp__.py index 58557ed5a97..9c838590a04 100644 --- a/addons/board_association/__terp__.py +++ b/addons/board_association/__terp__.py @@ -34,6 +34,6 @@ This module implements a dashboard for associations. 'demo_xml': ['board_association_demo.xml'], 'installable': True, 'active': False, - 'certificate': '79647781773', + 'certificate': '0079647781773', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_auction/__terp__.py b/addons/board_auction/__terp__.py index e7e49542632..7d44ae3c827 100644 --- a/addons/board_auction/__terp__.py +++ b/addons/board_auction/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': ['board_auction_demo.xml'], 'installable': True, 'active': False, - 'certificate': '49187078189', + 'certificate': '0049187078189', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_crm_configuration/__terp__.py b/addons/board_crm_configuration/__terp__.py index eb6e0a435d1..a00a88a5048 100644 --- a/addons/board_crm_configuration/__terp__.py +++ b/addons/board_crm_configuration/__terp__.py @@ -40,6 +40,6 @@ This module implements a dashboard for CRM that includes: 'demo_xml': ['board_crm_demo.xml'], 'installable': True, 'active': False, - 'certificate': '71599098909', + 'certificate': '0071599098909', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_document/__terp__.py b/addons/board_document/__terp__.py index 17e44ae48d7..19114430437 100644 --- a/addons/board_document/__terp__.py +++ b/addons/board_document/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': ['board_document_demo.xml'], 'installable': True, 'active': False, - 'certificate': '44628458429', + 'certificate': '0044628458429', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_manufacturing/__terp__.py b/addons/board_manufacturing/__terp__.py index 41e0d37bcdf..8a3c14fba3e 100644 --- a/addons/board_manufacturing/__terp__.py +++ b/addons/board_manufacturing/__terp__.py @@ -38,6 +38,6 @@ 'demo_xml': ['board_manufacturing_demo.xml'], 'installable': True, 'active': False, - 'certificate': '30407612797', + 'certificate': '0030407612797', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_project/__terp__.py b/addons/board_project/__terp__.py index d89aecab86e..5b37f5bb323 100644 --- a/addons/board_project/__terp__.py +++ b/addons/board_project/__terp__.py @@ -47,6 +47,6 @@ This module implements a dashboard for project member that includes: 'demo_xml': ['board_project_demo.xml'], 'installable': True, 'active': False, - 'certificate': '39350482013', + 'certificate': '0039350482013', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/board_sale/__terp__.py b/addons/board_sale/__terp__.py index 0546c03b50f..e5a1ae51f72 100644 --- a/addons/board_sale/__terp__.py +++ b/addons/board_sale/__terp__.py @@ -39,6 +39,6 @@ This module implements a dashboard for salesman that includes: 'demo_xml': ['board_sale_demo.xml'], 'installable': True, 'active': False, - 'certificate': '46503501021', + 'certificate': '0046503501021', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm/__terp__.py b/addons/crm/__terp__.py index 34927ec17a3..29450cc9e71 100644 --- a/addons/crm/__terp__.py +++ b/addons/crm/__terp__.py @@ -57,6 +57,6 @@ between mails and Open ERP.""", 'demo_xml': ['crm_demo.xml'], 'installable': True, 'active': False, - 'certificate': '79056041421', + 'certificate': '0079056041421', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm_configuration/__terp__.py b/addons/crm_configuration/__terp__.py index d5da400d409..6d0cd665546 100644 --- a/addons/crm_configuration/__terp__.py +++ b/addons/crm_configuration/__terp__.py @@ -55,6 +55,6 @@ meetings, eso. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '80531386589', + 'certificate': '0080531386589', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm_profiling/__terp__.py b/addons/crm_profiling/__terp__.py index 37629b2071e..6ea05a5fd34 100644 --- a/addons/crm_profiling/__terp__.py +++ b/addons/crm_profiling/__terp__.py @@ -45,6 +45,6 @@ 'demo_xml': ['crm_profiling_demo.xml'], 'installable': True, 'active': False, - 'certificate': '33984979005', + 'certificate': '0033984979005', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/crm_vertical/__terp__.py b/addons/crm_vertical/__terp__.py index 44e8113a165..34453baad14 100644 --- a/addons/crm_vertical/__terp__.py +++ b/addons/crm_vertical/__terp__.py @@ -33,6 +33,6 @@ 'update_xml': [], 'demo_xml': [], 'installable': True, - 'certificate': '59915476845', + 'certificate': '0059915476845', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/delivery/__terp__.py b/addons/delivery/__terp__.py index 1aec98e6f6f..856404465dc 100644 --- a/addons/delivery/__terp__.py +++ b/addons/delivery/__terp__.py @@ -38,6 +38,6 @@ 'demo_xml': ['delivery_demo.xml'], 'installable': True, 'active': False, - 'certificate': '33981912253', + 'certificate': '0033981912253', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/document/__terp__.py b/addons/document/__terp__.py index c6a772f5287..f7e326bbc65 100644 --- a/addons/document/__terp__.py +++ b/addons/document/__terp__.py @@ -43,6 +43,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '70515416461', + 'certificate': '0070515416461', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/document_ics/__terp__.py b/addons/document_ics/__terp__.py index 0a9a626d3cc..d5adf71e88f 100644 --- a/addons/document_ics/__terp__.py +++ b/addons/document_ics/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': ['document_demo.xml'], 'installable': True, 'active': False, - 'certificate': '71242387229', + 'certificate': '0071242387229', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/event/__terp__.py b/addons/event/__terp__.py index 2cd05130736..49cfe71a53b 100644 --- a/addons/event/__terp__.py +++ b/addons/event/__terp__.py @@ -51,6 +51,6 @@ 'demo_xml': ['event_demo.xml'], 'installable': True, 'active': False, - 'certificate': '83059161581', + 'certificate': '0083059161581', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/event_project/__terp__.py b/addons/event_project/__terp__.py index 741f9796509..cd846203c75 100644 --- a/addons/event_project/__terp__.py +++ b/addons/event_project/__terp__.py @@ -36,6 +36,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '69726863885', + 'certificate': '0069726863885', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/google_map/__terp__.py b/addons/google_map/__terp__.py index 6b6b15b0838..9d5df2f8aed 100644 --- a/addons/google_map/__terp__.py +++ b/addons/google_map/__terp__.py @@ -36,6 +36,6 @@ url widget.""", 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '29498930765', + 'certificate': '0029498930765', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr/__terp__.py b/addons/hr/__terp__.py index 2a82c2ba01f..ed6a3a34f60 100644 --- a/addons/hr/__terp__.py +++ b/addons/hr/__terp__.py @@ -50,6 +50,6 @@ 'demo_xml': ['hr_demo.xml', 'hr_department_demo.xml'], 'installable': True, 'active': False, - 'certificate': '86710558965', + 'certificate': '0086710558965', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_attendance/__terp__.py b/addons/hr_attendance/__terp__.py index 6afa17c958c..5f59acab357 100644 --- a/addons/hr_attendance/__terp__.py +++ b/addons/hr_attendance/__terp__.py @@ -38,6 +38,6 @@ 'demo_xml': ['hr_attendance_demo.xml'], 'installable': True, 'active': False, - 'certificate': '63495605613', + 'certificate': '0063495605613', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_contract/__terp__.py b/addons/hr_contract/__terp__.py index a253d60109e..2afd71a042a 100644 --- a/addons/hr_contract/__terp__.py +++ b/addons/hr_contract/__terp__.py @@ -45,6 +45,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '46298028637', + 'certificate': '0046298028637', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_expense/__terp__.py b/addons/hr_expense/__terp__.py index 8c08af34e70..a326191b0b1 100644 --- a/addons/hr_expense/__terp__.py +++ b/addons/hr_expense/__terp__.py @@ -54,6 +54,6 @@ 'demo_xml': ['hr_expense_demo.xml', 'hr.expense.expense.csv'], 'installable': True, 'active': False, - 'certificate': '62479841789', + 'certificate': '0062479841789', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_holidays/__terp__.py b/addons/hr_holidays/__terp__.py index 948df531ceb..c8d7e445c9b 100644 --- a/addons/hr_holidays/__terp__.py +++ b/addons/hr_holidays/__terp__.py @@ -41,6 +41,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '86579209325', + 'certificate': '0086579209325', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_timesheet/__terp__.py b/addons/hr_timesheet/__terp__.py index c17deafa743..56bca69936a 100644 --- a/addons/hr_timesheet/__terp__.py +++ b/addons/hr_timesheet/__terp__.py @@ -50,6 +50,6 @@ to set up a management by affair. 'demo_xml': ['hr_timesheet_demo.xml'], 'installable': True, 'active': False, - 'certificate': '71405533469', + 'certificate': '0071405533469', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_timesheet_invoice/__terp__.py b/addons/hr_timesheet_invoice/__terp__.py index 899c466bdf7..34cb8b8a16d 100644 --- a/addons/hr_timesheet_invoice/__terp__.py +++ b/addons/hr_timesheet_invoice/__terp__.py @@ -42,6 +42,6 @@ reports, eso.""", 'demo_xml': ['hr_timesheet_invoice_demo.xml'], 'installable': True, 'active': False, - 'certificate': '56091842381', + 'certificate': '0056091842381', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_timesheet_sheet/__terp__.py b/addons/hr_timesheet_sheet/__terp__.py index 006569b4c0e..129592adfaa 100644 --- a/addons/hr_timesheet_sheet/__terp__.py +++ b/addons/hr_timesheet_sheet/__terp__.py @@ -57,6 +57,6 @@ The validation can be configured in te company: 'demo_xml': ['hr_timesheet_sheet_demo.xml'], 'installable': True, 'active': False, - 'certificate': '73297700829', + 'certificate': '0073297700829', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/idea/__terp__.py b/addons/idea/__terp__.py index 37b6d0c52ab..a30d2854d32 100644 --- a/addons/idea/__terp__.py +++ b/addons/idea/__terp__.py @@ -38,6 +38,6 @@ ], 'demo_xml': [], 'installable': True, - 'certificate': '71515601309', + 'certificate': '0071515601309', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_be/__terp__.py b/addons/l10n_be/__terp__.py index 05c87181e45..910df2d39e2 100644 --- a/addons/l10n_be/__terp__.py +++ b/addons/l10n_be/__terp__.py @@ -58,6 +58,6 @@ 'account.report.report.csv' ], 'installable': True, - 'certificate': '31977724637', + 'certificate': '0031977724637', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_chart_uk_minimal/__terp__.py b/addons/l10n_chart_uk_minimal/__terp__.py index 3b714b16986..b4881867bb8 100644 --- a/addons/l10n_chart_uk_minimal/__terp__.py +++ b/addons/l10n_chart_uk_minimal/__terp__.py @@ -76,6 +76,6 @@ ], 'demo_xml': [], 'installable': True, - 'certificate': '64392144797', + 'certificate': '0064392144797', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/l10n_lu/__terp__.py b/addons/l10n_lu/__terp__.py index 62d39d81e67..169d95df3fc 100644 --- a/addons/l10n_lu/__terp__.py +++ b/addons/l10n_lu/__terp__.py @@ -44,6 +44,6 @@ This module installs: ], 'demo_xml': ['account.report.report.csv'], 'installable': True, - 'certificate': '78164766621', + 'certificate': '0078164766621', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/membership/__terp__.py b/addons/membership/__terp__.py index 54dce054fad..dfc6774da2f 100644 --- a/addons/membership/__terp__.py +++ b/addons/membership/__terp__.py @@ -49,6 +49,6 @@ invoice and send propositions for membership renewal. 'demo_xml': ['membership_demo.xml'], 'installable': True, 'active': False, - 'certificate': '42907796381', + 'certificate': '0042907796381', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp/__terp__.py b/addons/mrp/__terp__.py index 47d2a6a2836..508b66a7878 100644 --- a/addons/mrp/__terp__.py +++ b/addons/mrp/__terp__.py @@ -75,6 +75,6 @@ 'demo_xml': ['mrp_demo.xml', 'mrp_order_point.xml'], 'installable': True, 'active': False, - 'certificate': '32052481373', + 'certificate': '0032052481373', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_jit/__terp__.py b/addons/mrp_jit/__terp__.py index 399419d0d82..944971b97e7 100644 --- a/addons/mrp_jit/__terp__.py +++ b/addons/mrp_jit/__terp__.py @@ -42,6 +42,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '86634760061', + 'certificate': '0086634760061', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_operations/__terp__.py b/addons/mrp_operations/__terp__.py index ed7f848fe5f..c53269f5b7c 100644 --- a/addons/mrp_operations/__terp__.py +++ b/addons/mrp_operations/__terp__.py @@ -64,6 +64,6 @@ 'demo_xml': ['mrp_operation_data.xml'], 'installable': True, 'active': False, - 'certificate': '56233813133', + 'certificate': '0056233813133', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_repair/__terp__.py b/addons/mrp_repair/__terp__.py index 380e02a6c67..5db51c15ce4 100644 --- a/addons/mrp_repair/__terp__.py +++ b/addons/mrp_repair/__terp__.py @@ -47,6 +47,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '60814381277', + 'certificate': '0060814381277', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/mrp_subproduct/__terp__.py b/addons/mrp_subproduct/__terp__.py index 80181422a55..fe005926185 100644 --- a/addons/mrp_subproduct/__terp__.py +++ b/addons/mrp_subproduct/__terp__.py @@ -41,6 +41,6 @@ With this module: 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '50060616733', + 'certificate': '0050060616733', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/point_of_sale/__terp__.py b/addons/point_of_sale/__terp__.py index 46e6f519b08..f597c98b0b2 100644 --- a/addons/point_of_sale/__terp__.py +++ b/addons/point_of_sale/__terp__.py @@ -50,6 +50,6 @@ Main features : ], 'demo_xml': [], 'installable': True, - 'certificate': '48272150909', + 'certificate': '0048272150909', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/process/__terp__.py b/addons/process/__terp__.py index b76360ee420..68671b965d1 100644 --- a/addons/process/__terp__.py +++ b/addons/process/__terp__.py @@ -36,6 +36,6 @@ This module allows you to manage your process for the end-users. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '55447636669', + 'certificate': '0055447636669', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/product/__terp__.py b/addons/product/__terp__.py index 568471df253..276696ace37 100644 --- a/addons/product/__terp__.py +++ b/addons/product/__terp__.py @@ -64,6 +64,6 @@ 'demo_xml': ['product_demo.xml'], 'installable': True, 'active': False, - 'certificate': '68861431437', + 'certificate': '0068861431437', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/product_margin/__terp__.py b/addons/product_margin/__terp__.py index 0096c61abe6..5be94a6bb95 100644 --- a/addons/product_margin/__terp__.py +++ b/addons/product_margin/__terp__.py @@ -36,6 +36,6 @@ the report has several options to help you get the data you need. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '64392591773', + 'certificate': '0064392591773', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_accounting/__terp__.py b/addons/profile_accounting/__terp__.py index 73f6f984624..ace96c34b35 100644 --- a/addons/profile_accounting/__terp__.py +++ b/addons/profile_accounting/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '38455352045', + 'certificate': '0038455352045', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_association/__terp__.py b/addons/profile_association/__terp__.py index 7a7efca044b..c4344c51458 100644 --- a/addons/profile_association/__terp__.py +++ b/addons/profile_association/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '78696047261', + 'certificate': '0078696047261', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_auction/__terp__.py b/addons/profile_auction/__terp__.py index 997087a1049..c08dfbf0149 100644 --- a/addons/profile_auction/__terp__.py +++ b/addons/profile_auction/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '65280135565', + 'certificate': '0065280135565', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_crm/__terp__.py b/addons/profile_crm/__terp__.py index bbee7356313..6f0944baff5 100644 --- a/addons/profile_crm/__terp__.py +++ b/addons/profile_crm/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '73301264221', + 'certificate': '0073301264221', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_manufacturing/__terp__.py b/addons/profile_manufacturing/__terp__.py index 167343d05de..7bf367bfed7 100644 --- a/addons/profile_manufacturing/__terp__.py +++ b/addons/profile_manufacturing/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '27737506213', + 'certificate': '0027737506213', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/profile_service/__terp__.py b/addons/profile_service/__terp__.py index 828722a2389..a69f3228b9e 100644 --- a/addons/profile_service/__terp__.py +++ b/addons/profile_service/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '30405502077', + 'certificate': '0030405502077', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project/__terp__.py b/addons/project/__terp__.py index 01059dc193e..e865e966052 100644 --- a/addons/project/__terp__.py +++ b/addons/project/__terp__.py @@ -45,6 +45,6 @@ works done on tasks, eso. It is able to render planning, order tasks, eso. 'demo_xml': ['project_demo.xml'], 'installable': True, 'active': False, - 'certificate': '75116868317', + 'certificate': '0075116868317', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_gtd/__terp__.py b/addons/project_gtd/__terp__.py index 272c7e69a12..f68555d35e5 100644 --- a/addons/project_gtd/__terp__.py +++ b/addons/project_gtd/__terp__.py @@ -49,6 +49,6 @@ performing those tasks. 'demo_xml': ['project_gtd_demo.xml'], 'installable': True, 'active': False, - 'certificate': '43525236301', + 'certificate': '0043525236301', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_mrp/__terp__.py b/addons/project_mrp/__terp__.py index f1da23862e1..784814414cf 100644 --- a/addons/project_mrp/__terp__.py +++ b/addons/project_mrp/__terp__.py @@ -40,6 +40,6 @@ created by sales orders. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '31976495453', + 'certificate': '0031976495453', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_retro_planning/__terp__.py b/addons/project_retro_planning/__terp__.py index 14cb39754e8..d3a6bd1d9c1 100644 --- a/addons/project_retro_planning/__terp__.py +++ b/addons/project_retro_planning/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '57235475485', + 'certificate': '0057235475485', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/project_timesheet/__terp__.py b/addons/project_timesheet/__terp__.py index d764fc80684..8b86f54382c 100644 --- a/addons/project_timesheet/__terp__.py +++ b/addons/project_timesheet/__terp__.py @@ -38,6 +38,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '75123647453', + 'certificate': '0075123647453', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/purchase/__terp__.py b/addons/purchase/__terp__.py index f66c1d75dbe..88b92b4f853 100644 --- a/addons/purchase/__terp__.py +++ b/addons/purchase/__terp__.py @@ -47,6 +47,6 @@ 'demo_xml': ['purchase_demo.xml'], 'installable': True, 'active': False, - 'certificate': '57234283549', + 'certificate': '0057234283549', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/purchase_analytic_plans/__terp__.py b/addons/purchase_analytic_plans/__terp__.py index c639aa1eb66..ddb2063e89e 100644 --- a/addons/purchase_analytic_plans/__terp__.py +++ b/addons/purchase_analytic_plans/__terp__.py @@ -36,6 +36,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '62176518909', + 'certificate': '0062176518909', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_account/__terp__.py b/addons/report_account/__terp__.py index 2b568ce08b0..af3c7a0726c 100644 --- a/addons/report_account/__terp__.py +++ b/addons/report_account/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '61754222813', + 'certificate': '0061754222813', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_analytic/__terp__.py b/addons/report_analytic/__terp__.py index 0d072fcf1ef..5827f019e3b 100644 --- a/addons/report_analytic/__terp__.py +++ b/addons/report_analytic/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '59950675429', + 'certificate': '0059950675429', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_analytic_line/__terp__.py b/addons/report_analytic_line/__terp__.py index 905eca096eb..b9c97e2a7d3 100644 --- a/addons/report_analytic_line/__terp__.py +++ b/addons/report_analytic_line/__terp__.py @@ -34,6 +34,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '75179053853', + 'certificate': '0075179053853', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_analytic_planning/__terp__.py b/addons/report_analytic_planning/__terp__.py index 73a71fc0bca..53cc8548e16 100644 --- a/addons/report_analytic_planning/__terp__.py +++ b/addons/report_analytic_planning/__terp__.py @@ -38,6 +38,6 @@ 'demo_xml': ['report_account_analytic.planning.csv'], 'installable': True, 'active': False, - 'certificate': '34901836973', + 'certificate': '0034901836973', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_crm/__terp__.py b/addons/report_crm/__terp__.py index 35ea350abf8..4023b1c331e 100644 --- a/addons/report_crm/__terp__.py +++ b/addons/report_crm/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '30422968285', + 'certificate': '0030422968285', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_document/__terp__.py b/addons/report_document/__terp__.py index d6ae3bccef3..5b4e7e7d86f 100644 --- a/addons/report_document/__terp__.py +++ b/addons/report_document/__terp__.py @@ -37,6 +37,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '68012774557', + 'certificate': '0068012774557', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_intrastat/__terp__.py b/addons/report_intrastat/__terp__.py index f23feae9786..aa4f4f33c20 100644 --- a/addons/report_intrastat/__terp__.py +++ b/addons/report_intrastat/__terp__.py @@ -38,6 +38,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '56982189085', + 'certificate': '0056982189085', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_mrp/__terp__.py b/addons/report_mrp/__terp__.py index 4e75a21e41d..3b60a05e3cc 100644 --- a/addons/report_mrp/__terp__.py +++ b/addons/report_mrp/__terp__.py @@ -34,6 +34,6 @@ 'update_xml': ['security/ir.model.access.csv', 'report_mrp_view.xml'], 'demo_xml': [], 'installable': True, - 'certificate': '71582896029', + 'certificate': '0071582896029', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_project/__terp__.py b/addons/report_project/__terp__.py index c88f64c45e2..b0ca49e7724 100644 --- a/addons/report_project/__terp__.py +++ b/addons/report_project/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '86804423149', + 'certificate': '0086804423149', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_purchase/__terp__.py b/addons/report_purchase/__terp__.py index 5cc72c7de17..8a578ab6b2d 100644 --- a/addons/report_purchase/__terp__.py +++ b/addons/report_purchase/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '73370750365', + 'certificate': '0073370750365', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_sale/__terp__.py b/addons/report_sale/__terp__.py index 6f8f4408c49..dc9c29b71f8 100644 --- a/addons/report_sale/__terp__.py +++ b/addons/report_sale/__terp__.py @@ -48,6 +48,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '59949739573', + 'certificate': '0059949739573', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_task/__terp__.py b/addons/report_task/__terp__.py index 4784e0d6c87..2554f26ae85 100644 --- a/addons/report_task/__terp__.py +++ b/addons/report_task/__terp__.py @@ -32,6 +32,6 @@ 'update_xml': ['security/ir.model.access.csv', 'report_task_view.xml'], 'installable': True, 'active': False, - 'certificate': '27671328157', + 'certificate': '0027671328157', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/report_timesheet/__terp__.py b/addons/report_timesheet/__terp__.py index bdf3189755f..fc993c31311 100644 --- a/addons/report_timesheet/__terp__.py +++ b/addons/report_timesheet/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '78701510301', + 'certificate': '0078701510301', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale/__terp__.py b/addons/sale/__terp__.py index 3f1a147e541..e9fb423c7fc 100644 --- a/addons/sale/__terp__.py +++ b/addons/sale/__terp__.py @@ -62,6 +62,6 @@ 'demo_xml': ['sale_demo.xml'], 'installable': True, 'active': False, - 'certificate': '58103601429', + 'certificate': '0058103601429', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_analytic_plans/__terp__.py b/addons/sale_analytic_plans/__terp__.py index 09583f59f11..6e3dcc13120 100644 --- a/addons/sale_analytic_plans/__terp__.py +++ b/addons/sale_analytic_plans/__terp__.py @@ -36,6 +36,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '66055860861', + 'certificate': '0066055860861', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_crm/__terp__.py b/addons/sale_crm/__terp__.py index e950030db95..a3d44af6e4b 100644 --- a/addons/sale_crm/__terp__.py +++ b/addons/sale_crm/__terp__.py @@ -46,6 +46,6 @@ crm_configuration modules. 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '64360130141', + 'certificate': '0064360130141', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_delivery_report/__terp__.py b/addons/sale_delivery_report/__terp__.py index 32084e730eb..63feb917531 100644 --- a/addons/sale_delivery_report/__terp__.py +++ b/addons/sale_delivery_report/__terp__.py @@ -35,6 +35,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '803459507494914221', + 'certificate': '00803459507494914221', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale_journal/__terp__.py b/addons/sale_journal/__terp__.py index b03479be8b8..9f65ca73bc2 100644 --- a/addons/sale_journal/__terp__.py +++ b/addons/sale_journal/__terp__.py @@ -61,6 +61,6 @@ 'demo_xml': ['sale_journal_demo.xml'], 'installable': True, 'active': False, - 'certificate': '77661619085', + 'certificate': '0077661619085', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/scrum/__terp__.py b/addons/scrum/__terp__.py index 3915aa5e57a..c66d5da2315 100644 --- a/addons/scrum/__terp__.py +++ b/addons/scrum/__terp__.py @@ -60,6 +60,6 @@ 'demo_xml': ['scrum_demo.xml'], 'installable': True, 'active': False, - 'certificate': '84121063261', + 'certificate': '0084121063261', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock/__terp__.py b/addons/stock/__terp__.py index fff0e892b82..8fadaa1f360 100644 --- a/addons/stock/__terp__.py +++ b/addons/stock/__terp__.py @@ -59,6 +59,6 @@ Thanks to the double entry management, the inventory controlling is powerful and 'demo_xml': ['stock_demo.xml'], 'installable': True, 'active': False, - 'certificate': '55421559965', + 'certificate': '0055421559965', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock_invoice_directly/__terp__.py b/addons/stock_invoice_directly/__terp__.py index e89b1b2d56d..1f76f651c01 100644 --- a/addons/stock_invoice_directly/__terp__.py +++ b/addons/stock_invoice_directly/__terp__.py @@ -37,6 +37,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '81385081261', + 'certificate': '0081385081261', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock_location/__terp__.py b/addons/stock_location/__terp__.py index 42b9f52eeb0..f6a7803ea71 100644 --- a/addons/stock_location/__terp__.py +++ b/addons/stock_location/__terp__.py @@ -44,6 +44,6 @@ This module may be useful for different purposes: 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '46505115101', + 'certificate': '0046505115101', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/stock_no_autopicking/__terp__.py b/addons/stock_no_autopicking/__terp__.py index 31a01a2ae93..c6661258f1b 100644 --- a/addons/stock_no_autopicking/__terp__.py +++ b/addons/stock_no_autopicking/__terp__.py @@ -40,6 +40,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '75124168925', + 'certificate': '0075124168925', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/subscription/__terp__.py b/addons/subscription/__terp__.py index 97e2f7cef54..4e2ec06fe45 100644 --- a/addons/subscription/__terp__.py +++ b/addons/subscription/__terp__.py @@ -33,6 +33,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '29454782573', + 'certificate': '0029454782573', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/warning/__terp__.py b/addons/warning/__terp__.py index 09c6cdc854e..342ddfd21c2 100644 --- a/addons/warning/__terp__.py +++ b/addons/warning/__terp__.py @@ -32,6 +32,6 @@ 'demo_xml': [], 'installable': True, 'active': False, - 'certificate': '80334018749', + 'certificate': '0080334018749', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/wiki/__terp__.py b/addons/wiki/__terp__.py index 6ed97909ded..1a1844c861f 100644 --- a/addons/wiki/__terp__.py +++ b/addons/wiki/__terp__.py @@ -23,6 +23,6 @@ 'demo_xml': ['data/wiki_faq.xml'], 'installable': True, 'active': False, - 'certificate': '86363630317', + 'certificate': '0086363630317', } # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: From a66af8093660e2a4f13554dfb96b30e90000dbf9 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Wed, 4 Feb 2009 00:17:13 +0100 Subject: [PATCH 9/9] [FIX] Set a domain on the parent_id to avoir a recurvise section lp bug: https://launchpad.net/bugs/324727 fixed bzr revid: stephane@tinyerp.com-20090203231713-xv3liybkzi0e00k9 --- addons/crm/crm_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/crm/crm_view.xml b/addons/crm/crm_view.xml index 103682624b9..feb9fd79d23 100644 --- a/addons/crm/crm_view.xml +++ b/addons/crm/crm_view.xml @@ -34,7 +34,7 @@ - +