diff --git a/return_invoice_bill/README.rst b/return_invoice_bill/README.rst new file mode 100644 index 000000000..2b338a97f --- /dev/null +++ b/return_invoice_bill/README.rst @@ -0,0 +1,51 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Return Invoices And Bills +========================= +This module allow to return the invoice or bill while picking the product in Odoo17. + +Company +------- +* `Cybrosys Techno Solutions `__ + +Configuration +============= +- Additional configuration not required + +Installation +============ +- www.odoo.com/documentation/17.0/setup/install.html +- Install our custom addon + +License +------- +GNU AFFERO GENERAL PUBLIC LICENSE v3.0 (AGPL-3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer: (V17) Kailas Krishna, + (V16) Dhanya Babu, + 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/return_invoice_bill/__init__.py b/return_invoice_bill/__init__.py new file mode 100644 index 000000000..69ffa0686 --- /dev/null +++ b/return_invoice_bill/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +from . import models +from . import wizard diff --git a/return_invoice_bill/__manifest__.py b/return_invoice_bill/__manifest__.py new file mode 100644 index 000000000..a5d320bf8 --- /dev/null +++ b/return_invoice_bill/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +{ + "name": "Return Invoices And Bills", + "version": "17.0.1.0.0", + "category": "Sales", + "summary": "For creating credit note and debit note while picking.", + "description": "We can create credit note or debit note while return the" + " picking by using this module in Odoo 17. ", + "author": "Cybrosys Techno Solutions", + "company": "Cybrosys Techno Solutions", + "maintainer": "Cybrosys Techno Solutions", + "website": "https://www.cybrosys.com", + "depends": ["sale_management", "stock", "purchase"], + "data": [ + "security/ir.model.access.csv", + "views/stock_picking_views.xml", + "views/stock_return_picking_views.xml", + "wizard/return_move_views.xml", + ], + "images": ["static/description/banner.jpg"], + "license": "AGPL-3", + "installable": True, + "auto_install": False, + "application": False, +} diff --git a/return_invoice_bill/doc/RELEASE_NOTES.md b/return_invoice_bill/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..2cd19f6ae --- /dev/null +++ b/return_invoice_bill/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 03.04.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Return Invoices And Bills diff --git a/return_invoice_bill/models/__init__.py b/return_invoice_bill/models/__init__.py new file mode 100644 index 000000000..07bd7f5e8 --- /dev/null +++ b/return_invoice_bill/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +from . import stock_picking +from . import stock_return_picking diff --git a/return_invoice_bill/models/stock_picking.py b/return_invoice_bill/models/stock_picking.py new file mode 100644 index 000000000..76d06ce55 --- /dev/null +++ b/return_invoice_bill/models/stock_picking.py @@ -0,0 +1,83 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +from odoo import api, fields, models, _ + + +class StockPicking(models.Model): + """This class extends the 'stock.picking' model to add a method for + retrieving credit notes and debit notes related + to the picking, and generating actions for viewing them.""" + _inherit = 'stock.picking' + + picking_type_name = fields.Char(string='Picking Type Name', + help='Name of picking type') + return_invoice_count = fields.Char(string="Counts", + compute='_compute_return_invoice_count', + help="counts of return invoices") + is_paid = fields.Boolean(string='Is Paid', + help='Value will be True when order has paid ' + 'otherwise False.') + + @api.model + def create(self, vals): + """This method overrides the default create method to set the + 'picking_type_name' field based on the 'picking_type_id' field + before creating the record.""" + + self.picking_type_name = self.picking_type_id.name + return super(StockPicking, self).create(vals) + + def action_get_credit_note(self): + """Generates an action to view reversal credit notes + based on the context.""" + self.ensure_one() + credit_notes = self.sale_id.invoice_ids.filtered( + lambda x: x.move_type == 'out_refund') + return { + 'type': 'ir.actions.act_window', + 'name': _( + 'Reversal of Credit Note: %s') % self.sale_id.invoice_ids.filtered( + lambda x: x.move_type == 'out_invoice').name, + 'res_model': 'account.move', + 'view_mode': 'tree,form', + 'domain': [('id', 'in', credit_notes.ids)], + } + + def action_get_debit_note(self): + """Generates an action to view reversal debit notes + based on the context.""" + debit_notes = self.purchase_id.invoice_ids.filtered( + lambda x: x.move_type == 'in_refund') + self.ensure_one() + return { + 'type': 'ir.actions.act_window', + 'name': _( + 'Reversal of Debit Note: %s') % self.purchase_id.invoice_ids.filtered( + lambda x: x.move_type == 'in_invoice').name, + 'res_model': 'account.move', + 'view_mode': 'tree,form', + 'domain': [('id', 'in', debit_notes.ids)] + } + + @api.depends('return_invoice_count') + def _compute_return_invoice_count(self): + self.return_invoice_count = self.return_count diff --git a/return_invoice_bill/models/stock_return_picking.py b/return_invoice_bill/models/stock_return_picking.py new file mode 100644 index 000000000..9518ca44c --- /dev/null +++ b/return_invoice_bill/models/stock_return_picking.py @@ -0,0 +1,86 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################## +from odoo import api, fields, models + + +class StockReturnPicking(models.TransientModel): + """Inherited this class to display the view, to add the cancel reason.""" + _inherit = 'stock.return.picking' + + picking_type_name = fields.Char(string='Picking Type Name', + help='Name of the picking type') + + @api.model + def default_get(self, fields): + """Override of default_get method to set default values for fields + in the wizard.""" + result = super(StockReturnPicking, self).default_get(fields) + active_model = self.env.context['active_model'] + active_id = self.env.context['active_id'] + if active_model == 'stock.picking' and active_id: + stock_picking = self.env[active_model].browse(active_id) + result['picking_type_name'] = stock_picking.picking_type_id.name + return result + + def _update_stock_picking(self): + """Update the 'is_paid' field of the active stock picking to indicate + payment. This function is typically called when processing returns with + credit or debit notes.""" + active_model = self.env.context.get('active_model') + active_id = self.env.context.get('active_id') + + if active_model == 'stock.picking' and active_id: + stock_picking = self.env[active_model].browse(active_id) + stock_picking.is_paid = True + + def _get_return_action(self): + """ + Retrieve the action for returning a move, specifically for credit notes. + Returns: + ir.actions.actions: Action object for returning moves with credit + notes. + """ + return self.env["ir.actions.actions"]._for_xml_id("return_invoice_bill.return_move_action") + + def action_returns_with_credit_note(self): + """ + Perform the action of returning moves with credit notes and update the + stock picking accordingly. + + Returns: + ir.actions.actions: Action object for returning moves with credit + notes. + """ + self._update_stock_picking() + return self._get_return_action() + + def action_returns_with_debit_note(self): + """ + Perform the action of returning moves with debit notes and update the + stock picking accordingly. + + Returns: + ir.actions.actions: Action object for returning moves with debit + notes. + """ + self._update_stock_picking() + return self._get_return_action() diff --git a/return_invoice_bill/security/ir.model.access.csv b/return_invoice_bill/security/ir.model.access.csv new file mode 100644 index 000000000..0c79137c7 --- /dev/null +++ b/return_invoice_bill/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_return_move_user,access.return.move.user,model_return_move,base.group_user,1,1,1,1 diff --git a/return_invoice_bill/static/description/assets/icons/capture (1).png b/return_invoice_bill/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/capture (1).png differ diff --git a/return_invoice_bill/static/description/assets/icons/check.png b/return_invoice_bill/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/check.png differ diff --git a/return_invoice_bill/static/description/assets/icons/chevron.png b/return_invoice_bill/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/chevron.png differ diff --git a/return_invoice_bill/static/description/assets/icons/cogs.png b/return_invoice_bill/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/cogs.png differ diff --git a/return_invoice_bill/static/description/assets/icons/consultation.png b/return_invoice_bill/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/consultation.png differ diff --git a/return_invoice_bill/static/description/assets/icons/ecom-black.png b/return_invoice_bill/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/ecom-black.png differ diff --git a/return_invoice_bill/static/description/assets/icons/education-black.png b/return_invoice_bill/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/education-black.png differ diff --git a/return_invoice_bill/static/description/assets/icons/hotel-black.png b/return_invoice_bill/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/hotel-black.png differ diff --git a/return_invoice_bill/static/description/assets/icons/img.png b/return_invoice_bill/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/img.png differ diff --git a/return_invoice_bill/static/description/assets/icons/license.png b/return_invoice_bill/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/license.png differ diff --git a/return_invoice_bill/static/description/assets/icons/lifebuoy.png b/return_invoice_bill/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/lifebuoy.png differ diff --git a/return_invoice_bill/static/description/assets/icons/manufacturing-black.png b/return_invoice_bill/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/manufacturing-black.png differ diff --git a/return_invoice_bill/static/description/assets/icons/photo-capture.png b/return_invoice_bill/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/photo-capture.png differ diff --git a/return_invoice_bill/static/description/assets/icons/pos-black.png b/return_invoice_bill/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/pos-black.png differ diff --git a/return_invoice_bill/static/description/assets/icons/puzzle.png b/return_invoice_bill/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/puzzle.png differ diff --git a/return_invoice_bill/static/description/assets/icons/restaurant-black.png b/return_invoice_bill/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/restaurant-black.png differ diff --git a/return_invoice_bill/static/description/assets/icons/service-black.png b/return_invoice_bill/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/service-black.png differ diff --git a/return_invoice_bill/static/description/assets/icons/trading-black.png b/return_invoice_bill/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/trading-black.png differ diff --git a/return_invoice_bill/static/description/assets/icons/training.png b/return_invoice_bill/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/training.png differ diff --git a/return_invoice_bill/static/description/assets/icons/update.png b/return_invoice_bill/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/update.png differ diff --git a/return_invoice_bill/static/description/assets/icons/user.png b/return_invoice_bill/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/user.png differ diff --git a/return_invoice_bill/static/description/assets/icons/wrench.png b/return_invoice_bill/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/return_invoice_bill/static/description/assets/icons/wrench.png differ diff --git a/return_invoice_bill/static/description/assets/misc/Cybrosys R.png b/return_invoice_bill/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/Cybrosys R.png differ diff --git a/return_invoice_bill/static/description/assets/misc/categories.png b/return_invoice_bill/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/categories.png differ diff --git a/return_invoice_bill/static/description/assets/misc/check-box.png b/return_invoice_bill/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/check-box.png differ diff --git a/return_invoice_bill/static/description/assets/misc/compass.png b/return_invoice_bill/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/compass.png differ diff --git a/return_invoice_bill/static/description/assets/misc/corporate.png b/return_invoice_bill/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/corporate.png differ diff --git a/return_invoice_bill/static/description/assets/misc/customer-support.png b/return_invoice_bill/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/customer-support.png differ diff --git a/return_invoice_bill/static/description/assets/misc/cybrosys-logo.png b/return_invoice_bill/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/cybrosys-logo.png differ diff --git a/return_invoice_bill/static/description/assets/misc/email.svg b/return_invoice_bill/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/return_invoice_bill/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/return_invoice_bill/static/description/assets/misc/features.png b/return_invoice_bill/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/features.png differ diff --git a/return_invoice_bill/static/description/assets/misc/logo.png b/return_invoice_bill/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/logo.png differ diff --git a/return_invoice_bill/static/description/assets/misc/phone.svg b/return_invoice_bill/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/return_invoice_bill/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/return_invoice_bill/static/description/assets/misc/pictures.png b/return_invoice_bill/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/pictures.png differ diff --git a/return_invoice_bill/static/description/assets/misc/pie-chart.png b/return_invoice_bill/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/pie-chart.png differ diff --git a/return_invoice_bill/static/description/assets/misc/right-arrow.png b/return_invoice_bill/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/right-arrow.png differ diff --git a/return_invoice_bill/static/description/assets/misc/star (1) 2.svg b/return_invoice_bill/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/return_invoice_bill/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/return_invoice_bill/static/description/assets/misc/star.png b/return_invoice_bill/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/star.png differ diff --git a/return_invoice_bill/static/description/assets/misc/support (1) 1.svg b/return_invoice_bill/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/return_invoice_bill/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/return_invoice_bill/static/description/assets/misc/support-email.svg b/return_invoice_bill/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/return_invoice_bill/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/return_invoice_bill/static/description/assets/misc/support.png b/return_invoice_bill/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/support.png differ diff --git a/return_invoice_bill/static/description/assets/misc/tick-mark.svg b/return_invoice_bill/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/return_invoice_bill/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/return_invoice_bill/static/description/assets/misc/whatsapp 1.svg b/return_invoice_bill/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/return_invoice_bill/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/return_invoice_bill/static/description/assets/misc/whatsapp.png b/return_invoice_bill/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/return_invoice_bill/static/description/assets/misc/whatsapp.png differ diff --git a/return_invoice_bill/static/description/assets/misc/whatsapp.svg b/return_invoice_bill/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/return_invoice_bill/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/return_invoice_bill/static/description/assets/modules/1.png b/return_invoice_bill/static/description/assets/modules/1.png new file mode 100644 index 000000000..c8e6c355a Binary files /dev/null and b/return_invoice_bill/static/description/assets/modules/1.png differ diff --git a/return_invoice_bill/static/description/assets/modules/2.jpg b/return_invoice_bill/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..0cbac311c Binary files /dev/null and b/return_invoice_bill/static/description/assets/modules/2.jpg differ diff --git a/return_invoice_bill/static/description/assets/modules/3.png b/return_invoice_bill/static/description/assets/modules/3.png new file mode 100644 index 000000000..0cdf4ccf9 Binary files /dev/null and b/return_invoice_bill/static/description/assets/modules/3.png differ diff --git a/return_invoice_bill/static/description/assets/modules/4.jpg b/return_invoice_bill/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..d8acd14d1 Binary files /dev/null and b/return_invoice_bill/static/description/assets/modules/4.jpg differ diff --git a/return_invoice_bill/static/description/assets/modules/5.png b/return_invoice_bill/static/description/assets/modules/5.png new file mode 100644 index 000000000..3ecdf3c2b Binary files /dev/null and b/return_invoice_bill/static/description/assets/modules/5.png differ diff --git a/return_invoice_bill/static/description/assets/modules/6.jpg b/return_invoice_bill/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..686563477 Binary files /dev/null and b/return_invoice_bill/static/description/assets/modules/6.jpg differ diff --git a/return_invoice_bill/static/description/assets/screenshots/1.png b/return_invoice_bill/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..c3563b5f3 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/1.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/10.png b/return_invoice_bill/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..fcb28bfdd Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/10.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/11.png b/return_invoice_bill/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..01f4dc425 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/11.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/12.png b/return_invoice_bill/static/description/assets/screenshots/12.png new file mode 100644 index 000000000..3a369d25d Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/12.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/13.png b/return_invoice_bill/static/description/assets/screenshots/13.png new file mode 100644 index 000000000..b269903c0 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/13.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/14.png b/return_invoice_bill/static/description/assets/screenshots/14.png new file mode 100644 index 000000000..04fac36b9 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/14.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/15.png b/return_invoice_bill/static/description/assets/screenshots/15.png new file mode 100644 index 000000000..26f153593 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/15.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/16.png b/return_invoice_bill/static/description/assets/screenshots/16.png new file mode 100644 index 000000000..9592fe27f Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/16.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/2.png b/return_invoice_bill/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..60adbacdb Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/2.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/3.png b/return_invoice_bill/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..4ecfdfad7 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/3.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/4.png b/return_invoice_bill/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..61d5794a1 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/4.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/5.png b/return_invoice_bill/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..ea5d1b39d Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/5.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/6.png b/return_invoice_bill/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..7fcd90e4d Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/6.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/7.png b/return_invoice_bill/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..b31b2e98a Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/7.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/8.png b/return_invoice_bill/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..586df0e4b Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/8.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/9.png b/return_invoice_bill/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..6e5860882 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/9.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/hero.gif b/return_invoice_bill/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..0189fce60 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/hero.gif differ diff --git a/return_invoice_bill/static/description/banner.jpg b/return_invoice_bill/static/description/banner.jpg new file mode 100644 index 000000000..83dce35fb Binary files /dev/null and b/return_invoice_bill/static/description/banner.jpg differ diff --git a/return_invoice_bill/static/description/icon.png b/return_invoice_bill/static/description/icon.png new file mode 100644 index 000000000..b97fb17f9 Binary files /dev/null and b/return_invoice_bill/static/description/icon.png differ diff --git a/return_invoice_bill/static/description/index.html b/return_invoice_bill/static/description/index.html new file mode 100644 index 000000000..40ca38508 --- /dev/null +++ b/return_invoice_bill/static/description/index.html @@ -0,0 +1,971 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+
+
+
+
+

+ Return Invoices And Bills

+

+ Allows Us To Return The Credit Note And Debit Note From The Corresponding Return Form. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Create the credit note while returning the product.

+
+
+
+
+
+
+ +
+
+

+ Create the debit note while receiving the product.

+
+
+
+
+
+
+ +
+
+

+ We can see the Credit note in Return Picking.

+
+
+
+
+
+
+ +
+
+

+ We can see the Debit note in Return Picking.

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

+ Create a Sale Order +

+

+ Create a Sale Order and Confirm the sale order. +

+
+
+
+
+
+
+ +
+
+

+ Validate the Delivery +

+

+ Validate the delivery of products. +

+
+
+
+
+
+
+ +
+
+

+ Confirm the Invoice +

+

+ Confirm the invoice after the delivery validation. +

+
+
+
+
+
+
+ +
+
+

+ Invoice in Posted state +

+

+ Form view of Invoice. Invoice should be posted. +

+
+
+
+
+
+
+ +
+
+

+ Return the Product with Credit Note +

+

+ By clicking the RETURN Button we will get a wizard. +

+
+
+
+
+
+
+ +
+
+

+ We can return the product and invoice by clicking the RETURN WITH CREDIT NOTE Button +

+
+
+
+
+
+
+ +
+
+

+ Specify the Return Reason +

+
+
+
+
+
+
+ +
+
+

+ Redirect to the Reverse Invoice of the Return. +

+
+
+
+
+
+
+ +
+
+

+ We can see the Credit Note Smart Button. +

+

+ All the Return Invoices can be view inside it. +

+
+
+
+
+
+
+ +
+
+

+ Create a Purchase Order +

+

+ Create a Purchase Order and Confirm the purchase order. +

+
+
+
+
+
+
+ +
+
+

+ Validate the Receipt +

+

+ Validate the Receipt. +

+
+
+
+
+
+
+ +
+
+

+ Create Bill +

+

+ Validate the Receipt. +

+
+
+
+
+
+
+ +
+
+

+ Return the Product and click the RETURN WITH DEBIT NOTE Button +

+
+
+
+
+
+
+ +
+
+

+ Specify the Reason +

+

+ Specify the Reason for returning. +

+
+
+
+
+
+
+ +
+
+

+ Redirect to the Reverse Bill of the Return +

+
+
+
+
+
+
+ +
+
+

+ We can see the Debit Note Smart Button. +

+

+ All the Return Invoices can be view inside it. +

+
+
+
+
+
+
+
    +
  • + + We can see the Debit note in Return Picking. + +
  • +
  • + + We can see the Credit note in Return Picking. + +
  • +
  • + + Create the credit note while returning the product. + +
  • +
  • + + Create the debit note while receiving the product. + +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:04th April 2024 +
+

+ Initial Commit for Return Invoices And Bills.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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

+
+
+
+
+
+
+

+ Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got + questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to + us on WhatsApp!

+
+91 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/return_invoice_bill/views/stock_picking_views.xml b/return_invoice_bill/views/stock_picking_views.xml new file mode 100644 index 000000000..0b079429c --- /dev/null +++ b/return_invoice_bill/views/stock_picking_views.xml @@ -0,0 +1,27 @@ + + + + + stock.picking.view.form.inherit.return.invoice.bill + + stock.picking + + + + + + + + + + + diff --git a/return_invoice_bill/views/stock_return_picking_views.xml b/return_invoice_bill/views/stock_return_picking_views.xml new file mode 100644 index 000000000..b3f8124f3 --- /dev/null +++ b/return_invoice_bill/views/stock_return_picking_views.xml @@ -0,0 +1,23 @@ + + + + + + stock.return.picking.view.form.inherit.return.invoice.bill + + stock.return.picking + + + + +