diff --git a/product_to_invoice/README.rst b/product_to_invoice/README.rst new file mode 100644 index 000000000..849828449 --- /dev/null +++ b/product_to_invoice/README.rst @@ -0,0 +1,38 @@ +Add Multiple Products to Invoice/Bill +===================================== +Easily add multiple products to a customer invoice or vendor bill directly from product kanban, list and from views. + +Configuration +============= +No additional configuration is needed to use this module. + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/14.0/legal/licenses/licenses.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: Midilaj V K @ cybrosys + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/product_to_invoice/__init__.py b/product_to_invoice/__init__.py new file mode 100644 index 000000000..812f1d95d --- /dev/null +++ b/product_to_invoice/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Midilaj V K () +# +# 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 models +from . import wizard diff --git a/product_to_invoice/__manifest__.py b/product_to_invoice/__manifest__.py new file mode 100644 index 000000000..42419e547 --- /dev/null +++ b/product_to_invoice/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Midilaj V K () +# +# 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': 'Add Multiple Products to Invoice/Bill', + 'version': '14.0.1.0.0', + 'category': 'Extra Tools', + 'summary': 'Easily add multiple products to a invoice/bill directly from the product views', + 'description': """This module allow you to add multiple products to the corresponding invoice/bill. + You can see all products in kanban, list and form view.You can also view the recent invoice/bill + history of the selected product along with the option to update the quantity, Change price, + Add Multiple Products""", + 'author': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'depends': ['base', 'account'], + 'data': [ + 'security/ir.model.access.csv', + 'views/account_move_views.xml', + 'views/product_views.xml', + 'wizard/invoice_product_details_views.xml' + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False +} diff --git a/product_to_invoice/doc/RELEASE_NOTES.md b/product_to_invoice/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..8b9400227 --- /dev/null +++ b/product_to_invoice/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 16.08.2021 +#### Version 14.0.1.0.0 +##### ADD +- Initial commit for Add Multiple Products to Invoice/Bill + diff --git a/product_to_invoice/models/__init__.py b/product_to_invoice/models/__init__.py new file mode 100644 index 000000000..a469476a6 --- /dev/null +++ b/product_to_invoice/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Midilaj V K () +# +# 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 account_move +from . import product_product diff --git a/product_to_invoice/models/account_move.py b/product_to_invoice/models/account_move.py new file mode 100644 index 000000000..cca78d25c --- /dev/null +++ b/product_to_invoice/models/account_move.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Midilaj V K () +# +# 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, _ + + +class AccountMove(models.Model): + _inherit = 'account.move' + + def action_add_product(self): + self.ensure_one() + return { + 'name': _('Product Variants'), + 'type': 'ir.actions.act_window', + 'res_model': 'product.product', + 'view_mode': 'kanban,list,form', + 'target': 'current', + 'context': {'add_to_invoice': True}, + } diff --git a/product_to_invoice/models/product_product.py b/product_to_invoice/models/product_product.py new file mode 100644 index 000000000..28a44cc69 --- /dev/null +++ b/product_to_invoice/models/product_product.py @@ -0,0 +1,123 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2021-TODAY Cybrosys Technologies() +# Author: Midilaj V K () +# +# 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 ProductProduct(models.Model): + _inherit = 'product.product' + + def _compute_add_to_invoice(self): + context = self.env.context + for rec in self: + if context.get('add_to_invoice'): + rec.add_to_invoice = True + else: + rec.add_to_invoice = False + + add_to_invoice = fields.Boolean(compute=_compute_add_to_invoice, help='To show add to invoice button in tree view') + + def _get_invoice_taxes(self, move_id, account_id): + """ + return taxes of selected product + :param move_id: + :param account_id: + :return: + """ + self.ensure_one() + if move_id.move_type == 'out_invoice': + # Out invoice. + if self.taxes_id: + tax_ids = self.taxes_id.filtered(lambda tax: tax.company_id == move_id.company_id) + elif account_id.tax_ids: + tax_ids = account_id.tax_ids + else: + tax_ids = self.env['account.tax'] + if not tax_ids: + tax_ids = move_id.company_id.account_sale_tax_id + elif move_id.move_type == 'in_invoice': + # In invoice. + if self.supplier_taxes_id: + tax_ids = self.supplier_taxes_id.filtered(lambda tax: tax.company_id == move_id.company_id) + elif account_id.tax_ids: + tax_ids = account_id.tax_ids + else: + tax_ids = self.env['account.tax'] + if not tax_ids: + tax_ids = move_id.company_id.account_purchase_tax_id + else: + tax_ids = account_id.tax_ids + + if self.company_id and tax_ids: + tax_ids = tax_ids.filtered(lambda tax: tax.company_id == self.company_id) + + return tax_ids + + def _get_invoice_account(self, move_id): + """ + return income/expense account of selected product + :param move_id: + :return: + """ + self.ensure_one() + self = self.with_company(move_id.journal_id.company_id) + + fiscal_position = move_id.fiscal_position_id + accounts = self.product_tmpl_id.get_product_accounts(fiscal_pos=fiscal_position) + if move_id.move_type == 'out_invoice': + # Out invoice. + return accounts['income'] + elif move_id.move_type == 'in_invoice': + # In invoice. + return accounts['expense'] + + def action_add_to_invoice(self): + active_id = self._context.get('active_id') + invoice_id = self.env['account.move'].browse(active_id) + account_id = self._get_invoice_account(invoice_id) + tax_ids = self._get_invoice_taxes(invoice_id, account_id) + invoice_id.write({ + 'invoice_line_ids': [(0, 0, { + 'product_id': self.id, + 'product_uom_id': self.uom_id.id, + 'quantity': 1, + 'price_unit': self.lst_price if invoice_id.move_type == 'out_invoice' else self.standard_price, + 'account_id': account_id, + 'tax_ids': tax_ids + })] + }) + + def action_change_qty(self): + active_id = self._context.get('active_id') + invoice_id = self.env['account.move'].browse(active_id) + return { + 'name': _('Product Details'), + 'type': 'ir.actions.act_window', + 'res_model': 'invoice.product.details.wizard', + 'view_mode': 'form', + 'target': 'new', + 'context': { + 'default_account_move_id': invoice_id.id, + 'default_product_id': self.id, + 'default_price_unit': self.lst_price if invoice_id.move_type == 'out_invoice' else self.standard_price, + }, + } diff --git a/product_to_invoice/security/ir.model.access.csv b/product_to_invoice/security/ir.model.access.csv new file mode 100644 index 000000000..86d4a1ea8 --- /dev/null +++ b/product_to_invoice/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_invoice_product_details_wizard,access.invoice.product.details.wizard,model_invoice_product_details_wizard,,1,1,1,1 +access_product_invoice_history,access.product.invoice.history,model_product_invoice_history,,1,1,1,1 \ No newline at end of file diff --git a/product_to_invoice/static/description/assets/icons/check.png b/product_to_invoice/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/check.png differ diff --git a/product_to_invoice/static/description/assets/icons/chevron.png b/product_to_invoice/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/chevron.png differ diff --git a/product_to_invoice/static/description/assets/icons/cogs.png b/product_to_invoice/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/cogs.png differ diff --git a/product_to_invoice/static/description/assets/icons/consultation.png b/product_to_invoice/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/consultation.png differ diff --git a/product_to_invoice/static/description/assets/icons/ecom-black.png b/product_to_invoice/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/ecom-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/education-black.png b/product_to_invoice/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/education-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/hotel-black.png b/product_to_invoice/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/hotel-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/license.png b/product_to_invoice/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/license.png differ diff --git a/product_to_invoice/static/description/assets/icons/lifebuoy.png b/product_to_invoice/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/lifebuoy.png differ diff --git a/product_to_invoice/static/description/assets/icons/logo.png b/product_to_invoice/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/logo.png differ diff --git a/product_to_invoice/static/description/assets/icons/manufacturing-black.png b/product_to_invoice/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/manufacturing-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/pos-black.png b/product_to_invoice/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/pos-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/puzzle.png b/product_to_invoice/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/puzzle.png differ diff --git a/product_to_invoice/static/description/assets/icons/restaurant-black.png b/product_to_invoice/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/restaurant-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/service-black.png b/product_to_invoice/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/service-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/trading-black.png b/product_to_invoice/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/trading-black.png differ diff --git a/product_to_invoice/static/description/assets/icons/training.png b/product_to_invoice/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/training.png differ diff --git a/product_to_invoice/static/description/assets/icons/update.png b/product_to_invoice/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/update.png differ diff --git a/product_to_invoice/static/description/assets/icons/user.png b/product_to_invoice/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/user.png differ diff --git a/product_to_invoice/static/description/assets/icons/wrench.png b/product_to_invoice/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/product_to_invoice/static/description/assets/icons/wrench.png differ diff --git a/product_to_invoice/static/description/assets/modules/approval_image.png b/product_to_invoice/static/description/assets/modules/approval_image.png new file mode 100644 index 000000000..84fe94e80 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/approval_image.png differ diff --git a/product_to_invoice/static/description/assets/modules/budget_image.png b/product_to_invoice/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..fe6aa6fe4 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/budget_image.png differ diff --git a/product_to_invoice/static/description/assets/modules/export_image.png b/product_to_invoice/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..4e4ea0e51 Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/export_image.png differ diff --git a/product_to_invoice/static/description/assets/modules/magento_image.png b/product_to_invoice/static/description/assets/modules/magento_image.png new file mode 100644 index 000000000..39de0820f Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/magento_image.png differ diff --git a/product_to_invoice/static/description/assets/modules/pos_image.png b/product_to_invoice/static/description/assets/modules/pos_image.png new file mode 100644 index 000000000..c5932894b Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/pos_image.png differ diff --git a/product_to_invoice/static/description/assets/modules/shopify_image.png b/product_to_invoice/static/description/assets/modules/shopify_image.png new file mode 100644 index 000000000..c6d92c16d Binary files /dev/null and b/product_to_invoice/static/description/assets/modules/shopify_image.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/hero.gif b/product_to_invoice/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..83c3b2883 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/hero.gif differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice1.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice1.png new file mode 100644 index 000000000..3b3710a54 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice1.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice2.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice2.png new file mode 100644 index 000000000..45b53d339 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice2.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice3.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice3.png new file mode 100644 index 000000000..fe107af99 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice3.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice4.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice4.png new file mode 100644 index 000000000..edee65fdb Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice4.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice5.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice5.png new file mode 100644 index 000000000..1af584918 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice5.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice6.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice6.png new file mode 100644 index 000000000..98ec947f3 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice6.png differ diff --git a/product_to_invoice/static/description/assets/screenshots/product_to_invoice7.png b/product_to_invoice/static/description/assets/screenshots/product_to_invoice7.png new file mode 100644 index 000000000..3fdec9df6 Binary files /dev/null and b/product_to_invoice/static/description/assets/screenshots/product_to_invoice7.png differ diff --git a/product_to_invoice/static/description/banner.png b/product_to_invoice/static/description/banner.png new file mode 100644 index 000000000..8d61629c5 Binary files /dev/null and b/product_to_invoice/static/description/banner.png differ diff --git a/product_to_invoice/static/description/icon.png b/product_to_invoice/static/description/icon.png new file mode 100644 index 000000000..858fed20c Binary files /dev/null and b/product_to_invoice/static/description/icon.png differ diff --git a/product_to_invoice/static/description/index.html b/product_to_invoice/static/description/index.html new file mode 100644 index 000000000..da3d1f9ba --- /dev/null +++ b/product_to_invoice/static/description/index.html @@ -0,0 +1,673 @@ + +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Add Multiple Products to Invoice/Bill

+

+ Add Multiple Products to Custome Invoice or Vendor Bill +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ Add Multiple Products to Invoice/Bill module provides an easy way to add multiple products to the + corresponding customer invoice or vendor bill. Moreover, you can see all the products in list, kanban and also in the + form view. Furthermore, you can see the recent invoice/bill history of the selected product.

+ +
+
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Smart button in customer invoice and vendor bill form view to select products.

+

+ A definite Smart button in the form view of the customer invoice and vendor bill helps you to select multiple + products to be directly added to the invoice or bill.

+
+
+ +
+
+ +
+
+

+ Displays products in multiple views.

+

+ Displays every products which have been defined in your platform in Kanban, List and Form view.

+
+
+ +
+
+ +
+
+

+ Displays Recent Invoice and Bill History.

+

+ Displays recent customer invoice and vendor bill history of the selected product in the wizard window.

+
+
+
+
+ +
+
+

+ Option to filter out the Invoice/Bill History.

+

+ Option to view recent invoice/billing history based on the date selected.

+
+
+ +
+
+ +
+
+

+ Provision to Add Product Details.

+

+ Provision to add product details such as quantity of the product to be invoiced/billed from the selected + product wizard.

+
+
+ + +
+ +
+
+

+ Screenshots +

+
+
+

+ Smart Button in Customer Invoice and Vendor Bill form view

+

+ Smart button in invoice and vendor bill form view to select multiple products directly to the invoice/bill. + Moreover, the button will be visible only for invoice or bill in the draft state

+ + +
+ +
+

+ Display Products in Kanban View

+

+ Add to Invoice/Bill and Update Quantity button in the Kanban view. + Click Add to Invoice/Bill to add the product directly to the invoice/bill with one quantity and default price. + Click Change Quantity to add the product to the invoice/bill via changing price and quantity. A wizard window will appear in the screen to change price and quantity. +

+ +
+ +
+

+ Display Products in List view

+

+ A plus icon to add the product directly to the invoice/bill with one quantity and default price. + A list icon to add the product to the invoice/bill via changing price and quantity. A wizard window will appear in the screen to change price and quantity. +

+ +
+ + +
+

+ Product Form View

+

+ Press the button "Add to Invoice/Bill" to add the product directly to the invoice/bill. + Press the list icon to add the product to the invoice/bill by changing price and quantity. +

+ +
+ + +
+

+ Update Quantity Wizard

+

+ Where User Can Change Price and Quantity. + The wizard window also shows the previous invoice/bill history of the selected product. + You can choose the from date of the previous invoice/bill history. + You can decide how many rows (sequence) of invoice/bill history should be shown. +

+ +
+ + +
+

+ Products Added to Invoice/Bill

+

+ Selected products will be inserted to the move lines of opened invoice/bill. +

+ +
+ +
+ + + +
+
+

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?

+
+
+
+ + +
+ +
+ +
+ +
+ WhatsApp +
+
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
\ No newline at end of file diff --git a/product_to_invoice/views/account_move_views.xml b/product_to_invoice/views/account_move_views.xml new file mode 100644 index 000000000..a36db2c07 --- /dev/null +++ b/product_to_invoice/views/account_move_views.xml @@ -0,0 +1,18 @@ + + + + + + account.move.form.inherit + account.move + + + + + + + + + \ No newline at end of file diff --git a/product_to_invoice/views/product_views.xml b/product_to_invoice/views/product_views.xml new file mode 100644 index 000000000..a5570f309 --- /dev/null +++ b/product_to_invoice/views/product_views.xml @@ -0,0 +1,55 @@ + + + + + + product.product.tree.inherit + product.product + + + +