From 88eee17c3021dd6869ceb720f96443d3cb64eb3e Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Mon, 9 May 2011 11:28:55 +0200 Subject: [PATCH] [FIX] account_asset: wrong place of files bzr revid: qdp-launchpad@openerp.com-20110509092855-w9lp6dvk0ogymuxy --- addons/account/__openerp__.py | 1 - addons/account/report/__init__.py | 1 - addons/account_asset/__terp__.py | 1 + addons/account_asset/report/__init__.py | 24 +++++++++++++++++++ .../report/account_asset_report.py | 0 .../report/account_asset_report_view.xml | 0 6 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 addons/account_asset/report/__init__.py rename addons/{account => account_asset}/report/account_asset_report.py (100%) rename addons/{account => account_asset}/report/account_asset_report_view.xml (100%) diff --git a/addons/account/__openerp__.py b/addons/account/__openerp__.py index ea1c0804dba..3b04713a1bb 100644 --- a/addons/account/__openerp__.py +++ b/addons/account/__openerp__.py @@ -60,7 +60,6 @@ module named account_voucher. 'report/account_invoice_report_view.xml', 'report/account_entries_report_view.xml', 'report/account_report_view.xml', - 'report/account_asset_report_view.xml', 'report/account_analytic_entries_report_view.xml', 'wizard/account_move_bank_reconcile_view.xml', 'wizard/account_use_model_view.xml', diff --git a/addons/account/report/__init__.py b/addons/account/report/__init__.py index df04263823e..9687d9eaaec 100644 --- a/addons/account/report/__init__.py +++ b/addons/account/report/__init__.py @@ -41,6 +41,5 @@ import account_entries_report import account_analytic_entries_report import account_balance_sheet import account_profit_loss -import account_asset_report # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/account_asset/__terp__.py b/addons/account_asset/__terp__.py index b8c3fd8b0f7..4072ef1e566 100755 --- a/addons/account_asset/__terp__.py +++ b/addons/account_asset/__terp__.py @@ -42,6 +42,7 @@ "account_asset_view.xml", "account_asset_invoice_view.xml", "account_asset_report_view.xml", + "report/account_asset_report.xml", #modif ], # "translations" : { diff --git a/addons/account_asset/report/__init__.py b/addons/account_asset/report/__init__.py new file mode 100644 index 00000000000..1a8d2cf459b --- /dev/null +++ b/addons/account_asset/report/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2010 Tiny SPRL (). +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +import account_asset_report +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + diff --git a/addons/account/report/account_asset_report.py b/addons/account_asset/report/account_asset_report.py similarity index 100% rename from addons/account/report/account_asset_report.py rename to addons/account_asset/report/account_asset_report.py diff --git a/addons/account/report/account_asset_report_view.xml b/addons/account_asset/report/account_asset_report_view.xml similarity index 100% rename from addons/account/report/account_asset_report_view.xml rename to addons/account_asset/report/account_asset_report_view.xml