diff --git a/export_stockinfo_xls/README.rst b/export_stockinfo_xls/README.rst new file mode 100644 index 000000000..6e8d39914 --- /dev/null +++ b/export_stockinfo_xls/README.rst @@ -0,0 +1,17 @@ +================================ +Export Product Stock in Excel v8 +================================ +This module helps you to take current stock report for all products in each warehouse. + +Installation +============ +Just select it from available modules to install it, +there is no need to extra installations. + +Credits +======= +Developer: Jesni Banu @ cybrosys, jesni@cybrosys.in +Developer: Nilmar Shereef @ cybrosys, shereef@cybrosys.in + + + diff --git a/export_stockinfo_xls/__init__.py b/export_stockinfo_xls/__init__.py index 5d1caed4a..3fda4e9d9 100644 --- a/export_stockinfo_xls/__init__.py +++ b/export_stockinfo_xls/__init__.py @@ -1,2 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2009-TODAY Cybrosys Technologies(). +# Author: Jesni Banu() +# you can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +# +# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################### import report import models + diff --git a/export_stockinfo_xls/__openerp__.py b/export_stockinfo_xls/__openerp__.py index 3c105b105..ae60aba00 100644 --- a/export_stockinfo_xls/__openerp__.py +++ b/export_stockinfo_xls/__openerp__.py @@ -1,9 +1,30 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2009-TODAY Cybrosys Technologies(). +# Author: Jesni Banu() +# you can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +# +# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################### { 'name': 'Export Product Stock in Excel', - 'version': '0.2', - 'category': 'Warehouse', - 'license': "AGPL-3", + 'version': '8.0.1.0.0', 'summary': "Current Stock Report for all Products in each Warehouse", + 'category': 'Warehouse', 'author': 'Cybrosys Techno Solutions', 'company': 'Cybrosys Techno Solutions', 'website': 'http://www.cybrosys.com', @@ -18,6 +39,7 @@ 'views/wizard_view.xml', ], 'images': ['static/description/banner.jpg'], + 'license': "AGPL-3", 'installable': True, 'auto_install': False, } diff --git a/export_stockinfo_xls/models/__init__.py b/export_stockinfo_xls/models/__init__.py index 857a1d9b8..df2cfd5d2 100644 --- a/export_stockinfo_xls/models/__init__.py +++ b/export_stockinfo_xls/models/__init__.py @@ -1,2 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2009-TODAY Cybrosys Technologies(). +# Author: Jesni Banu() +# you can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +# +# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################### import res_partner import wizard + diff --git a/export_stockinfo_xls/models/res_partner.py b/export_stockinfo_xls/models/res_partner.py index 139ed20b5..d9787dd2e 100644 --- a/export_stockinfo_xls/models/res_partner.py +++ b/export_stockinfo_xls/models/res_partner.py @@ -1,3 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2009-TODAY Cybrosys Technologies(). +# Author: Jesni Banu() +# you can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +# +# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################### from openerp import models, fields diff --git a/export_stockinfo_xls/models/wizard.py b/export_stockinfo_xls/models/wizard.py index a532994c6..fa81a0b74 100644 --- a/export_stockinfo_xls/models/wizard.py +++ b/export_stockinfo_xls/models/wizard.py @@ -1,3 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2009-TODAY Cybrosys Technologies(). +# Author: Jesni Banu() +# you can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +# +# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################### from openerp import models, fields, api diff --git a/export_stockinfo_xls/report/__init__.py b/export_stockinfo_xls/report/__init__.py index a017abea4..56430f71c 100644 --- a/export_stockinfo_xls/report/__init__.py +++ b/export_stockinfo_xls/report/__init__.py @@ -1,2 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2009-TODAY Cybrosys Technologies(). +# Author: Jesni Banu() +# you can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +# +# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################### import current_stock_xls diff --git a/export_stockinfo_xls/report/current_stock_xls.py b/export_stockinfo_xls/report/current_stock_xls.py index 637e37f04..5b4f62d67 100644 --- a/export_stockinfo_xls/report/current_stock_xls.py +++ b/export_stockinfo_xls/report/current_stock_xls.py @@ -1,5 +1,27 @@ -from openerp.addons.report_xlsx.report.report_xlsx import ReportXlsx +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2009-TODAY Cybrosys Technologies(). +# Author: Jesni Banu() +# you can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# It is forbidden to publish, distribute, sublicense, or sell copies +# of the Software or modified copies of the Software. +# +# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. +# If not, see . +# +############################################################################### import datetime +from openerp.addons.report_xlsx.report.report_xlsx import ReportXlsx class StockReportXls(ReportXlsx): diff --git a/export_stockinfo_xls/static/description/cybro_logo.png b/export_stockinfo_xls/static/description/cybro_logo.png new file mode 100644 index 000000000..bb309114c Binary files /dev/null and b/export_stockinfo_xls/static/description/cybro_logo.png differ diff --git a/export_stockinfo_xls/static/description/index.html b/export_stockinfo_xls/static/description/index.html index 60a65bfdb..f06860fb4 100644 --- a/export_stockinfo_xls/static/description/index.html +++ b/export_stockinfo_xls/static/description/index.html @@ -2,7 +2,7 @@

Current Stock XLS

Current Stock Report for all Products in each Warehouse

-

Author : Cybrosys Techno Solutions , www.cybrosys.com

+

Cybrosys Technologies

@@ -59,18 +59,29 @@
-

Need Any Help?

- +

Need Any Help?

+