diff --git a/invoice_bill_select_orderlines/README.rst b/invoice_bill_select_orderlines/README.rst new file mode 100644 index 000000000..ec35956f6 --- /dev/null +++ b/invoice_bill_select_orderlines/README.rst @@ -0,0 +1,51 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Invoice Or Bill For Selected Order Lines +======================================== +We can create invoice for the selected products from order line. Also we can use this feature in the case of bills. +We can also create the invoice or bill for remaining products by selecting the products. + +Configuration +============= +None. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +(http://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +Developers: (V16) - Saneen K , Arjun S + (V17) - Mufeeda Shirin + (V18) - Ashwin T + +Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://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 +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/invoice_bill_select_orderlines/__init__.py b/invoice_bill_select_orderlines/__init__.py new file mode 100644 index 000000000..f7ad510ae --- /dev/null +++ b/invoice_bill_select_orderlines/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# along with this program. If not, see . +# +############################################################################### +from . import models diff --git a/invoice_bill_select_orderlines/__manifest__.py b/invoice_bill_select_orderlines/__manifest__.py new file mode 100644 index 000000000..1e89ef6c5 --- /dev/null +++ b/invoice_bill_select_orderlines/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# along with this program. If not, see . +# +############################################################################### +{ + 'name': "Invoice Or Bill For Selected Order Lines", + 'version': '18.0.1.0.0', + 'category': 'Accounting,Purchase,Sales', + 'summary': 'Can use only selected products to invoice as well as bills.', + 'description': 'We can create invoice for the selected products from order ' + 'line.Also we can use this feature in the case of bills. We ' + 'can also create the invoice or bill for remaining products' + ' by selecting the products.', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['sale_management', 'purchase', 'stock'], + 'data': [ + 'views/purchase_order_views.xml', + 'views/sale_order_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/invoice_bill_select_orderlines/doc/RELEASE_NOTES.md b/invoice_bill_select_orderlines/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..13cf3ccda --- /dev/null +++ b/invoice_bill_select_orderlines/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 04.10.2024 +#### Version 18.0.1.0.0 +#### ADD +- Initial commit for Invoice Or Bill For Selected Order Lines diff --git a/invoice_bill_select_orderlines/models/__init__.py b/invoice_bill_select_orderlines/models/__init__.py new file mode 100644 index 000000000..b9a30a5ac --- /dev/null +++ b/invoice_bill_select_orderlines/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# along with this program. If not, see . +# +############################################################################### +from . import purchase_order +from . import sale_order diff --git a/invoice_bill_select_orderlines/models/purchase_order.py b/invoice_bill_select_orderlines/models/purchase_order.py new file mode 100644 index 000000000..3b1e2d390 --- /dev/null +++ b/invoice_bill_select_orderlines/models/purchase_order.py @@ -0,0 +1,158 @@ +# -*- coding: utf-8 -*- +""" +Can use only selected products to invoice as well as bills. +""" +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# along with this program. If not, see . +# +############################################################################### +from odoo import fields, models, _ +from odoo.exceptions import UserError +from odoo.tools import float_is_zero, groupby + + +class PurchaseOrderLine(models.Model): + """Inherits the purchase order line""" + _inherit = 'purchase.order.line' + + is_product_select = fields.Boolean(string="Select", + help="To select Products from Order " + "lines", + copy=False) + + +class PurchaseOrder(models.Model): + """Inherits the purchase order""" + _inherit = 'purchase.order' + + def action_select_all(self): + """Select all the products from the sale order line for invoice""" + self.order_line.filtered(lambda rec: rec.qty_to_invoice > 0).write( + {'is_product_select': True}) + + def action_deselect_all(self): + """Deselect all the products from the sale order line for invoice""" + self.order_line.filtered(lambda rec: rec.qty_to_invoice > 0).write( + {'is_product_select': False}) + + def action_create_invoice(self): + """Create the invoice associated to the PO and Update the invoiceable + lines on the basis of selected lines""" + if self.order_line.filtered( + lambda selected: selected.is_product_select): + # 1) Prepare invoice vals and clean-up the section lines + invoice_vals_list = [] + sequence = 10 + for order in self: + if order.invoice_status != 'to invoice': + continue + order = order.with_company(order.company_id) + pending_section = None + # Invoice values. + invoice_vals = order._prepare_invoice() + # Invoice line values (keep only necessary sections). + for line in order.order_line.filtered(lambda line_select: + (line_select.is_product_select) or True not in + self.order_line.mapped( + 'is_product_select') or + line_select.display_type == 'line_section'): + if line.display_type == 'line_section': + pending_section = line + continue + if not float_is_zero(line.qty_to_invoice, + precision_digits=self.env[ + 'decimal.precision'].precision_get( + 'Product Unit of Measure')): + if pending_section: + line_vals = pending_section._prepare_account_move_line() + line_vals.update({'sequence': sequence}) + invoice_vals['invoice_line_ids'].append( + (0, 0, line_vals)) + sequence += 1 + pending_section = None + line_vals = line._prepare_account_move_line() + line_vals.update({'sequence': sequence}) + invoice_vals['invoice_line_ids'].append( + (0, 0, line_vals)) + sequence += 1 + invoice_vals_list.append(invoice_vals) + if not invoice_vals_list: + raise UserError( + _('There is no invoiceable line. If a product has a' + ' control policy based on received quantity, ' + 'please make sure that a quantity has been ' + 'received.')) + # 2) group by (company_id, partner_id, currency_id) for batch creation + new_invoice_vals_list = [] + for grouping_keys, invoices in groupby( + invoice_vals_list, + key=lambda x: (x.get('company_id'), x.get( + 'partner_id'), x.get('currency_id'))): + ref_invoice_vals = self.get_ref_invoice_vals(invoices=invoices) + new_invoice_vals_list.append(ref_invoice_vals) + invoice_vals_list = new_invoice_vals_list + # 3) Create invoices. + moves = self.env['account.move'] + if invoice_vals_list[0].get('invoice_line_ids'): + for vals in invoice_vals_list: + moves |= self.env['account.move'].with_context( + default_move_type='in_invoice').with_company( + vals['company_id']).create( + vals) + # 4) Some moves might actually be refunds: convert them if the + # total amount is negative + # We do this after the moves have been created since we need + # taxes, + # etc. to know if the total + # is actually negative or not + moves.filtered( + lambda m: m.currency_id.round(m.amount_total) < 0) \ + .action_switch_move_type() + return self.action_view_invoice(moves) + raise UserError( + _('There is no invoiceable line. Please make sure ' + 'that a order line is selected')) + raise UserError(_('There is no invoiceable line. Please make sure ' + 'that a order line is selected')) + + def get_ref_invoice_vals(self, invoices): + """ + This is the method get_ref_invoice_vals which will return the invoice + vals to the method + """ + origins = set() + payment_refs = set() + refs = set() + ref_invoice_vals = {} + for invoice_vals in invoices: + if not ref_invoice_vals: + ref_invoice_vals = invoice_vals + else: + ref_invoice_vals['invoice_line_ids'] += invoice_vals[ + 'invoice_line_ids'] + origins.add(invoice_vals['invoice_origin']) + payment_refs.add(invoice_vals['payment_reference']) + refs.add(invoice_vals['ref']) + ref_invoice_vals.update({ + 'ref': ', '.join(refs)[:2000], + 'invoice_origin': ', '.join(origins), + 'payment_reference': len( + payment_refs) == 1 and payment_refs.pop() or False, + }) + return ref_invoice_vals diff --git a/invoice_bill_select_orderlines/models/sale_order.py b/invoice_bill_select_orderlines/models/sale_order.py new file mode 100644 index 000000000..9ed0b9ca1 --- /dev/null +++ b/invoice_bill_select_orderlines/models/sale_order.py @@ -0,0 +1,97 @@ +# -*- coding: utf-8 -*- +""" +Can use only selected products to invoice as well as bills. +""" +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Cybrosys Techno Solutions (odoo@cybrosys.com) +# +# This program is free software: you can modify +# it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# along with this program. If not, see . +# +############################################################################### +from odoo import fields, models, _ +from odoo.exceptions import UserError +from odoo.tools import float_is_zero + + +class SaleOrderLine(models.Model): + """Inherits the sale order line for adding the boolean field""" + _inherit = 'sale.order.line' + + is_product_select = fields.Boolean(string="Select", + help="To Select products from order line", + copy=False) + + +class SaleOrder(models.Model): + """Inherits the sale order for selecting products""" + _inherit = 'sale.order' + + is_qty_to_invoice = fields.Boolean(string="Is Qty To Invoice", + help="Is any pending qty to invoice", + compute='_compute_is_qty_to_to_invoice') + + def _compute_is_qty_to_to_invoice(self): + """Function to hide the select/deselect button when nothing to + invoice""" + if self.invoice_status == 'no': + self.is_qty_to_invoice = True + elif False in self.order_line.mapped('is_product_select'): + self.is_qty_to_invoice = False + else: + self.is_qty_to_invoice = True + + def action_select_all(self): + """Select all the products from the sale order line for invoice""" + self.order_line.filtered(lambda rec: rec.qty_to_invoice > 0).write( + {'is_product_select': True}) + + def action_deselect_all(self): + """ Deselect all the products from the sale order line for invoice""" + self.order_line.filtered(lambda rec: rec.qty_to_invoice > 0).write( + {'is_product_select': False}) + + def _get_invoiceable_lines(self, line_section='line_section'): + """Return the invoice-able lines for order `self` and Update the + invoiceable lines on the basis of selected lines""" + if self.order_line.filtered( + lambda line: line.is_product_select): + down_payment_line_ids = [] + invoiceable_line_ids = [] + precision = self.env['decimal.precision'].precision_get( + 'Product Unit of Measure') + selected_lines = [] + for line in self.order_line.filtered(lambda line_select: ( + line_select.is_product_select or line_select.is_downpayment) or + True not in self.order_line.mapped( + 'is_product_select') or line_select.display_type == 'line_section' or line_select.display_type == 'line_note'): + selected_lines.append(line) + if line.display_type == line_section: + # Add the section to the invoiceable lines + invoiceable_line_ids.append(line.id) + elif line.display_type == 'line_note': + # Add the note to the invoiceable lines + invoiceable_line_ids.append(line.id) + elif float_is_zero(line.qty_to_invoice, + precision_digits=precision): + continue + else: + invoiceable_line_ids.append(line.id) + # Add the down payment lines to the invoiceable lines, at the end + invoiceable_line_ids += down_payment_line_ids + return self.env['sale.order.line'].browse(invoiceable_line_ids) + raise UserError(_('There is no invoiceable line. Please make sure ' + 'that a order line is selected')) diff --git a/invoice_bill_select_orderlines/static/description/assets/cybro-icon.png b/invoice_bill_select_orderlines/static/description/assets/cybro-icon.png new file mode 100755 index 000000000..06e73e11d Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/cybro-icon.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/cybro-odoo.png b/invoice_bill_select_orderlines/static/description/assets/cybro-odoo.png new file mode 100755 index 000000000..ed02e07a4 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/cybro-odoo.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/h2.png b/invoice_bill_select_orderlines/static/description/assets/h2.png new file mode 100755 index 000000000..0bfc4707d Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/h2.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/arrows-repeat.svg b/invoice_bill_select_orderlines/static/description/assets/icons/arrows-repeat.svg new file mode 100755 index 000000000..1d7efabc5 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/banner-1.png b/invoice_bill_select_orderlines/static/description/assets/icons/banner-1.png new file mode 100755 index 000000000..c180db172 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/banner-1.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/banner-2.svg b/invoice_bill_select_orderlines/static/description/assets/icons/banner-2.svg new file mode 100755 index 000000000..e606d97d9 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/banner-bg.png b/invoice_bill_select_orderlines/static/description/assets/icons/banner-bg.png new file mode 100755 index 000000000..a8238d3c0 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/banner-bg.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/banner-bg.svg b/invoice_bill_select_orderlines/static/description/assets/icons/banner-bg.svg new file mode 100755 index 000000000..b1378103e --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/banner-call.svg b/invoice_bill_select_orderlines/static/description/assets/icons/banner-call.svg new file mode 100755 index 000000000..96c687e81 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/banner-mail.svg b/invoice_bill_select_orderlines/static/description/assets/icons/banner-mail.svg new file mode 100755 index 000000000..cbf0d158d --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/banner-pattern.svg b/invoice_bill_select_orderlines/static/description/assets/icons/banner-pattern.svg new file mode 100755 index 000000000..9c1c7e101 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/banner-promo.svg b/invoice_bill_select_orderlines/static/description/assets/icons/banner-promo.svg new file mode 100755 index 000000000..d52791b11 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/brand-pair.svg b/invoice_bill_select_orderlines/static/description/assets/icons/brand-pair.svg new file mode 100755 index 000000000..d8db7fc1e --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/check.png b/invoice_bill_select_orderlines/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/check.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/chevron.png b/invoice_bill_select_orderlines/static/description/assets/icons/chevron.png new file mode 100755 index 000000000..2089293d6 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/chevron.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/close-icon.svg b/invoice_bill_select_orderlines/static/description/assets/icons/close-icon.svg new file mode 100755 index 000000000..df8cce37a --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/cogs.png b/invoice_bill_select_orderlines/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/cogs.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/collabarate-icon.svg b/invoice_bill_select_orderlines/static/description/assets/icons/collabarate-icon.svg new file mode 100755 index 000000000..dd4e10518 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/consultation.png b/invoice_bill_select_orderlines/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/consultation.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/cybro-logo.png b/invoice_bill_select_orderlines/static/description/assets/icons/cybro-logo.png new file mode 100755 index 000000000..ff4b78220 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/cybro-logo.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/down.svg b/invoice_bill_select_orderlines/static/description/assets/icons/down.svg new file mode 100755 index 000000000..f21c36271 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/ecom-black.png b/invoice_bill_select_orderlines/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/ecom-black.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/education-black.png b/invoice_bill_select_orderlines/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/education-black.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/faq.png b/invoice_bill_select_orderlines/static/description/assets/icons/faq.png new file mode 100755 index 000000000..4250b5b81 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/faq.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/feature-icon.svg b/invoice_bill_select_orderlines/static/description/assets/icons/feature-icon.svg new file mode 100755 index 000000000..fa0ea6850 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/feature.png b/invoice_bill_select_orderlines/static/description/assets/icons/feature.png new file mode 100755 index 000000000..ac7a785c0 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/feature.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/gear.svg b/invoice_bill_select_orderlines/static/description/assets/icons/gear.svg new file mode 100755 index 000000000..0cc66b6ea --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/hero.gif b/invoice_bill_select_orderlines/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..eb99e45d5 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/hero.gif differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/hire-odoo.svg b/invoice_bill_select_orderlines/static/description/assets/icons/hire-odoo.svg new file mode 100755 index 000000000..e1ac089b0 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/hotel-black.png b/invoice_bill_select_orderlines/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/hotel-black.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/license.png b/invoice_bill_select_orderlines/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/license.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/life-ring-icon.svg b/invoice_bill_select_orderlines/static/description/assets/icons/life-ring-icon.svg new file mode 100755 index 000000000..3ae6e1d89 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/lifebuoy.png b/invoice_bill_select_orderlines/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/lifebuoy.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/mail.svg b/invoice_bill_select_orderlines/static/description/assets/icons/mail.svg new file mode 100755 index 000000000..1eedde695 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/manufacturing-black.png b/invoice_bill_select_orderlines/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/manufacturing-black.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/notes.png b/invoice_bill_select_orderlines/static/description/assets/icons/notes.png new file mode 100755 index 000000000..ee5e95404 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/notes.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/notification icon.svg b/invoice_bill_select_orderlines/static/description/assets/icons/notification icon.svg new file mode 100755 index 000000000..053189973 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/odoo-consultancy.svg b/invoice_bill_select_orderlines/static/description/assets/icons/odoo-consultancy.svg new file mode 100755 index 000000000..e05f65bde --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/odoo-licencing.svg b/invoice_bill_select_orderlines/static/description/assets/icons/odoo-licencing.svg new file mode 100755 index 000000000..2606c88b0 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/odoo-logo.png b/invoice_bill_select_orderlines/static/description/assets/icons/odoo-logo.png new file mode 100755 index 000000000..0e4d0eb5a Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/odoo-logo.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/patter.svg b/invoice_bill_select_orderlines/static/description/assets/icons/patter.svg new file mode 100755 index 000000000..25c9c0a8f --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/pattern1.png b/invoice_bill_select_orderlines/static/description/assets/icons/pattern1.png new file mode 100755 index 000000000..09ab0fb2d Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/pattern1.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/pos-black.png b/invoice_bill_select_orderlines/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/pos-black.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/puzzle-piece-icon.svg b/invoice_bill_select_orderlines/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100755 index 000000000..3e9ad9373 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/puzzle.png b/invoice_bill_select_orderlines/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/puzzle.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/replace-icon.svg b/invoice_bill_select_orderlines/static/description/assets/icons/replace-icon.svg new file mode 100755 index 000000000..d0e3a7af1 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/restaurant-black.png b/invoice_bill_select_orderlines/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/restaurant-black.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/screenshot-main.png b/invoice_bill_select_orderlines/static/description/assets/icons/screenshot-main.png new file mode 100755 index 000000000..575f8e676 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/screenshot-main.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/screenshot.png b/invoice_bill_select_orderlines/static/description/assets/icons/screenshot.png new file mode 100755 index 000000000..cef272529 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/screenshot.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/service-black.png b/invoice_bill_select_orderlines/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/service-black.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/skype-fill.svg b/invoice_bill_select_orderlines/static/description/assets/icons/skype-fill.svg new file mode 100755 index 000000000..c17423639 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/skype.png b/invoice_bill_select_orderlines/static/description/assets/icons/skype.png new file mode 100755 index 000000000..51b409fb3 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/skype.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/skype.svg b/invoice_bill_select_orderlines/static/description/assets/icons/skype.svg new file mode 100755 index 000000000..df3dad39b --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/star-1.svg b/invoice_bill_select_orderlines/static/description/assets/icons/star-1.svg new file mode 100755 index 000000000..7e55ab162 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/star-2.svg b/invoice_bill_select_orderlines/static/description/assets/icons/star-2.svg new file mode 100755 index 000000000..5ae9f507a --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/support.png b/invoice_bill_select_orderlines/static/description/assets/icons/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/support.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/test-1 - Copy.png b/invoice_bill_select_orderlines/static/description/assets/icons/test-1 - Copy.png new file mode 100755 index 000000000..f6a902663 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/test-1 - Copy.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/test-1.png b/invoice_bill_select_orderlines/static/description/assets/icons/test-1.png new file mode 100755 index 000000000..0908add2b Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/test-1.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/test-2.png b/invoice_bill_select_orderlines/static/description/assets/icons/test-2.png new file mode 100755 index 000000000..4671fe91e Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/test-2.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/trading-black.png b/invoice_bill_select_orderlines/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/trading-black.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/training.png b/invoice_bill_select_orderlines/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/training.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/translate.svg b/invoice_bill_select_orderlines/static/description/assets/icons/translate.svg new file mode 100755 index 000000000..af9c8a1aa --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/update.png b/invoice_bill_select_orderlines/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/update.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/user.png b/invoice_bill_select_orderlines/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/user.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/video.png b/invoice_bill_select_orderlines/static/description/assets/icons/video.png new file mode 100755 index 000000000..576705b17 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/video.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/whatsapp.png b/invoice_bill_select_orderlines/static/description/assets/icons/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/whatsapp.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/wrench-icon.svg b/invoice_bill_select_orderlines/static/description/assets/icons/wrench-icon.svg new file mode 100755 index 000000000..174b5a465 --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_bill_select_orderlines/static/description/assets/icons/wrench.png b/invoice_bill_select_orderlines/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/icons/wrench.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/modules/1.jpg b/invoice_bill_select_orderlines/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..3cb15fe01 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/modules/1.jpg differ diff --git a/invoice_bill_select_orderlines/static/description/assets/modules/2.jpg b/invoice_bill_select_orderlines/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..662cadcc3 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/modules/2.jpg differ diff --git a/invoice_bill_select_orderlines/static/description/assets/modules/3.jpg b/invoice_bill_select_orderlines/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..717a00443 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/modules/3.jpg differ diff --git a/invoice_bill_select_orderlines/static/description/assets/modules/4.png b/invoice_bill_select_orderlines/static/description/assets/modules/4.png new file mode 100644 index 000000000..00ebf54ad Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/modules/4.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/modules/5.jpg b/invoice_bill_select_orderlines/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..7c67e2eec Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/modules/5.jpg differ diff --git a/invoice_bill_select_orderlines/static/description/assets/modules/6.gif b/invoice_bill_select_orderlines/static/description/assets/modules/6.gif new file mode 100644 index 000000000..a35ece8df Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/modules/6.gif differ diff --git a/invoice_bill_select_orderlines/static/description/assets/screenshots/1.png b/invoice_bill_select_orderlines/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..04a208020 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/screenshots/1.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/screenshots/2.png b/invoice_bill_select_orderlines/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..74dba065c Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/screenshots/2.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/screenshots/3.png b/invoice_bill_select_orderlines/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..37eed4f0e Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/screenshots/3.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/screenshots/4.png b/invoice_bill_select_orderlines/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..29dfaceea Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/screenshots/4.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/screenshots/5.png b/invoice_bill_select_orderlines/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..25553789c Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/screenshots/5.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/screenshots/6.png b/invoice_bill_select_orderlines/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..f6980da38 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/screenshots/6.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/screenshots/7.png b/invoice_bill_select_orderlines/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..3799feeb8 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/screenshots/7.png differ diff --git a/invoice_bill_select_orderlines/static/description/assets/y18.jpg b/invoice_bill_select_orderlines/static/description/assets/y18.jpg new file mode 100755 index 000000000..eea1714f2 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/assets/y18.jpg differ diff --git a/invoice_bill_select_orderlines/static/description/banner.png b/invoice_bill_select_orderlines/static/description/banner.png new file mode 100644 index 000000000..451aebc6f Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/banner.png differ diff --git a/invoice_bill_select_orderlines/static/description/icon.png b/invoice_bill_select_orderlines/static/description/icon.png new file mode 100644 index 000000000..8ffe3c4c5 Binary files /dev/null and b/invoice_bill_select_orderlines/static/description/icon.png differ diff --git a/invoice_bill_select_orderlines/static/description/index.html b/invoice_bill_select_orderlines/static/description/index.html new file mode 100644 index 000000000..ae301680c --- /dev/null +++ b/invoice_bill_select_orderlines/static/description/index.html @@ -0,0 +1,1145 @@ + + + + + + Invoice Bill of Selected Orderlines + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+ +
+
+ +
+
+
+
+

+ Create invoice or bill for the selected order lines only. +

+

Invoice Or Bill For Selected Order Lines +

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

Key + Highlights

+
+
+
+
+ +
+
+ Can Create Invoice for Selected Order Lines. +
+ +
+
+
+
+
+ +
+
+ Can Create Bill for Selected Order Lines. +
+
+
+ +
+
+
+ +
+
+ Available in Odoo 18.0 Community,Odoo.sh and Enterprise. +
+ +
+
+
+
+ +
+
+
+ Invoice Bill of Selected Orderlines +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Create a Sale Order and + + Confirm It +

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

+ Select Options are + + available. +

+
+
+

+ After confirming the sale order, + we can see the selection box in each order line + which can be ready to invoice.
+ Also,we have options to select all and deselect all. +

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

+ Invoice + Creation +

+
+
+

+ Click Create invoice button, and choose Regular invoice option +

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

+ Invoice Created for the + + selected Order lines. +

+
+
+

+ Now we can see the invoice is created for the selected Order lines only +

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

+ Remaining + + + Invoice. +

+
+
+

+ We can create invoice for remaining order lines from the sale order by selecting the remaining order lines. +

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

+ Bill for + + + Selected Products. +

+
+
+

+ In the case of vendor bills we can select the purchase order line.Then click on the 'CREATE BILL'. +

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

+ Order + + + Lines Added. +

+
+
+

+ We can see the selected order lines are added in to the Bill. +

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

+ Selection of Specific Order Lines.

+
+ +
+
+
+
+
+
+ +
+

+ Invoice/Bill Creation Based on Selection.

+
+
+
+
+
+
+
+ +
+

+ Validation of Line Selection.

+
+
+

+ If no lines are selected, the system raises an error to prompt the user + to select lines before attempting to create an invoice or bill. +

+
+ +
+
+
+
+
+
+ +
+

+ Mass Selection with Select/Deselect Button

+
+
+

+ Add mass action buttons to allow users to select or + deselect all order lines at once. This provides convenience, + especially when dealing with many order lines.

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

+ select specific order lines by clicking the checkbox + added to each line. You can also use the "Select All" or + "Deselect All" buttons to quickly select or + deselect multiple lines. +

+
+
+ +
+ +
+

+ The system prevents the selection of order lines + that are fully invoiced or billed. + Only lines with an invoice status or bill status set + to 'to invoice' or 'to bill' can be selected. +

+
+
+ +
+ +
+

+ Yes, the system supports partial invoicing and billing. + If only part of an order line has been invoiced or billed, + the remaining part will still be eligible for + invoicing or billing. +

+
+
+ +
+ +
+

+ The system will raise a validation error, + prompting you to select at least one valid order line for + invoicing or billing. +

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

+ Latest Release 18.0.1.0.0 +

+ + 26th September, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + \ No newline at end of file diff --git a/invoice_bill_select_orderlines/views/purchase_order_views.xml b/invoice_bill_select_orderlines/views/purchase_order_views.xml new file mode 100644 index 000000000..d70af9400 --- /dev/null +++ b/invoice_bill_select_orderlines/views/purchase_order_views.xml @@ -0,0 +1,23 @@ + + + + + purchase.order.view.inherit.list.invoice.or.bill.for.selected.order.lines + + purchase.order + + + + + + +
+
+
+
+
+
diff --git a/invoice_bill_select_orderlines/views/sale_order_views.xml b/invoice_bill_select_orderlines/views/sale_order_views.xml new file mode 100644 index 000000000..ca8a92f2a --- /dev/null +++ b/invoice_bill_select_orderlines/views/sale_order_views.xml @@ -0,0 +1,23 @@ + + + + + sale.order.view.inherit.tree.invoice.or.bill.for.selected.order.lines + + sale.order + + + + + +
+ +
+
+
+
+