diff --git a/addons/sale_stock/__init__.py b/addons/sale_stock/__init__.py index 9c74739d4c9..f521debcea5 100644 --- a/addons/sale_stock/__init__.py +++ b/addons/sale_stock/__init__.py @@ -24,5 +24,4 @@ import stock import report import company import res_config -import wizard diff --git a/addons/sale_stock/__openerp__.py b/addons/sale_stock/__openerp__.py index b1686bebb20..059c5a59c1d 100644 --- a/addons/sale_stock/__openerp__.py +++ b/addons/sale_stock/__openerp__.py @@ -51,7 +51,6 @@ You can choose flexible invoicing methods: 'security/sale_stock_security.xml', 'security/ir.model.access.csv', 'company_view.xml', - 'wizard/stock_invoice_onshipping_view.xml', 'sale_stock_view.xml', 'sale_stock_workflow.xml', 'stock_view.xml', diff --git a/addons/sale_stock/wizard/__init__.py b/addons/sale_stock/wizard/__init__.py deleted file mode 100644 index e32a95fef96..00000000000 --- a/addons/sale_stock/wizard/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- 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 stock_invoice_onshipping diff --git a/addons/stock_account/__openerp__.py b/addons/stock_account/__openerp__.py index 93ffe4006ec..6a22e327bb1 100644 --- a/addons/stock_account/__openerp__.py +++ b/addons/stock_account/__openerp__.py @@ -49,6 +49,7 @@ Dashboard / Reports for Warehouse Management will include: 'data': [ 'stock_account_data.xml', 'wizard/stock_change_standard_price_view.xml', + 'wizard/stock_invoice_onshipping_view.xml', 'product_data.xml', 'product_view.xml', 'stock_account_view.xml', diff --git a/addons/stock_account/wizard/__init__.py b/addons/stock_account/wizard/__init__.py index ecb883ed6fb..001a39e763e 100644 --- a/addons/stock_account/wizard/__init__.py +++ b/addons/stock_account/wizard/__init__.py @@ -20,3 +20,4 @@ ############################################################################## import stock_change_standard_price +import stock_invoice_onshipping diff --git a/addons/sale_stock/wizard/stock_invoice_onshipping.py b/addons/stock_account/wizard/stock_invoice_onshipping.py similarity index 100% rename from addons/sale_stock/wizard/stock_invoice_onshipping.py rename to addons/stock_account/wizard/stock_invoice_onshipping.py diff --git a/addons/sale_stock/wizard/stock_invoice_onshipping_view.xml b/addons/stock_account/wizard/stock_invoice_onshipping_view.xml similarity index 100% rename from addons/sale_stock/wizard/stock_invoice_onshipping_view.xml rename to addons/stock_account/wizard/stock_invoice_onshipping_view.xml