diff --git a/base_advanced_report_templates/README.rst b/base_advanced_report_templates/README.rst new file mode 100644 index 000000000..94f9d5bd7 --- /dev/null +++ b/base_advanced_report_templates/README.rst @@ -0,0 +1,22 @@ +====================================== +Odoo Professional Report Templates v16 +====================================== + +Odoo Professional Report Templates. + +Installation +============ +Just select it from available modules to install it, there is no need to extra installations. + +Features +======== +* Sales Custom Template. +* Purchase Custom Template. +* Account Custom Template. +* Inventory Custom Template. + +Credits +======= +Developer: gayathri@cybrosys.info + + diff --git a/base_advanced_report_templates/__init__.py b/base_advanced_report_templates/__init__.py new file mode 100644 index 000000000..66fae9566 --- /dev/null +++ b/base_advanced_report_templates/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# 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 +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from . import model diff --git a/base_advanced_report_templates/__manifest__.py b/base_advanced_report_templates/__manifest__.py new file mode 100644 index 000000000..d30f72077 --- /dev/null +++ b/base_advanced_report_templates/__manifest__.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# 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 +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Odoo Professional Report Templates', + 'version': '16.0.1.0.0', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'category': 'Technical', + 'summary': 'Odoo Professional Report Templates', + 'description': """Report Maker, Report Creator, Odoo Professional Report Templates, Report Templates, Templates, Customizable Report Template for Sale, Invoice, Delivery Order,Purchases""", + 'depends': ['base', 'sale_management', 'account', 'stock', 'purchase'], + 'data': [ + 'data/design_templates.xml', + 'security/ir.model.access.csv', + 'views/company_report_template.xml', + 'views/sale_ordeline_image.xml', + 'views/purchase_orderline_image.xml', + 'views/account_line_image.xml', + 'views/stock_move_image.xml', + 'views/custom_layouts.xml', + 'purchase_custom_reports/purchase_traditional_template.xml', + 'purchase_custom_reports/purchase_standard_template.xml', + 'purchase_custom_reports/purchase_modern_template.xml', + 'purchase_custom_reports/purchase_attractive_template.xml', + 'sale_custom_reports/sale_traditional_template.xml', + 'sale_custom_reports/sale_standrd_template.xml', + 'sale_custom_reports/sale_modern_template.xml', + 'sale_custom_reports/sale_attractive_template.xml', + 'stock_custom_template/delivery_traditional.xml', + 'stock_custom_template/delivery_standard.xml', + 'stock_custom_template/delivery_modern.xml', + 'stock_custom_template/delivery_slip_attractive.xml', + 'account_custom_templates/account_traditional.xml', + 'account_custom_templates/account_standrd_template.xml', + 'account_custom_templates/account_modern_template.xml', + 'account_custom_templates/account_attractive_template.xml', + + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/base_advanced_report_templates/account_custom_templates/account_attractive_template.xml b/base_advanced_report_templates/account_custom_templates/account_attractive_template.xml new file mode 100644 index 000000000..6f2bc1e0d --- /dev/null +++ b/base_advanced_report_templates/account_custom_templates/account_attractive_template.xml @@ -0,0 +1,355 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/account_custom_templates/account_modern_template.xml b/base_advanced_report_templates/account_custom_templates/account_modern_template.xml new file mode 100644 index 000000000..e46b74e36 --- /dev/null +++ b/base_advanced_report_templates/account_custom_templates/account_modern_template.xml @@ -0,0 +1,346 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/account_custom_templates/account_standrd_template.xml b/base_advanced_report_templates/account_custom_templates/account_standrd_template.xml new file mode 100644 index 000000000..67fe38af9 --- /dev/null +++ b/base_advanced_report_templates/account_custom_templates/account_standrd_template.xml @@ -0,0 +1,283 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/account_custom_templates/account_traditional.xml b/base_advanced_report_templates/account_custom_templates/account_traditional.xml new file mode 100644 index 000000000..a2b29f563 --- /dev/null +++ b/base_advanced_report_templates/account_custom_templates/account_traditional.xml @@ -0,0 +1,308 @@ + + + + Invoices + account.move + qweb-pdf + base_advanced_report_templates.report_invoice_custom + base_advanced_report_templates.report_invoice_custom + (object._get_report_base_filename()) + (object.state == 'posted') and ((object.name or 'INV').replace('/','_')+'.pdf') + + report + + + + + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/data/design_templates.xml b/base_advanced_report_templates/data/design_templates.xml new file mode 100644 index 000000000..24be9a0db --- /dev/null +++ b/base_advanced_report_templates/data/design_templates.xml @@ -0,0 +1,52 @@ + + + + + Modern + #732673 + #ffffff + #000000 + #000000 + right + right + left + #808080 + + + + Standard + #ff7733 + #ffffff + #000000 + #000000 + left + left + right + #808080 + + + + Traditional + #ff7733 + #ffffff + #000000 + #000000 + left + left + right + #808080 + + + + Attractive + #ff7733 + #ffffff + #000000 + #000000 + left + left + right + #808080 + + + \ No newline at end of file diff --git a/base_advanced_report_templates/doc/RELEASE_NOTES.md b/base_advanced_report_templates/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..f03eab266 --- /dev/null +++ b/base_advanced_report_templates/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 7.12.2022 +#### Version 16.0.1.0.0 +##### ADD +- Initial commit for Odoo Professional Report Templates Module diff --git a/base_advanced_report_templates/model/__init__.py b/base_advanced_report_templates/model/__init__.py new file mode 100644 index 000000000..2c5343a57 --- /dev/null +++ b/base_advanced_report_templates/model/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# 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 +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from . import company_report_template +from . import model_orderline_image +from . import document_layout diff --git a/base_advanced_report_templates/model/company_report_template.py b/base_advanced_report_templates/model/company_report_template.py new file mode 100644 index 000000000..11c43b6fb --- /dev/null +++ b/base_advanced_report_templates/model/company_report_template.py @@ -0,0 +1,236 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# 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 +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import models, fields, api + + +class CompanyTemplate(models.Model): + _inherit = 'res.company' + + sale_document_layout_id = fields.Many2one("doc.layout", + string="Sale" + ) + + purchase_document_layout_id = fields.Many2one("doc.layout", + string="Purchase" + ) + + account_document_layout_id = fields.Many2one("doc.layout", + string="Account" + ) + + stock_document_layout_id = fields.Many2one("doc.layout", + string="Stock" + ) + + +class PurchaseOrder(models.Model): + _inherit = 'purchase.order' + + theme_id = fields.Many2one('doc.layout', + related='company_id.purchase_document_layout_id') + + +class SaleOrder(models.Model): + _inherit = 'sale.order' + + customer_image = fields.Binary(string="Image", + related="partner_id.image_1920") + + theme_id = fields.Many2one('doc.layout', + related='company_id.sale_document_layout_id') + + +class Account(models.Model): + _inherit = 'account.move' + + theme_id = fields.Many2one('doc.layout', + related='company_id.account_document_layout_id') + + +class Stock(models.Model): + _inherit = 'stock.picking' + + theme_id = fields.Many2one('doc.layout', + related='company_id.stock_document_layout_id') + + +class BaseDocumentLayout(models.TransientModel): + _inherit = 'base.document.layout' + + sale_document_layout_id = fields.Many2one( + related='company_id.sale_document_layout_id', readonly=False) + + purchase_document_layout_id = fields.Many2one( + related='company_id.purchase_document_layout_id', readonly=False) + + account_document_layout_id = fields.Many2one( + related='company_id.account_document_layout_id', readonly=False) + + stock_document_layout_id = fields.Many2one( + related='company_id.stock_document_layout_id', readonly=False) + + watermark = fields.Boolean(string='Watermark') + + watermark_show = fields.Selection([ + ('logo', 'Company Logo'), + ('name', 'Company Name'), + ], default='logo', string="Watermark Show") + + @api.depends('report_layout_id', 'logo', 'font', 'primary_color', + 'secondary_color', 'report_header', 'report_footer', + 'sale_document_layout_id', + 'stock_document_layout_id', 'account_document_layout_id', 'purchase_document_layout_id') + def _compute_preview(self): + """ compute a qweb based preview to display on the wizard """ + styles = self._get_asset_style() + for wizard in self: + if wizard.report_layout_id: + if wizard.sale_document_layout_id: + if wizard.sale_document_layout_id == 'modern': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_saleorder_modern_document', + {'company': wizard, 'preview_css': preview_css}) + + elif wizard.sale_document_layout_id == 'traditional': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_saleorder_traditional_document', + {'company': wizard, 'preview_css': preview_css, }) + + elif wizard.sale_document_layout_id == 'standard': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_saleorder_standard_document', + {'company': wizard, 'preview_css': preview_css, }) + + elif wizard.sale_document_layout_id == 'attractive': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_saleorder_attractive_document', + {'company': wizard, 'preview_css': preview_css, }) + else: + wizard.preview = False + + if wizard.purchase_document_layout_id: + if wizard.purchase_document_layout_id == 'modern': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_purchaseorder_modern_document', + {'company': wizard, 'preview_css': preview_css}) + + elif wizard.purchase_document_layout_id == 'traditional': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_purchaseorder_traditional_document', + {'company': wizard, 'preview_css': preview_css, }) + + elif wizard.purchase_document_layout_id == 'standard': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_purchaseorder_standard_document', + {'company': wizard, 'preview_css': preview_css, }) + + elif wizard.purchase_document_layout_id == 'attractive': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_purchaseorder_attractive_document', + {'company': wizard, 'preview_css': preview_css, }) + else: + + wizard.preview = False + + if wizard.account_document_layout_id: + if wizard.account_document_layout_id == 'modern': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_account_modern_document', + {'company': wizard, 'preview_css': preview_css}) + + elif wizard.account_document_layout_id == 'traditional': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_account_traditional_document', + {'company': wizard, 'preview_css': preview_css, }) + + elif wizard.account_document_layout_id == 'standard': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_account_standard_document', + {'company': wizard, 'preview_css': preview_css, }) + + elif wizard.account_document_layout_id == 'attractive': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_account_attractive_document', + {'company': wizard, 'preview_css': preview_css, }) + else: + + wizard.preview = False + + if wizard.stock_document_layout_id: + + if wizard.stock_document_layout_id == 'modern': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_stock_modern_document', + {'company': wizard, 'preview_css': preview_css}) + + elif wizard.stock_document_layout_id == 'traditional': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_stock_traditional_document', + {'company': wizard, 'preview_css': preview_css, }) + + elif wizard.stock_document_layout_id == 'standard': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_stock_standard_document', + {'company': wizard, 'preview_css': preview_css, }) + + elif wizard.stock_document_layout_id == 'attractive': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_stock_attractive_document', + {'company': wizard, 'preview_css': preview_css, }) + else: + wizard.preview = False + + else: + wizard.preview = False diff --git a/base_advanced_report_templates/model/document_layout.py b/base_advanced_report_templates/model/document_layout.py new file mode 100644 index 000000000..71bcb1470 --- /dev/null +++ b/base_advanced_report_templates/model/document_layout.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# 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 +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import models, fields + + +class AddDocumentTemplate(models.Model): + """Adding the fields for customization""" + _name = "doc.layout" + _description = 'Adding the fields for customization' + _rec_name = 'name' + + name = fields.Char("Name") + + base_color = fields.Char("Base Color", + help="Background color for the invoice") + + heading_text_color = fields.Char("Heading text Color", + help="Heading Text color") + + text_color = fields.Char("Text Color", help="Text color of items") + + customer_text_color = fields.Char("Customer Text Color", + help="Customer address text color") + + company_text_color = fields.Char("Company Text Color", + help="Company address Text color") + + logo_position = fields.Selection([('left', 'Left'), ('right', 'Right')], + string="Logo Position", + help="Company logo position") + + customer_position = fields.Selection( + [('left', 'Left'), ('right', 'Right')], string="Customer position", + help="Customer address position") + + company_position = fields.Selection([('left', 'Left'), ('right', 'Right')], + string="Company Address Position", + help="Company address position") + + company_id = fields.Many2one('res.company', string='Company', index=True, + default=lambda self: self.env.company) \ No newline at end of file diff --git a/base_advanced_report_templates/model/model_orderline_image.py b/base_advanced_report_templates/model/model_orderline_image.py new file mode 100644 index 000000000..8e9f85444 --- /dev/null +++ b/base_advanced_report_templates/model/model_orderline_image.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# 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 +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import fields, models + + +class SaleOrderLine(models.Model): + """sale order line image""" + _inherit = 'sale.order.line' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_128") + + +class PurchaseOrder(models.Model): + """purchase orderline image""" + _inherit = 'purchase.order.line' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_128") + + +class AccountMoveLine(models.Model): + """invoice line image""" + _inherit = 'account.move.line' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_128") + + +class StockMove(models.Model): + """Delivery report image""" + _inherit = 'stock.move' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_128") diff --git a/base_advanced_report_templates/purchase_custom_reports/purchase_attractive_template.xml b/base_advanced_report_templates/purchase_custom_reports/purchase_attractive_template.xml new file mode 100644 index 000000000..288bd699d --- /dev/null +++ b/base_advanced_report_templates/purchase_custom_reports/purchase_attractive_template.xml @@ -0,0 +1,207 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/purchase_custom_reports/purchase_modern_template.xml b/base_advanced_report_templates/purchase_custom_reports/purchase_modern_template.xml new file mode 100644 index 000000000..d071edf41 --- /dev/null +++ b/base_advanced_report_templates/purchase_custom_reports/purchase_modern_template.xml @@ -0,0 +1,239 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/purchase_custom_reports/purchase_standard_template.xml b/base_advanced_report_templates/purchase_custom_reports/purchase_standard_template.xml new file mode 100644 index 000000000..fbeaf72c8 --- /dev/null +++ b/base_advanced_report_templates/purchase_custom_reports/purchase_standard_template.xml @@ -0,0 +1,175 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/purchase_custom_reports/purchase_traditional_template.xml b/base_advanced_report_templates/purchase_custom_reports/purchase_traditional_template.xml new file mode 100644 index 000000000..9471688f3 --- /dev/null +++ b/base_advanced_report_templates/purchase_custom_reports/purchase_traditional_template.xml @@ -0,0 +1,259 @@ + + + + Request for Quotation + purchase.order + qweb-pdf + base_advanced_report_templates.report_purchase_custom + base_advanced_report_templates.report_purchase_custom + 'Request for Quotation - %s' % (object.name) + + report + + + + Purchase Order + purchase.order + qweb-pdf + base_advanced_report_templates.report_purchase_custom + base_advanced_report_templates.report_purchase_custom + 'Request for Quotation - %s' % (object.name) + + report + + + + + + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/sale_custom_reports/sale_attractive_template.xml b/base_advanced_report_templates/sale_custom_reports/sale_attractive_template.xml new file mode 100644 index 000000000..a2396fc87 --- /dev/null +++ b/base_advanced_report_templates/sale_custom_reports/sale_attractive_template.xml @@ -0,0 +1,245 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/sale_custom_reports/sale_modern_template.xml b/base_advanced_report_templates/sale_custom_reports/sale_modern_template.xml new file mode 100644 index 000000000..ac4f54702 --- /dev/null +++ b/base_advanced_report_templates/sale_custom_reports/sale_modern_template.xml @@ -0,0 +1,268 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/sale_custom_reports/sale_standrd_template.xml b/base_advanced_report_templates/sale_custom_reports/sale_standrd_template.xml new file mode 100644 index 000000000..04646da32 --- /dev/null +++ b/base_advanced_report_templates/sale_custom_reports/sale_standrd_template.xml @@ -0,0 +1,222 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/sale_custom_reports/sale_traditional_template.xml b/base_advanced_report_templates/sale_custom_reports/sale_traditional_template.xml new file mode 100644 index 000000000..cfe76ef38 --- /dev/null +++ b/base_advanced_report_templates/sale_custom_reports/sale_traditional_template.xml @@ -0,0 +1,264 @@ + + + + Quotation / Order + sale.order + qweb-pdf + base_advanced_report_templates.report_saleorder_custom + base_advanced_report_templates.report_saleorder + (object.state in ('draft', 'sent') and 'Quotation - %s' % (object.name)) or 'Order - %s' % (object.name) + + + report + + + + + + + + diff --git a/base_advanced_report_templates/security/ir.model.access.csv b/base_advanced_report_templates/security/ir.model.access.csv new file mode 100644 index 000000000..b4d7c5272 --- /dev/null +++ b/base_advanced_report_templates/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_doc_layout,doc.layout,model_doc_layout,base.group_user,1,1,1,1 diff --git a/base_advanced_report_templates/static/description/assets/icons/check.png b/base_advanced_report_templates/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/check.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/chevron.png b/base_advanced_report_templates/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/chevron.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/cogs.png b/base_advanced_report_templates/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/cogs.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/consultation.png b/base_advanced_report_templates/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/consultation.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/ecom-black.png b/base_advanced_report_templates/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/ecom-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/education-black.png b/base_advanced_report_templates/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/education-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/hotel-black.png b/base_advanced_report_templates/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/hotel-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/license.png b/base_advanced_report_templates/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/license.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/lifebuoy.png b/base_advanced_report_templates/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/lifebuoy.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/manufacturing-black.png b/base_advanced_report_templates/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/manufacturing-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/pos-black.png b/base_advanced_report_templates/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/pos-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/puzzle.png b/base_advanced_report_templates/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/puzzle.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/restaurant-black.png b/base_advanced_report_templates/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/restaurant-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/service-black.png b/base_advanced_report_templates/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/service-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/trading-black.png b/base_advanced_report_templates/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/trading-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/training.png b/base_advanced_report_templates/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/training.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/update.png b/base_advanced_report_templates/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/update.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/user.png b/base_advanced_report_templates/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/user.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/wrench.png b/base_advanced_report_templates/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/wrench.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/categories.png b/base_advanced_report_templates/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/categories.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/check-box.png b/base_advanced_report_templates/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/check-box.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/compass.png b/base_advanced_report_templates/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/compass.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/corporate.png b/base_advanced_report_templates/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/corporate.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/customer-support.png b/base_advanced_report_templates/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/customer-support.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/cybrosys-logo.png b/base_advanced_report_templates/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/cybrosys-logo.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/features.png b/base_advanced_report_templates/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/features.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/logo.png b/base_advanced_report_templates/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/logo.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/pictures.png b/base_advanced_report_templates/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/pictures.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/pie-chart.png b/base_advanced_report_templates/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/pie-chart.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/right-arrow.png b/base_advanced_report_templates/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/right-arrow.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/star.png b/base_advanced_report_templates/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/star.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/support.png b/base_advanced_report_templates/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/support.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/whatsapp.png b/base_advanced_report_templates/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/whatsapp.png differ diff --git a/base_advanced_report_templates/static/description/assets/modules/1.png b/base_advanced_report_templates/static/description/assets/modules/1.png new file mode 100644 index 000000000..5238bdeab Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/1.png differ diff --git a/base_advanced_report_templates/static/description/assets/modules/2.png b/base_advanced_report_templates/static/description/assets/modules/2.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/2.png differ diff --git a/base_advanced_report_templates/static/description/assets/modules/3.png b/base_advanced_report_templates/static/description/assets/modules/3.png new file mode 100644 index 000000000..3c3ff1afb Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/3.png differ diff --git a/base_advanced_report_templates/static/description/assets/modules/4.png b/base_advanced_report_templates/static/description/assets/modules/4.png new file mode 100644 index 000000000..3fae4631e Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/4.png differ diff --git a/base_advanced_report_templates/static/description/assets/modules/5.gif b/base_advanced_report_templates/static/description/assets/modules/5.gif new file mode 100644 index 000000000..2a5f8e659 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/5.gif differ diff --git a/base_advanced_report_templates/static/description/assets/modules/6.png b/base_advanced_report_templates/static/description/assets/modules/6.png new file mode 100644 index 000000000..7f2815273 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/6.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/hero.gif b/base_advanced_report_templates/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..aabe1f17a Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/hero.gif differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image1.png b/base_advanced_report_templates/static/description/assets/screenshots/image1.png new file mode 100644 index 000000000..b1f54ae9b Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image1.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image10.png b/base_advanced_report_templates/static/description/assets/screenshots/image10.png new file mode 100644 index 000000000..4ea24676b Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image10.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image11.png b/base_advanced_report_templates/static/description/assets/screenshots/image11.png new file mode 100644 index 000000000..5c173352c Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image11.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image12.png b/base_advanced_report_templates/static/description/assets/screenshots/image12.png new file mode 100644 index 000000000..3906e1f73 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image12.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image13.png b/base_advanced_report_templates/static/description/assets/screenshots/image13.png new file mode 100644 index 000000000..6c969e17d Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image13.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image14.png b/base_advanced_report_templates/static/description/assets/screenshots/image14.png new file mode 100644 index 000000000..d746d6ffd Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image14.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image15.png b/base_advanced_report_templates/static/description/assets/screenshots/image15.png new file mode 100644 index 000000000..322e7404f Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image15.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image16.png b/base_advanced_report_templates/static/description/assets/screenshots/image16.png new file mode 100644 index 000000000..e9ef24194 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image16.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image17.png b/base_advanced_report_templates/static/description/assets/screenshots/image17.png new file mode 100644 index 000000000..35b738844 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image17.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image2.png b/base_advanced_report_templates/static/description/assets/screenshots/image2.png new file mode 100644 index 000000000..3635e39a8 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image2.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image3.png b/base_advanced_report_templates/static/description/assets/screenshots/image3.png new file mode 100644 index 000000000..cfccc18af Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image3.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image4.png b/base_advanced_report_templates/static/description/assets/screenshots/image4.png new file mode 100644 index 000000000..218871203 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image4.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image5.png b/base_advanced_report_templates/static/description/assets/screenshots/image5.png new file mode 100644 index 000000000..8879545a7 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image5.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image6.png b/base_advanced_report_templates/static/description/assets/screenshots/image6.png new file mode 100644 index 000000000..9db0fc195 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image6.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image7.png b/base_advanced_report_templates/static/description/assets/screenshots/image7.png new file mode 100644 index 000000000..629dc3b74 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image7.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image8.png b/base_advanced_report_templates/static/description/assets/screenshots/image8.png new file mode 100644 index 000000000..f77263980 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image8.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image9.png b/base_advanced_report_templates/static/description/assets/screenshots/image9.png new file mode 100644 index 000000000..7f5eae5b4 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image9.png differ diff --git a/base_advanced_report_templates/static/description/banner.png b/base_advanced_report_templates/static/description/banner.png new file mode 100644 index 000000000..05bb3f814 Binary files /dev/null and b/base_advanced_report_templates/static/description/banner.png differ diff --git a/base_advanced_report_templates/static/description/icon.png b/base_advanced_report_templates/static/description/icon.png new file mode 100644 index 000000000..f19316da6 Binary files /dev/null and b/base_advanced_report_templates/static/description/icon.png differ diff --git a/base_advanced_report_templates/static/description/index.html b/base_advanced_report_templates/static/description/index.html new file mode 100644 index 000000000..9a489c2cf --- /dev/null +++ b/base_advanced_report_templates/static/description/index.html @@ -0,0 +1,703 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Odoo Professional Report Templates

+

+ Customizable Multiple Report Templates for Sale, Purchase, Invoice and Delivery +

+ +
+
+ + + +
+
+

+ Overview +

+
+ +
+

+ In the Odoo Professional Report Templates App, We can configure the report templates to our own need. + There we can have + 4 types of templates - Standard, Modern, Traditional, Attractive. We can also customize the + SO,PO,Invoices and Delivery.

+
+

+ +
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Configure the layout

+
+
+ +
+
+ +
+
+

+ Configure the position of Text color,Heading,Background

+
+
+ +
+
+ +
+
+

+ Configure Layout In Each Module

+
+
+ +
+
+ +
+
+

+ Edit the theme

+
+
+ + +
+ +
+
+

+ Screenshots +

+
+
+

+ Select The Configuration Layout

+

+ From the company form view we can select the layout type in each module.

+ +
+ +
+

+ Report Template Configuration

+

+ you can configure the template on the external link of the template type. +

+ +
+ +
+

+ Print SalesOrder Traditional report

+ +
+ +
+

+ Print SalesOrder Modern report

+ +
+
+

+ Print SalesOrder Standard report

+ +
+ +
+

+ Print SalesOrder Attractive report

+ +
+
+

+ Print PurchaseOrder Traditional report

+ +
+ +
+

+ Print PurchaseOrder Modern report

+ +
+
+

+ Print PurchaseOrder Standard report

+ +
+ +
+

+ Print PurchaseOrder Attractive report

+ +
+ +
+

+ Print Invoice Traditional report

+ +
+ +
+

+ Print Invoice Modern report

+ +
+
+

+ Print Invoice Standard report

+ +
+ +
+

+ Print Invoice Attractive report

+ +
+ +
+

+ Print Delivery Traditional report

+ +
+ +
+

+ Print Delivery Modern report

+ +
+
+

+ Print Delivery Standard report

+ +
+ +
+

+ Print Delivery Attractive report

+ +
+ + + + +
+ +
+
+

Suggested Products

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

Our Services

+
+
+ +
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+
+ + + +
+
+
+

Our Industries

+
+
+ +
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

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

Need Help?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/base_advanced_report_templates/stock_custom_template/delivery_modern.xml b/base_advanced_report_templates/stock_custom_template/delivery_modern.xml new file mode 100644 index 000000000..529da1ca9 --- /dev/null +++ b/base_advanced_report_templates/stock_custom_template/delivery_modern.xml @@ -0,0 +1,287 @@ + + + + diff --git a/base_advanced_report_templates/stock_custom_template/delivery_slip_attractive.xml b/base_advanced_report_templates/stock_custom_template/delivery_slip_attractive.xml new file mode 100644 index 000000000..1734a94c5 --- /dev/null +++ b/base_advanced_report_templates/stock_custom_template/delivery_slip_attractive.xml @@ -0,0 +1,269 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/stock_custom_template/delivery_standard.xml b/base_advanced_report_templates/stock_custom_template/delivery_standard.xml new file mode 100644 index 000000000..e14f5d8a8 --- /dev/null +++ b/base_advanced_report_templates/stock_custom_template/delivery_standard.xml @@ -0,0 +1,279 @@ + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/stock_custom_template/delivery_traditional.xml b/base_advanced_report_templates/stock_custom_template/delivery_traditional.xml new file mode 100644 index 000000000..2d83fbe5d --- /dev/null +++ b/base_advanced_report_templates/stock_custom_template/delivery_traditional.xml @@ -0,0 +1,329 @@ + + + + Delivery Slip + stock.picking + qweb-pdf + base_advanced_report_templates.report_deliveryslip_custom + base_advanced_report_templates.report_deliveryslip_custom + 'Delivery Slip - %s - %s' % (object.partner_id.name or '', object.name) + report + + + + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/views/account_line_image.xml b/base_advanced_report_templates/views/account_line_image.xml new file mode 100644 index 000000000..747abaaa0 --- /dev/null +++ b/base_advanced_report_templates/views/account_line_image.xml @@ -0,0 +1,19 @@ + + + + + account.inherit.form.view + account.move + + + + + + + + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/views/company_report_template.xml b/base_advanced_report_templates/views/company_report_template.xml new file mode 100644 index 000000000..5efa962b0 --- /dev/null +++ b/base_advanced_report_templates/views/company_report_template.xml @@ -0,0 +1,16 @@ + + + + Company Report Template + res.company + + + + + + + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/views/custom_layouts.xml b/base_advanced_report_templates/views/custom_layouts.xml new file mode 100644 index 000000000..578bacfee --- /dev/null +++ b/base_advanced_report_templates/views/custom_layouts.xml @@ -0,0 +1,38 @@ + + + + + document.custom.layout + doc.layout + +
+ +
+

+ +

+
+ + + + + + + + + + + + + +
+
+
+
+
+
+ + diff --git a/base_advanced_report_templates/views/purchase_orderline_image.xml b/base_advanced_report_templates/views/purchase_orderline_image.xml new file mode 100644 index 000000000..faf27fbb8 --- /dev/null +++ b/base_advanced_report_templates/views/purchase_orderline_image.xml @@ -0,0 +1,20 @@ + + + + + purchase.order.inherit.form.view + purchase.order + + + + + + + + + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/views/sale_ordeline_image.xml b/base_advanced_report_templates/views/sale_ordeline_image.xml new file mode 100644 index 000000000..868b559d4 --- /dev/null +++ b/base_advanced_report_templates/views/sale_ordeline_image.xml @@ -0,0 +1,23 @@ + + + + + sale.order.inherit.form.view + sale.order + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/base_advanced_report_templates/views/stock_move_image.xml b/base_advanced_report_templates/views/stock_move_image.xml new file mode 100644 index 000000000..06a9812ef --- /dev/null +++ b/base_advanced_report_templates/views/stock_move_image.xml @@ -0,0 +1,19 @@ + + + + + stock.inherit.form.view + stock.picking + + + + + + + + + + + + \ No newline at end of file