[MOVE] account: moved account/project files to analytic or account, depending on...
authorcod-odoo <cod@openerp.com>
Wed, 25 Jun 2014 06:07:30 +0000 (11:37 +0530)
committerThibault Delavallée <tde@openerp.com>
Mon, 4 Aug 2014 11:23:46 +0000 (13:23 +0200)
commita301b4c7fc667a99a65961c1a756eca6d6b87238
tree50d86e3ce312cdfe719c5377dc588738dde9c31a
parent407cb2292471c1dd11380c503ac2cec6999816b8
[MOVE] account: moved account/project files to analytic or account, depending on which module the moved code belongs to. This allows to remove references to project in account module. Also added some improvements in project when deleting a project (delete account if void) or when deleting an account (delete project if void).
119 files changed:
addons/account/__init__.py
addons/account/__openerp__.py
addons/account/account.py
addons/account/account_analytic_line.py
addons/account/account_analytic_view.xml [new file with mode: 0644]
addons/account/demo/account_minimal.xml
addons/account/partner_view.xml
addons/account/project/__init__.py [deleted file]
addons/account/project/analytic_account_demo.xml [deleted file]
addons/account/project/project.py [deleted file]
addons/account/project/project_demo.xml [deleted file]
addons/account/project/project_report.xml [deleted file]
addons/account/project/project_view.xml [deleted file]
addons/account/project/report/__init__.py [deleted file]
addons/account/project/report/analytic_balance.py [deleted file]
addons/account/project/report/analytic_journal.py [deleted file]
addons/account/project/report/cost_ledger.py [deleted file]
addons/account/project/report/inverted_analytic_balance.py [deleted file]
addons/account/project/report/quantity_cost_ledger.py [deleted file]
addons/account/project/views/report_analyticbalance.xml [deleted file]
addons/account/project/views/report_analyticcostledger.xml [deleted file]
addons/account/project/views/report_analyticcostledgerquantity.xml [deleted file]
addons/account/project/views/report_analyticjournal.xml [deleted file]
addons/account/project/views/report_invertedanalyticbalance.xml [deleted file]
addons/account/project/wizard/__init__.py [deleted file]
addons/account/project/wizard/account_analytic_balance_report.py [deleted file]
addons/account/project/wizard/account_analytic_balance_report_view.xml [deleted file]
addons/account/project/wizard/account_analytic_chart.py [deleted file]
addons/account/project/wizard/account_analytic_chart_view.xml [deleted file]
addons/account/project/wizard/account_analytic_cost_ledger_for_journal_report.py [deleted file]
addons/account/project/wizard/account_analytic_cost_ledger_for_journal_report_view.xml [deleted file]
addons/account/project/wizard/account_analytic_cost_ledger_report.py [deleted file]
addons/account/project/wizard/account_analytic_cost_ledger_view.xml [deleted file]
addons/account/project/wizard/account_analytic_inverted_balance_report.py [deleted file]
addons/account/project/wizard/account_analytic_inverted_balance_report.xml [deleted file]
addons/account/project/wizard/account_analytic_journal_report.py [deleted file]
addons/account/project/wizard/account_analytic_journal_report_view.xml [deleted file]
addons/account/project/wizard/project_account_analytic_line.py [deleted file]
addons/account/project/wizard/project_account_analytic_line_view.xml [deleted file]
addons/account/report/account_analytic_entries_report.py
addons/account/report/account_analytic_entries_report_view.xml
addons/account/security/account_security.xml
addons/account/security/ir.model.access.csv
addons/account/test/account_fiscalyear_close.yml
addons/account/test/account_report.yml
addons/account_analytic_analysis/account_analytic_analysis_view.xml
addons/account_analytic_analysis/analytic_account_demo.xml
addons/account_analytic_plans/test/acount_analytic_plans_report.yml
addons/account_budget/account_budget_demo.xml
addons/account_budget/test/account_budget.yml
addons/account_budget/test/account_budget_report.yml
addons/account_voucher/test/case1_usd_usd.yml
addons/account_voucher/test/case1_usd_usd_payment_rate.yml
addons/account_voucher/test/case2_usd_eur_debtor_in_eur.yml
addons/account_voucher/test/case2_usd_eur_debtor_in_usd.yml
addons/account_voucher/test/case3_eur_eur.yml
addons/account_voucher/test/case4_cad_chf.yml
addons/account_voucher/test/case5_suppl_usd_usd.yml
addons/account_voucher/test/case_eur_usd.yml
addons/analytic/__init__.py
addons/analytic/__openerp__.py
addons/analytic/analytic.py [deleted file]
addons/analytic/analytic_data.xml [deleted file]
addons/analytic/analytic_report.xml [new file with mode: 0644]
addons/analytic/analytic_sequence.xml [deleted file]
addons/analytic/analytic_view.xml [deleted file]
addons/analytic/data/analytic_account_demo.xml [new file with mode: 0644]
addons/analytic/data/analytic_data.xml [new file with mode: 0644]
addons/analytic/data/analytic_demo.xml [new file with mode: 0644]
addons/analytic/data/analytic_sequence.xml [new file with mode: 0644]
addons/analytic/models/__init__.py [new file with mode: 0644]
addons/analytic/models/analytic.py [new file with mode: 0644]
addons/analytic/report/__init__.py [new file with mode: 0644]
addons/analytic/report/analytic_balance.py [new file with mode: 0644]
addons/analytic/report/analytic_cost_ledger.py [new file with mode: 0644]
addons/analytic/report/analytic_inverted_balance.py [new file with mode: 0644]
addons/analytic/report/analytic_journal.py [new file with mode: 0644]
addons/analytic/report/analytic_quantity_cost_ledger.py [new file with mode: 0644]
addons/analytic/security/analytic_security.xml
addons/analytic/views/analytic_view.xml [new file with mode: 0644]
addons/analytic/views/report_analyticbalance.xml [new file with mode: 0644]
addons/analytic/views/report_analyticcostledger.xml [new file with mode: 0644]
addons/analytic/views/report_analyticcostledgerquantity.xml [new file with mode: 0644]
addons/analytic/views/report_analyticjournal.xml [new file with mode: 0644]
addons/analytic/views/report_invertedanalyticbalance.xml [new file with mode: 0644]
addons/analytic/wizard/__init__.py [new file with mode: 0644]
addons/analytic/wizard/account_analytic_balance_report.py [new file with mode: 0644]
addons/analytic/wizard/account_analytic_balance_report_view.xml [new file with mode: 0644]
addons/analytic/wizard/account_analytic_chart.py [new file with mode: 0644]
addons/analytic/wizard/account_analytic_chart_view.xml [new file with mode: 0644]
addons/analytic/wizard/account_analytic_cost_ledger_for_journal_report.py [new file with mode: 0644]
addons/analytic/wizard/account_analytic_cost_ledger_for_journal_report_view.xml [new file with mode: 0644]
addons/analytic/wizard/account_analytic_cost_ledger_report.py [new file with mode: 0644]
addons/analytic/wizard/account_analytic_cost_ledger_view.xml [new file with mode: 0644]
addons/analytic/wizard/account_analytic_inverted_balance_report.py [new file with mode: 0644]
addons/analytic/wizard/account_analytic_inverted_balance_report.xml [new file with mode: 0644]
addons/analytic/wizard/account_analytic_journal_report.py [new file with mode: 0644]
addons/analytic/wizard/account_analytic_journal_report_view.xml [new file with mode: 0644]
addons/hr_expense/hr_expense.py
addons/hr_expense/hr_expense_demo.xml
addons/hr_expense/hr_expense_view.xml
addons/hr_expense/hr_expense_workflow.xml
addons/hr_expense/security/ir.model.access.csv
addons/hr_timesheet/hr_timesheet_demo.xml
addons/hr_timesheet/security/ir.model.access.csv
addons/hr_timesheet/test/hr_timesheet_demo.yml
addons/hr_timesheet/test/test_hr_timesheet.yml
addons/hr_timesheet_invoice/hr_timesheet_invoice_demo.xml
addons/hr_timesheet_invoice/hr_timesheet_invoice_view.xml
addons/hr_timesheet_invoice/report/hr_timesheet_invoice_report.py
addons/hr_timesheet_invoice/test/test_hr_timesheet_invoice.yml
addons/hr_timesheet_invoice/test/test_hr_timesheet_invoice_no_prod_tax.yml
addons/hr_timesheet_sheet/test/test_hr_timesheet_sheet.yml
addons/mrp/security/ir.model.access.csv
addons/multi_company/multi_company_demo.xml
addons/project/project.py
addons/project_issue/project_issue.py
addons/project_issue_sheet/security/ir.model.access.csv
addons/project_timesheet/project_timesheet_view.xml