diff --git a/return_invoice_bill/README.rst b/return_invoice_bill/README.rst new file mode 100644 index 000000000..def96c15a --- /dev/null +++ b/return_invoice_bill/README.rst @@ -0,0 +1,50 @@ +.. 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 Odoo15. + +Configuration +============= +- Additional configuration not required + +Installation +============ +- www.odoo.com/documentation/15.0/setup/install.html +- Install our custom addon + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +GNU AFFERO GENERAL PUBLIC LICENSE v3.0 (AGPL-3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer: (v15) 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..7a420238c --- /dev/null +++ b/return_invoice_bill/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# 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..3536e376c --- /dev/null +++ b/return_invoice_bill/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# 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': '15.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 15. ', + '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.png'], + '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..498db9f4a --- /dev/null +++ b/return_invoice_bill/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 27.01.2024 +#### Version 15.0.1.0.0 +#### ADD + +- Initial commit for Return Invoices And Bills \ No newline at end of file diff --git a/return_invoice_bill/models/__init__.py b/return_invoice_bill/models/__init__.py new file mode 100644 index 000000000..b7f225ac2 --- /dev/null +++ b/return_invoice_bill/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# 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..0eee10ce7 --- /dev/null +++ b/return_invoice_bill/models/stock_picking.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# 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') + + @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 == 'in_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)] + } 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..4ca57ec3b --- /dev/null +++ b/return_invoice_bill/models/stock_return_picking.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Dhanya Babu (odoo@cybrosys.com) +# +# 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 action_returns_with_credit_note(self): + """Return wizard view ,To enter the cancel reason. """ + action = self.env["ir.actions.actions"]._for_xml_id( + "return_invoice_bill.action_return_move") + return action + + def action_returns_with_debit_note(self): + """Return wizard view ,To enter the cancel reason. """ + action = self.env["ir.actions.actions"]._for_xml_id( + "return_invoice_bill.action_return_move") + 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/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/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/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/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/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/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.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.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/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/modules/1.png b/return_invoice_bill/static/description/assets/modules/1.png new file mode 100644 index 000000000..a5acbabc2 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.png b/return_invoice_bill/static/description/assets/modules/2.png new file mode 100644 index 000000000..004c61a9e Binary files /dev/null and b/return_invoice_bill/static/description/assets/modules/2.png 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..6547c3081 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.png b/return_invoice_bill/static/description/assets/modules/4.png new file mode 100644 index 000000000..04d502e26 Binary files /dev/null and b/return_invoice_bill/static/description/assets/modules/4.png 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..737c0a22f 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.png b/return_invoice_bill/static/description/assets/modules/6.png new file mode 100644 index 000000000..09e2d45b2 Binary files /dev/null and b/return_invoice_bill/static/description/assets/modules/6.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..49cecc512 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/hero.gif differ diff --git a/return_invoice_bill/static/description/assets/screenshots/retuen1.png b/return_invoice_bill/static/description/assets/screenshots/retuen1.png new file mode 100644 index 000000000..23b0b2f52 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/retuen1.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/retuen3.png b/return_invoice_bill/static/description/assets/screenshots/retuen3.png new file mode 100644 index 000000000..5ae04aecb Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/retuen3.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return10.png b/return_invoice_bill/static/description/assets/screenshots/return10.png new file mode 100644 index 000000000..eb1960ab3 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return10.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return11.png b/return_invoice_bill/static/description/assets/screenshots/return11.png new file mode 100644 index 000000000..6cc3ecf48 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return11.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return12.png b/return_invoice_bill/static/description/assets/screenshots/return12.png new file mode 100644 index 000000000..74570773e Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return12.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return13.png b/return_invoice_bill/static/description/assets/screenshots/return13.png new file mode 100644 index 000000000..57dd2a09f Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return13.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return14.png b/return_invoice_bill/static/description/assets/screenshots/return14.png new file mode 100644 index 000000000..92b302c42 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return14.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return15.png b/return_invoice_bill/static/description/assets/screenshots/return15.png new file mode 100644 index 000000000..59538c49c Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return15.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return16.png b/return_invoice_bill/static/description/assets/screenshots/return16.png new file mode 100644 index 000000000..4c21bc428 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return16.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return17.png b/return_invoice_bill/static/description/assets/screenshots/return17.png new file mode 100644 index 000000000..7ec3eddc2 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return17.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return177.png b/return_invoice_bill/static/description/assets/screenshots/return177.png new file mode 100644 index 000000000..21e1b7cd5 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return177.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return2.png b/return_invoice_bill/static/description/assets/screenshots/return2.png new file mode 100644 index 000000000..705a1b502 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return2.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return4.png b/return_invoice_bill/static/description/assets/screenshots/return4.png new file mode 100644 index 000000000..93b07492b Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return4.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return5.png b/return_invoice_bill/static/description/assets/screenshots/return5.png new file mode 100644 index 000000000..1ee9aff4a Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return5.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return6.png b/return_invoice_bill/static/description/assets/screenshots/return6.png new file mode 100644 index 000000000..c092de4f2 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return6.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return7.png b/return_invoice_bill/static/description/assets/screenshots/return7.png new file mode 100644 index 000000000..bc495a475 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return7.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return8.png b/return_invoice_bill/static/description/assets/screenshots/return8.png new file mode 100644 index 000000000..3c6e20d76 Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return8.png differ diff --git a/return_invoice_bill/static/description/assets/screenshots/return9.png b/return_invoice_bill/static/description/assets/screenshots/return9.png new file mode 100644 index 000000000..6680a9bbc Binary files /dev/null and b/return_invoice_bill/static/description/assets/screenshots/return9.png differ diff --git a/return_invoice_bill/static/description/banner.png b/return_invoice_bill/static/description/banner.png new file mode 100644 index 000000000..469540f33 Binary files /dev/null and b/return_invoice_bill/static/description/banner.png 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..29a841bff 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..05079e500 --- /dev/null +++ b/return_invoice_bill/static/description/index.html @@ -0,0 +1,721 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Return Invoices And Bills

+

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

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

+ Explore This + Module

+
+ + + +
+
+ +
+

+ Overview +

+
+
+
+ This module helps to create Credit note for invoice and debit note from + picking. +
+
+ + +
+
+ +
+

+ Features +

+
+
+
+
+ + Community & + Enterprise Support. +
+
+ + 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. +
+
+
+ + +
+
+ +
+

+ Screenshots +

+
+
+
+ +
+

+ 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.

+ +
+
+

+ Confirm the Invoice. +

+

+ Form view of Invoice.

+ +
+

+ 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. +

+ +
+
+

+ We can see the Credit Note Smart Button. +

+ +
+
+

+ We can see the created Credit Note List View. +

+ +
+
+

+ We can see the created Credit Note Form View. +

+ +
+
+

+ Create a Purchase Order.

+

+ Create a Purchase Order and Confirm the purchase order.

+ +
+
+

+ Validate the Receipt. +

+

+ Validate the Receipt.

+ +
+
+

+ Create Bill. +

+

+ Validate the Receipt.

+ +
+
+

+ Specify the Reason. +

+

+ Specify the Reason for returning.

+ +
+
+

+ Click Return With Reverse Entry. +

+

+ Reverse Entry will be generated.

+ +
+
+

+ In the Debit note Smart Button we can see the reverse debit note. +

+ +
+ + + +
+
+ +
+

+ Related + 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

+
+
+
+
+ + +
+
+ +
+

+ Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need + help? Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on + WhatsApp!

+ +

+ +91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+
+ 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..812173877 --- /dev/null +++ b/return_invoice_bill/views/stock_picking_views.xml @@ -0,0 +1,23 @@ + + + + + stock.picking.view.form.inherit.return.invoice.bill + + stock.picking + + + + +