diff --git a/export_stockinfo_xls/__init__.py b/export_stockinfo_xls/__init__.py new file mode 100644 index 000000000..5d1caed4a --- /dev/null +++ b/export_stockinfo_xls/__init__.py @@ -0,0 +1,2 @@ +import report +import models diff --git a/export_stockinfo_xls/__manifest__.py b/export_stockinfo_xls/__manifest__.py new file mode 100644 index 000000000..e8e80d3df --- /dev/null +++ b/export_stockinfo_xls/__manifest__.py @@ -0,0 +1,22 @@ +{ + 'name': 'Export Product Stock in Excel', + 'version': '0.2', + 'category': 'Inventory', + 'license': "AGPL-3", + 'summary': "Current Stock Report for all Products in each Warehouse", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': 'http://www.cybrosys.com', + 'depends': [ + 'base', + 'stock', + 'sale', + 'purchase', + 'report_xlsx' + ], + 'data': [ + 'views/wizard_view.xml', + ], + 'installable': True, + 'auto_install': False, +} diff --git a/export_stockinfo_xls/models/__init__.py b/export_stockinfo_xls/models/__init__.py new file mode 100644 index 000000000..857a1d9b8 --- /dev/null +++ b/export_stockinfo_xls/models/__init__.py @@ -0,0 +1,2 @@ +import res_partner +import wizard diff --git a/export_stockinfo_xls/models/res_partner.py b/export_stockinfo_xls/models/res_partner.py new file mode 100644 index 000000000..139ed20b5 --- /dev/null +++ b/export_stockinfo_xls/models/res_partner.py @@ -0,0 +1,24 @@ +from openerp import models, fields + + +class Partner(models.Model): + _inherit = 'res.partner' + + supplier_id = fields.Many2many('wizard.stock.history', 'supp_wiz_rel', 'wiz', 'supp', invisible=True) + + +class Category(models.Model): + _inherit = 'product.category' + + obj = fields.Many2many('wizard.stock.history', 'categ_wiz_rel', 'wiz', 'categ', invisible=True) + + +class Warehouse(models.Model): + _inherit = 'stock.warehouse' + + obj = fields.Many2many('wizard.stock.history', 'wh_wiz_rel', 'wiz', 'wh', invisible=True) + + + + + diff --git a/export_stockinfo_xls/models/wizard.py b/export_stockinfo_xls/models/wizard.py new file mode 100644 index 000000000..a532994c6 --- /dev/null +++ b/export_stockinfo_xls/models/wizard.py @@ -0,0 +1,25 @@ +from openerp import models, fields, api + + +class StockReport(models.TransientModel): + _name = "wizard.stock.history" + _description = "Current Stock History" + + warehouse = fields.Many2many('stock.warehouse', 'wh_wiz_rel', 'wh', 'wiz', string='Warehouse', required=True) + category = fields.Many2many('product.category', 'categ_wiz_rel', 'categ', 'wiz', string='Warehouse') + + @api.multi + def export_xls(self): + context = self._context + datas = {'ids': context.get('active_ids', [])} + datas['model'] = 'product.product' + datas['form'] = self.read()[0] + for field in datas['form'].keys(): + if isinstance(datas['form'][field], tuple): + datas['form'][field] = datas['form'][field][0] + if context.get('xls_export'): + return {'type': 'ir.actions.report.xml', + 'report_name': 'export_stockinfo_xls.stock_report_xls.xlsx', + 'datas': datas, + 'name': 'Current Stock' + } diff --git a/export_stockinfo_xls/report/__init__.py b/export_stockinfo_xls/report/__init__.py new file mode 100644 index 000000000..a017abea4 --- /dev/null +++ b/export_stockinfo_xls/report/__init__.py @@ -0,0 +1,2 @@ +import current_stock_xls + diff --git a/export_stockinfo_xls/report/current_stock_xls.py b/export_stockinfo_xls/report/current_stock_xls.py new file mode 100644 index 000000000..39ea82b99 --- /dev/null +++ b/export_stockinfo_xls/report/current_stock_xls.py @@ -0,0 +1,161 @@ +from odoo.addons.report_xlsx.report.report_xlsx import ReportXlsx +import datetime + + +class StockReportXls(ReportXlsx): + + def get_warehouse(self, data): + if data.get('form', False) and data['form'].get('warehouse', False): + l1 = [] + l2 = [] + obj = self.env['stock.warehouse'].search([('id', 'in', data['form']['warehouse'])]) + for j in obj: + l1.append(j.name) + l2.append(j.id) + return l1, l2 + + def get_category(self, data): + if data.get('form', False) and data['form'].get('category', False): + l2 = [] + obj = self.env['product.category'].search([('id', 'in', data['form']['category'])]) + for j in obj: + l2.append(j.id) + return l2 + return '' + + def get_lines(self, data, warehouse): + lines = [] + categ = self.get_category(data) + if categ: + stock_history = self.env['product.product'].search([('categ_id', 'in', categ)]) + else: + stock_history = self.env['product.product'].search([]) + for obj in stock_history: + sale_value = 0 + purchase_value = 0 + product = self.env['product.product'].browse(obj.id) + sale_obj = self.env['sale.order.line'].search([('order_id.state', '=', 'done'), + ('product_id', '=', product.id), + ('order_id.warehouse_id', '=', warehouse)]) + for i in sale_obj: + sale_value = sale_value + i.product_uom_qty + purchase_obj = self.env['purchase.order.line'].search([('order_id.state', '=', 'done'), + ('product_id', '=', product.id), + ('order_id.picking_type_id', '=', warehouse)]) + for i in purchase_obj: + purchase_value = purchase_value + i.product_qty + available_qty = product.with_context({'warehouse': warehouse}).virtual_available + \ + product.with_context({'warehouse': warehouse}).outgoing_qty - \ + product.with_context({'warehouse': warehouse}).incoming_qty + value = available_qty * product.standard_price + vals = { + 'sku': product.default_code, + 'name': product.name, + 'category': product.categ_id.name, + 'cost_price': product.standard_price, + 'available': available_qty, + 'virtual': product.with_context({'warehouse': warehouse}).virtual_available, + 'incoming': product.with_context({'warehouse': warehouse}).incoming_qty, + 'outgoing': product.with_context({'warehouse': warehouse}).outgoing_qty, + 'net_on_hand': product.with_context({'warehouse': warehouse}).qty_available, + 'total_value': value, + 'sale_value': sale_value, + 'purchase_value': purchase_value, + } + lines.append(vals) + return lines + + def generate_xlsx_report(self, workbook, data, lines): + get_warehouse = self.get_warehouse(data) + count = len(get_warehouse[0]) * 11 + 6 + sheet = workbook.add_worksheet() + format1 = workbook.add_format({'font_size': 14, 'bottom': True, 'right': True, 'left': True, 'top': True, 'align': 'vcenter', 'bold': True}) + format11 = workbook.add_format({'font_size': 12, 'align': 'center', 'right': True, 'left': True, 'bottom': True, 'top': True, 'bold': True}) + format21 = workbook.add_format({'font_size': 10, 'align': 'center', 'right': True, 'left': True,'bottom': True, 'top': True, 'bold': True}) + format3 = workbook.add_format({'bottom': True, 'top': True, 'font_size': 12}) + font_size_8 = workbook.add_format({'bottom': True, 'top': True, 'right': True, 'left': True, 'font_size': 8}) + red_mark = workbook.add_format({'bottom': True, 'top': True, 'right': True, 'left': True, 'font_size': 8, + 'bg_color': 'red'}) + justify = workbook.add_format({'bottom': True, 'top': True, 'right': True, 'left': True, 'font_size': 12}) + format3.set_align('center') + font_size_8.set_align('center') + justify.set_align('justify') + format1.set_align('center') + red_mark.set_align('center') + sheet.merge_range('A3:G3', 'Report Date: ' + str(datetime.datetime.now().strftime("%Y-%m-%d %H:%M %p")), format1) + sheet.merge_range(2, 7, 2, count, 'Warehouses', format1) + sheet.merge_range('A4:G4', 'Product Information', format11) + w_col_no = 6 + w_col_no1 = 7 + for i in get_warehouse[0]: + w_col_no = w_col_no + 11 + sheet.merge_range(3, w_col_no1, 3, w_col_no, i, format11) + w_col_no1 = w_col_no1 + 11 + sheet.write(4, 0, 'SKU', format21) + sheet.merge_range(4, 1, 4, 3, 'Name', format21) + sheet.merge_range(4, 4, 4, 5, 'Category', format21) + sheet.write(4, 6, 'Cost Price', format21) + p_col_no1 = 7 + for i in get_warehouse[0]: + sheet.write(4, p_col_no1, 'Available', format21) + sheet.write(4, p_col_no1 + 1, 'Virtual', format21) + sheet.write(4, p_col_no1 + 2, 'Incoming', format21) + sheet.write(4, p_col_no1 + 3, 'Outgoing', format21) + sheet.merge_range(4, p_col_no1 + 4, 4, p_col_no1 + 5, 'Net On Hand', format21) + sheet.merge_range(4, p_col_no1 + 6, 4, p_col_no1 + 7, 'Total Sold', format21) + sheet.merge_range(4, p_col_no1 + 8, 4, p_col_no1 + 9, 'Total Purchased', format21) + sheet.write(4, p_col_no1 + 10, 'Valuation', format21) + p_col_no1 = p_col_no1 + 11 + prod_row = 5 + prod_col = 0 + for i in get_warehouse[1]: + get_line = self.get_lines(data, i) + for each in get_line: + sheet.write(prod_row, prod_col, each['sku'], font_size_8) + sheet.merge_range(prod_row, prod_col + 1, prod_row, prod_col + 3, each['name'], font_size_8) + sheet.merge_range(prod_row, prod_col + 4, prod_row, prod_col + 5, each['category'], font_size_8) + sheet.write(prod_row, prod_col + 6, each['cost_price'], font_size_8) + prod_row = prod_row + 1 + break + prod_row = 5 + prod_col = 7 + for i in get_warehouse[1]: + get_line = self.get_lines(data, i) + for each in get_line: + if each['available'] < 0: + sheet.write(prod_row, prod_col, each['available'], red_mark) + else: + sheet.write(prod_row, prod_col, each['available'], font_size_8) + if each['virtual'] < 0: + sheet.write(prod_row, prod_col + 1, each['virtual'], red_mark) + else: + sheet.write(prod_row, prod_col + 1, each['virtual'], font_size_8) + if each['incoming'] < 0: + sheet.write(prod_row, prod_col + 2, each['incoming'], red_mark) + else: + sheet.write(prod_row, prod_col + 2, each['incoming'], font_size_8) + if each['outgoing'] < 0: + sheet.write(prod_row, prod_col + 3, each['outgoing'], red_mark) + else: + sheet.write(prod_row, prod_col + 3, each['outgoing'], font_size_8) + if each['net_on_hand'] < 0: + sheet.merge_range(prod_row, prod_col + 4, prod_row, prod_col + 5, each['net_on_hand'], red_mark) + else: + sheet.merge_range(prod_row, prod_col + 4, prod_row, prod_col + 5, each['net_on_hand'], font_size_8) + if each['sale_value'] < 0: + sheet.merge_range(prod_row, prod_col + 6, prod_row, prod_col + 7, each['sale_value'], red_mark) + else: + sheet.merge_range(prod_row, prod_col + 6, prod_row, prod_col + 7, each['sale_value'], font_size_8) + if each['purchase_value'] < 0: + sheet.merge_range(prod_row, prod_col + 8, prod_row, prod_col + 9, each['purchase_value'], red_mark) + else: + sheet.merge_range(prod_row, prod_col + 8, prod_row, prod_col + 9, each['purchase_value'], font_size_8) + if each['total_value'] < 0: + sheet.write(prod_row, prod_col + 10, each['total_value'], red_mark) + else: + sheet.write(prod_row, prod_col + 10, each['total_value'], font_size_8) + prod_row = prod_row + 1 + prod_row = 5 + prod_col = prod_col + 11 + +StockReportXls('report.export_stockinfo_xls.stock_report_xls.xlsx', 'product.product') diff --git a/export_stockinfo_xls/static/description/icon.png b/export_stockinfo_xls/static/description/icon.png new file mode 100644 index 000000000..a14eba82a Binary files /dev/null and b/export_stockinfo_xls/static/description/icon.png differ diff --git a/export_stockinfo_xls/static/description/image1.png b/export_stockinfo_xls/static/description/image1.png new file mode 100644 index 000000000..21561b631 Binary files /dev/null and b/export_stockinfo_xls/static/description/image1.png differ diff --git a/export_stockinfo_xls/static/description/image2.png b/export_stockinfo_xls/static/description/image2.png new file mode 100644 index 000000000..33ad12b3d Binary files /dev/null and b/export_stockinfo_xls/static/description/image2.png differ diff --git a/export_stockinfo_xls/static/description/image3.png b/export_stockinfo_xls/static/description/image3.png new file mode 100644 index 000000000..2e69296e0 Binary files /dev/null and b/export_stockinfo_xls/static/description/image3.png differ diff --git a/export_stockinfo_xls/static/description/index.html b/export_stockinfo_xls/static/description/index.html new file mode 100644 index 000000000..1b07f9d91 --- /dev/null +++ b/export_stockinfo_xls/static/description/index.html @@ -0,0 +1,77 @@ +
+
+

Current Stock XLS

+

Current Stock Report for all Products in each Warehouse

+

Author : Cybrosys Techno Solutions , www.cybrosys.com

+
+
+
+ This module helps to print Current Stock Report for all Products in each Warehouse with XLS. +
+
+
+
+ ☛ Installation : To install this module, you need also the report_xlsx module. +
+
+
+
+
+ +
+
+
+

+ Go to Inventory -> Reports -> Current stock in Excel. Now a wizard will appear on your screen. + Please enter the warehouses which you want to take the report. You can also select category for products(It is Optional). + Then Click "Export Product with Stock Info" button. Then You will get the corresponding report in XLS. +

+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+

+ Per warehouse you can get Available Qty, Virtual Qty, Incoming Qty, Outgoing Qty, Net On Hand Qty, + Total Sold & Total Purchased Qty. You can get your stock valuation details too. In below screen-shot you + can see stock details of 2 warehouse exported in single spreadsheet. Negative stock will be highlighted + in "red" cells. +

+
+
+
+ +
+
+
+
+ +
+

Need Any Help?

+
+ Email Contact Us Request Customization +
+
+ + + diff --git a/export_stockinfo_xls/views/wizard_view.xml b/export_stockinfo_xls/views/wizard_view.xml new file mode 100644 index 000000000..1f71bb463 --- /dev/null +++ b/export_stockinfo_xls/views/wizard_view.xml @@ -0,0 +1,50 @@ + + + + + wizard.stock.history.form + wizard.stock.history + +
+ + + + + + + + + + + + +
+
+
+
+
+ + Export product stock in Excel + wizard.stock.history + form + form + + new + + + +
+
\ No newline at end of file diff --git a/report_xlsx/README.rst b/report_xlsx/README.rst new file mode 100644 index 000000000..cc6b663df --- /dev/null +++ b/report_xlsx/README.rst @@ -0,0 +1,55 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +================ +Base report xlsx +================ + +This module provides a basic report class to generate xlsx report. + +Installation +============ + +Make sure you have ``xlsxwriter`` Python module installed:: + +$ pip install xlsxwriter + +Usage +===== + +An example of XLSX report for partners: + +A python class :: + + from openerp.addons.report_xlsx.report.report_xlsx import ReportXlsx + + class PartnerXlsx(ReportXlsx): + + def generate_xlsx_report(self, workbook, data, partners): + for obj in partners: + report_name = obj.name + # One sheet by partner + sheet = workbook.add_worksheet(report_name[:31]) + bold = workbook.add_format({'bold': True}) + sheet.write(0, 0, obj.name, bold) + + + PartnerXlsx('report.res.partner.xlsx', + 'res.partner') + +To manipulate the ``workbook`` and ``sheet`` objects, refer to the +`documentation `_ of ``xlsxwriter``. + +A report XML record :: + + + diff --git a/report_xlsx/__init__.py b/report_xlsx/__init__.py new file mode 100644 index 000000000..bf588bc8b --- /dev/null +++ b/report_xlsx/__init__.py @@ -0,0 +1,2 @@ +from . import models +from . import report diff --git a/report_xlsx/__manifest__.py b/report_xlsx/__manifest__.py new file mode 100644 index 000000000..5825521d6 --- /dev/null +++ b/report_xlsx/__manifest__.py @@ -0,0 +1,15 @@ +{ + 'name': "Base report xlsx", + 'summary': """ + Simple upgradation of v9 OCA module 'report_xlsx' to v10""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': 'http://www.cybrosys.com', + 'category': 'Reporting', + 'version': '0.2', + 'license': 'AGPL-3', + 'external_dependencies': {'python': ['xlsxwriter']}, + 'depends': [ + 'base', + ], +} diff --git a/report_xlsx/models/__init__.py b/report_xlsx/models/__init__.py new file mode 100644 index 000000000..54dbf3df6 --- /dev/null +++ b/report_xlsx/models/__init__.py @@ -0,0 +1 @@ +from . import ir_report diff --git a/report_xlsx/models/ir_report.py b/report_xlsx/models/ir_report.py new file mode 100644 index 000000000..d3cfa9614 --- /dev/null +++ b/report_xlsx/models/ir_report.py @@ -0,0 +1,7 @@ +from openerp import fields, models + + +class IrActionsReportXml(models.Model): + _inherit = 'ir.actions.report.xml' + + report_type = fields.Selection(selection_add=[("xlsx", "xlsx")]) diff --git a/report_xlsx/report/__init__.py b/report_xlsx/report/__init__.py new file mode 100644 index 000000000..1869fc3e4 --- /dev/null +++ b/report_xlsx/report/__init__.py @@ -0,0 +1 @@ +from . import report_xlsx diff --git a/report_xlsx/report/report_xlsx.py b/report_xlsx/report/report_xlsx.py new file mode 100644 index 000000000..75af77ed1 --- /dev/null +++ b/report_xlsx/report/report_xlsx.py @@ -0,0 +1,41 @@ +from cStringIO import StringIO + +from openerp.report.report_sxw import report_sxw +from openerp.api import Environment + +import logging +_logger = logging.getLogger(__name__) + +try: + import xlsxwriter +except ImportError: + _logger.debug('Can not import xlsxwriter`.') + + +class ReportXlsx(report_sxw): + + def create(self, cr, uid, ids, data, context=None): + self.env = Environment(cr, uid, context) + report_obj = self.env['ir.actions.report.xml'] + report = report_obj.search([('report_name', '=', self.name[7:])]) + if report.ids: + self.title = report.name + if report.report_type == 'xlsx': + return self.create_xlsx_report(ids, data, report) + return super(ReportXlsx, self).create(cr, uid, ids, data, context) + + def create_xlsx_report(self, ids, data, report): + self.parser_instance = self.parser( + self.env.cr, self.env.uid, self.name2, self.env.context) + objs = self.getObjects( + self.env.cr, self.env.uid, ids, self.env.context) + self.parser_instance.set_context(objs, data, ids, 'xlsx') + file_data = StringIO() + workbook = xlsxwriter.Workbook(file_data) + self.generate_xlsx_report(workbook, data, objs) + workbook.close() + file_data.seek(0) + return (file_data.read(), 'xlsx') + + def generate_xlsx_report(self, workbook, data, objs): + raise NotImplementedError() diff --git a/report_xlsx/static/description/icon.png b/report_xlsx/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/report_xlsx/static/description/icon.png differ