diff --git a/payment_status_in_sale/README.rst b/payment_status_in_sale/README.rst new file mode 100644 index 000000000..91112c95d --- /dev/null +++ b/payment_status_in_sale/README.rst @@ -0,0 +1,46 @@ +.. 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 + +Sale Order Payment Status +========================= +* This module provides sale order payment details such as invoice status, amount due, date of payment and amount etc. + +Configuration +============= +* No additional configuration is needed to use this module. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +======= +GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) +(http://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer: (V17) Shyamgeeth PP, 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/payment_status_in_sale/__init__.py b/payment_status_in_sale/__init__.py new file mode 100644 index 000000000..9d1cb6859 --- /dev/null +++ b/payment_status_in_sale/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Shyamgeeth P.P () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################### +from . import models diff --git a/payment_status_in_sale/__manifest__.py b/payment_status_in_sale/__manifest__.py new file mode 100644 index 000000000..75c3facfb --- /dev/null +++ b/payment_status_in_sale/__manifest__.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Shyamgeeth P.P () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +################################################################################ +{ + 'name': 'Sale Order Payment Status', + 'version': '17.0.1.0.0', + 'category': 'Sales', + 'summary': 'Sale order payment status,payment details and amount due', + 'description': """This module used to get the information regarding invoice + of the corresponding sale order in the sale order page. It includes sale + order payment status, payment details and amount due.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['sale_management', 'account'], + 'data': ['views/sale_order_views.xml'], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/payment_status_in_sale/doc/RELEASE_NOTES.md b/payment_status_in_sale/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..f4d3b0d50 --- /dev/null +++ b/payment_status_in_sale/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 04.05.2024 +#### Version 17.0.1.0.0 +##### ADD +- Initial commit for Sale Order Payment Status. diff --git a/payment_status_in_sale/models/__init__.py b/payment_status_in_sale/models/__init__.py new file mode 100644 index 000000000..c853c104c --- /dev/null +++ b/payment_status_in_sale/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Shyamgeeth P.P () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################### +from . import sale_order diff --git a/payment_status_in_sale/models/sale_order.py b/payment_status_in_sale/models/sale_order.py new file mode 100644 index 000000000..bf9e025bb --- /dev/null +++ b/payment_status_in_sale/models/sale_order.py @@ -0,0 +1,176 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Shyamgeeth P.P () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) 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 Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################### +from odoo import api, fields, models, _ + + +class SaleOrder(models.Model): + """Extend the base Sale Order model to add custom fields and behaviors + for Sale Order Payment Status.""" + + _inherit = "sale.order" + _description = 'Sale order' + + payment_status = fields.Char(string="Payment Status", + compute="_compute_payment_status", + help="Field to check the payment status of the" + " sale order") + payment_details = fields.Binary(string="Payment Details", + compute="_compute_payment_details", + help="Shows the payment done details " + "including date and amount") + amount_due = fields.Float(string="Amount Due", + compute='_compute_amount_due', + help="Shows the amount that in due for the " + "corresponding sale order") + invoice_state = fields.Char(string="Invoice State", + compute="_compute_invoice_state", + help="Field to check the invoice state of " + "sale order") + + @api.depends('invoice_ids') + def _compute_payment_status(self): + """ The function will compute the payment status of the sale order, if + an invoice is created for the corresponding sale order.Payment status + will be either in paid,not paid,partially paid, reversed etc.""" + for order in self: + order.payment_status = 'No invoice' + payment_states = order.invoice_ids.mapped('payment_state') + status_length = len(payment_states) + if 'partial' in payment_states: + order.payment_status = 'Partially Paid' + elif 'not_paid' in payment_states and any( + (True for x in ['paid', 'in_payment', 'partial'] if + x in payment_states)): + order.payment_status = 'Partially Paid' + elif 'not_paid' in payment_states and status_length == \ + payment_states.count('not_paid'): + order.payment_status = 'Not Paid' + elif 'paid' in payment_states and status_length == \ + payment_states.count('paid') and order.amount_due == 0: + order.payment_status = 'Paid' + elif 'paid' in payment_states and status_length == \ + payment_states.count('paid') and order.amount_due != 0: + order.payment_status = 'Partially Paid' + elif 'in_payment' in payment_states and status_length == \ + payment_states.count('in_payment'): + order.payment_status = 'In Payment' + elif 'reversed' in payment_states and status_length == \ + payment_states.count('reversed'): + order.payment_status = 'Reversed' + else: + order.payment_status = 'No invoice' + + @api.depends('invoice_ids') + def _compute_invoice_state(self): + """ The function will compute the state of the invoice , Once an invoice + is existing in a sale order. """ + for rec in self: + rec.invoice_state = 'No invoice' + for order in rec.invoice_ids: + if order.state == 'posted': + rec.invoice_state = 'posted' + elif order.state != 'posted': + rec.invoice_state = 'draft' + else: + rec.invoice_state = 'No invoice' + + @api.depends('invoice_ids') + def _compute_amount_due(self): + """The function is used to compute the amount due from the invoice and + if payment is registered.""" + for rec in self: + amount_due = 0 + for order in rec.invoice_ids: + amount_due = amount_due + (order.amount_total - + order.amount_residual) + rec.amount_due = rec.amount_total - amount_due + + def action_open_business_doc(self): + """ This method is intended to be used in the context of an + account.move record. + It retrieves the associated payment record and opens it in a new window. + + :return: A dictionary describing the action to be performed. + :rtype: dict """ + name = _("Journal Entry") + move = self.env['account.move'].browse(self.id) + res_model = 'account.payment' + res_id = move.payment_id.id + return { + 'name': name, + 'type': 'ir.actions.act_window', + 'view_mode': 'form', + 'views': [(False, 'form')], + 'res_model': res_model, + 'res_id': res_id, + 'target': 'current', + } + + def js_remove_outstanding_partial(self, partial_id): + """ Called by the 'payment' widget to remove a reconciled entry to the + present invoice. + + :param partial_id: The id of an existing partial reconciled with the + current invoice. + """ + self.ensure_one() + partial = self.env['account.partial.reconcile'].browse(partial_id) + return partial.unlink() + + @api.depends('invoice_ids') + def _compute_payment_details(self): + """ Compute the payment details from invoices and added into the sale + order form view. """ + for rec in self: + payment = [] + rec.payment_details = False + if rec.invoice_ids: + for line in rec.invoice_ids: + if line.invoice_payments_widget: + for pay in line.invoice_payments_widget['content']: + payment.append(pay) + for line in rec.invoice_ids: + if line.invoice_payments_widget: + payment_line = line.invoice_payments_widget + payment_line['content'] = payment + rec.payment_details = payment_line + break + rec.payment_details = False + + def action_register_payment(self): + """ Open the account.payment.register wizard to pay the selected journal + entries. + :return: An action opening the account.payment.register wizard. + """ + self.ensure_one() + return { + 'name': _('Register Payment'), + 'res_model': 'account.payment.register', + 'view_mode': 'form', + 'context': { + 'active_model': 'account.move', + 'active_ids': self.invoice_ids.ids, + }, + 'target': 'new', + 'type': 'ir.actions.act_window', + } diff --git a/payment_status_in_sale/static/description/assets/icons/capture (1).png b/payment_status_in_sale/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/capture (1).png differ diff --git a/payment_status_in_sale/static/description/assets/icons/check.png b/payment_status_in_sale/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/check.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/chevron.png b/payment_status_in_sale/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/chevron.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/cogs.png b/payment_status_in_sale/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/cogs.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/consultation.png b/payment_status_in_sale/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/consultation.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/ecom-black.png b/payment_status_in_sale/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/ecom-black.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/education-black.png b/payment_status_in_sale/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/education-black.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/hotel-black.png b/payment_status_in_sale/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/hotel-black.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/img.png b/payment_status_in_sale/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/img.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/license.png b/payment_status_in_sale/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/license.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/lifebuoy.png b/payment_status_in_sale/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/lifebuoy.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/manufacturing-black.png b/payment_status_in_sale/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/manufacturing-black.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/photo-capture.png b/payment_status_in_sale/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/photo-capture.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/pos-black.png b/payment_status_in_sale/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/pos-black.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/puzzle.png b/payment_status_in_sale/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/puzzle.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/restaurant-black.png b/payment_status_in_sale/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/restaurant-black.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/service-black.png b/payment_status_in_sale/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/service-black.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/trading-black.png b/payment_status_in_sale/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/trading-black.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/training.png b/payment_status_in_sale/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/training.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/update.png b/payment_status_in_sale/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/update.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/user.png b/payment_status_in_sale/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/user.png differ diff --git a/payment_status_in_sale/static/description/assets/icons/wrench.png b/payment_status_in_sale/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/payment_status_in_sale/static/description/assets/icons/wrench.png differ diff --git a/payment_status_in_sale/static/description/assets/misc/Cybrosys R.png b/payment_status_in_sale/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/misc/Cybrosys R.png differ diff --git a/payment_status_in_sale/static/description/assets/misc/email.svg b/payment_status_in_sale/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/payment_status_in_sale/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/payment_status_in_sale/static/description/assets/misc/phone.svg b/payment_status_in_sale/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/payment_status_in_sale/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/payment_status_in_sale/static/description/assets/misc/star (1) 2.svg b/payment_status_in_sale/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/payment_status_in_sale/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/payment_status_in_sale/static/description/assets/misc/support (1) 1.svg b/payment_status_in_sale/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/payment_status_in_sale/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/payment_status_in_sale/static/description/assets/misc/support-email.svg b/payment_status_in_sale/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/payment_status_in_sale/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/payment_status_in_sale/static/description/assets/misc/tick-mark.svg b/payment_status_in_sale/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/payment_status_in_sale/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/payment_status_in_sale/static/description/assets/misc/whatsapp 1.svg b/payment_status_in_sale/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/payment_status_in_sale/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/payment_status_in_sale/static/description/assets/misc/whatsapp.svg b/payment_status_in_sale/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/payment_status_in_sale/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/payment_status_in_sale/static/description/assets/modules/m1.png b/payment_status_in_sale/static/description/assets/modules/m1.png new file mode 100644 index 000000000..acb4c76c6 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/modules/m1.png differ diff --git a/payment_status_in_sale/static/description/assets/modules/m2.png b/payment_status_in_sale/static/description/assets/modules/m2.png new file mode 100644 index 000000000..3ef91f771 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/modules/m2.png differ diff --git a/payment_status_in_sale/static/description/assets/modules/m3.png b/payment_status_in_sale/static/description/assets/modules/m3.png new file mode 100644 index 000000000..72febf6ae Binary files /dev/null and b/payment_status_in_sale/static/description/assets/modules/m3.png differ diff --git a/payment_status_in_sale/static/description/assets/modules/m4.png b/payment_status_in_sale/static/description/assets/modules/m4.png new file mode 100644 index 000000000..f7d7f9241 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/modules/m4.png differ diff --git a/payment_status_in_sale/static/description/assets/modules/m5.png b/payment_status_in_sale/static/description/assets/modules/m5.png new file mode 100644 index 000000000..1d3324e88 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/modules/m5.png differ diff --git a/payment_status_in_sale/static/description/assets/modules/m6.png b/payment_status_in_sale/static/description/assets/modules/m6.png new file mode 100644 index 000000000..80938c15a Binary files /dev/null and b/payment_status_in_sale/static/description/assets/modules/m6.png differ diff --git a/payment_status_in_sale/static/description/assets/screenshots/1.png b/payment_status_in_sale/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..e3b434483 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/screenshots/1.png differ diff --git a/payment_status_in_sale/static/description/assets/screenshots/2.png b/payment_status_in_sale/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..2518cc503 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/screenshots/2.png differ diff --git a/payment_status_in_sale/static/description/assets/screenshots/3.png b/payment_status_in_sale/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..e60fd8c64 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/screenshots/3.png differ diff --git a/payment_status_in_sale/static/description/assets/screenshots/4.png b/payment_status_in_sale/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..61cb074f4 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/screenshots/4.png differ diff --git a/payment_status_in_sale/static/description/assets/screenshots/5.png b/payment_status_in_sale/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..9caea102f Binary files /dev/null and b/payment_status_in_sale/static/description/assets/screenshots/5.png differ diff --git a/payment_status_in_sale/static/description/assets/screenshots/6.png b/payment_status_in_sale/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..f4987843f Binary files /dev/null and b/payment_status_in_sale/static/description/assets/screenshots/6.png differ diff --git a/payment_status_in_sale/static/description/assets/screenshots/7.png b/payment_status_in_sale/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..615dce2e6 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/screenshots/7.png differ diff --git a/payment_status_in_sale/static/description/assets/screenshots/8.png b/payment_status_in_sale/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..4beb29bb9 Binary files /dev/null and b/payment_status_in_sale/static/description/assets/screenshots/8.png differ diff --git a/payment_status_in_sale/static/description/assets/screenshots/hero.gif b/payment_status_in_sale/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..01176ae9f Binary files /dev/null and b/payment_status_in_sale/static/description/assets/screenshots/hero.gif differ diff --git a/payment_status_in_sale/static/description/banner.jpg b/payment_status_in_sale/static/description/banner.jpg new file mode 100644 index 000000000..24ea891e4 Binary files /dev/null and b/payment_status_in_sale/static/description/banner.jpg differ diff --git a/payment_status_in_sale/static/description/icon.png b/payment_status_in_sale/static/description/icon.png new file mode 100644 index 000000000..d6159bf52 Binary files /dev/null and b/payment_status_in_sale/static/description/icon.png differ diff --git a/payment_status_in_sale/static/description/index.html b/payment_status_in_sale/static/description/index.html new file mode 100644 index 000000000..ff70a693b --- /dev/null +++ b/payment_status_in_sale/static/description/index.html @@ -0,0 +1,724 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Sale Order Payment Status

+

Shows the payment status of the sale order

+ +
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Help you to know the payment status

+

This module will help you to know the payment + status in the sales page. +

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

+ Shows Payment Status in Sale Order tree view. +

+ It will show the status of payment in the tree view of Sales module. +
+
+
+
+
+
+ + +
+
+

+ Shows Amount Due in Sale Order form.

+ Once an invoice is created, the payment status is changed + to "Not Paid" and Amount due was + showed on the form. +
+
+
+
+
+
+ + +
+
+

+ Shows Payment Details in the Sale Order form.

+ Upon creating an invoice and registering the payment using "REGISTER PAYMENT" Button.The status will be + changed to either "PAID" or "PARTIALLY PAID" state and Payment details will showed on the form. +
+
+
+
+
+
+ + +
+
+

+ Payment can do from Sale Order form.

+ Once an invoice is created and confirmed.Then the "REGISTER PAYMENT" + button enable on the Sale Order form view and user can register the payment from the + Sale Order form. +
+
+
+
+
+
+ + + + +
+
+

Shows Payment status in the Sale Order form view.

+

+ Once an invoice is created and confirmed, + it will shows the Payment status on the Sale Order form view. +

+
+
+
+
+
+
+
    +
  • + Shows Payment Status in Sale Order tree view. +
  • +
  • + Shows Amount Due in Sale Order form. +
  • +
  • + Shows Payment Details in the Sale Order form. +
  • +
  • + Payment can do from Sale Order form. +
  • +
  • + Shows Payment Status in the Sale Order form view. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:6th April 2024 +
+

+ Initial commit for Sale Order Payment Status. +

+
+
+
+
+
+
+
+

+ 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/payment_status_in_sale/views/sale_order_views.xml b/payment_status_in_sale/views/sale_order_views.xml new file mode 100644 index 000000000..8dd65169d --- /dev/null +++ b/payment_status_in_sale/views/sale_order_views.xml @@ -0,0 +1,78 @@ + + + + + sales.order.view.form.inherit.payment.status.in + .sale + + sale.order + + + + + + + + + + + + + + + + +