diff --git a/amount_in_words_invoice/README.rst b/amount_in_words_invoice/README.rst new file mode 100644 index 000000000..085d6bc16 --- /dev/null +++ b/amount_in_words_invoice/README.rst @@ -0,0 +1,52 @@ +.. 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 + +Amount In Words In Invoice, Sale Order And Purchase Order +========================================================= +This module helps you to convert the amount to words in invoices, sales orders +and in purchase orders + +Configuration +============= +* No additional configurations needed + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developers: + (V15) Sonu Soman K P, + (V16) Aswathi PN, + (V17) Jumana Haseen, + 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/amount_in_words_invoice/__init__.py b/amount_in_words_invoice/__init__.py new file mode 100644 index 000000000..32db21b4c --- /dev/null +++ b/amount_in_words_invoice/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies () +# Author: Jumana Haseen () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU 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/amount_in_words_invoice/__manifest__.py b/amount_in_words_invoice/__manifest__.py new file mode 100644 index 000000000..8a8406777 --- /dev/null +++ b/amount_in_words_invoice/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies () +# Author: Jumana Haseen () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU 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': "Amount In Words In Invoice, Sale Order And Purchase Order", + 'version': '17.0.1.0.0', + 'category': 'Accounting', + 'summary': """Showing the subtotal amounts of invoice, sale order + and purchase order in words""", + 'description': """The Module to Shows The Subtotal Amount in Words + on Invoice, Sale Order and Purchase Order""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['sale_management', 'account', 'purchase'], + 'data': [ + 'data/account_move_data.xml', + 'data/purchase_order_data.xml', + 'data/sale_order_data.xml', + 'views/account_move_views.xml', + 'views/sale_order_views.xml', + 'views/purchase_order_views.xml', + 'report/account_move_reports.xml' + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/amount_in_words_invoice/data/account_move_data.xml b/amount_in_words_invoice/data/account_move_data.xml new file mode 100644 index 000000000..27bf83e5a --- /dev/null +++ b/amount_in_words_invoice/data/account_move_data.xml @@ -0,0 +1,183 @@ + + + + + + + + + + + + +
+

+ Dear + + Brandon Freeman + (Azure Interior), + + + Brandon Freeman, + +
+
+ Here is your + + invoice + INV/2021/05/0005 + + + invoice + + + (with reference: SUB003) + + amounting in + $ 143,750.00 + + ( + ) + + from YourCompany. + + This invoice is already paid. + + + Please remit payment at your earliest convenience. + +
+
+ Please use the following communication for your payment: INV/2021/05/0005. +
+
+
+
+ Do not hesitate to contact us if you have any questions. + +
+ --
Mitchell Admin +
+
+

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

+ Dear + + Brandon Freeman + (Azure Interior), + + + Brandon Freeman, + +
+
+ Here is your + + credit note + RINV/2021/05/0001 + + + credit note + + + (with reference: SUB003) + + amounting in + $ 143,750.00 + + + () + + from YourCompany. +
+
+ Do not hesitate to contact us if you have any questions. + +
+ --
Mitchell Admin +
+
+

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

+ Dear + Azure Interior +
+
+ Thank you for your payment. + Here is your payment receipt + BNK1-2021-05-0002 + amounting + to + $ 10.00 + + () + + from YourCompany. +
+
+ Do not hesitate to contact us if you have any questions. +
+
+ Best regards, + +
+ --
Mitchell Admin +
+
+

+
+
+
+ + + + + + +
+
diff --git a/amount_in_words_invoice/data/purchase_order_data.xml b/amount_in_words_invoice/data/purchase_order_data.xml new file mode 100644 index 000000000..3c52cb760 --- /dev/null +++ b/amount_in_words_invoice/data/purchase_order_data.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + +
+

+ Dear + Brandon Freeman + + (Azure Interior) + +
+
+ Here is in attachment a purchase order + P00015 + + with reference: + REF_XXX + + amounting in + $ 10.00 + () + from YourCompany. +
+
+ + The receipt is expected for + 05/05/2021. +
+
+ Could you please acknowledge the receipt of this order? +
+

+
+
+
+ + + + + + +
+
diff --git a/amount_in_words_invoice/data/sale_order_data.xml b/amount_in_words_invoice/data/sale_order_data.xml new file mode 100644 index 000000000..c8b55e441 --- /dev/null +++ b/amount_in_words_invoice/data/sale_order_data.xml @@ -0,0 +1,373 @@ + + + + + + + + + + + + +
+

+ Hello, +
+
+ + Your order S00049 + amounting in + + $ 10.00 + + () + + + has been confirmed. +
+ Thank you for your trust! +
+ + is pending. It will be confirmed when the payment is + received. + + Your payment reference is . + + +
+
+ Do not hesitate to contact us if you have any questions. +
+
+

+ +
+ + + + + + +
+ Products + + + Quantity + + + + VAT Excl. + + + VAT Incl. + + +
+ + + + + + + + +
+ + + Taking care of Trees + Course + + + + + Taking care of Trees + Course + + +
+
+ + + + + + + + + + +
+ Product image + + Taking care of Trees Course + + 1 + + + + + $ 10.00 + + + + + $ 10.00 + + + +
+
+
+
+
+ + + + + + + + + +
+ + Delivery: + + $ 0.00 +
+ + SubTotal: + + $ 10.00 +
+
+
+ + + + + +
+ + SubTotal: + + $ 10.00 +
+
+
+ + + + + + + + + +
+ + Taxes: + + $ 0.00 +
+ + Total: + + $ 10.00 +
+
+
+ + + + + + + +
+ Bill to: + + 1201 S Figueroa St + + + Los Angeles + + + California + + + 90015 + + + United States + +
+ Payment Method: + + + + + + + ( + $ 10.00) +
+
+
+ + + + +
+
+ Ship to: + + 1201 S Figueroa St + + + Los Angeles + + + California + + + 90015 + + + United States + +
+ + + + +
+ Shipping Method: + + + (Free) + + + ( + $ 10.00) + +
+
+
+
+
+
+ + + + + + +
+ + + + + + + + + + +
+

+ + Hello, +
+
+ Your + + Pro forma invoice for + quotation + S00052 + + (with reference: ) + + amounting in + + $ + 10.00 + + () + + is available. + + + quotation + + + (with reference: + S00052 + ) + + amounting in + + $ + 10.00 + + () + + is ready for review. + +
+
+ Do not hesitate to contact us if you have any questions. +
+

+
+
+
+ + + + + + +
+
diff --git a/amount_in_words_invoice/doc/RELEASE_NOTES.md b/amount_in_words_invoice/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..88e4a6dbd --- /dev/null +++ b/amount_in_words_invoice/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 28.11.2023 +#### Version 17.0.1.0.0 +##### ADD +- Initial commit for Amount In Words In Invoice, Sale Order And Purchase Order diff --git a/amount_in_words_invoice/models/__init__.py b/amount_in_words_invoice/models/__init__.py new file mode 100644 index 000000000..b7b03bd1e --- /dev/null +++ b/amount_in_words_invoice/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies () +# Author: Jumana Haseen () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU 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 +from . import purchase_order +from . import account_move diff --git a/amount_in_words_invoice/models/account_move.py b/amount_in_words_invoice/models/account_move.py new file mode 100644 index 000000000..1572e4414 --- /dev/null +++ b/amount_in_words_invoice/models/account_move.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies () +# Author: Jumana Haseen () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU 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 fields, models + + +class AccountMove(models.Model): + """Inherit the Account Move to add amount in words in account move. + Methods:_compute_number_to_words(self): + Function to convert the invoice subtotal amount to words.""" + _inherit = 'account.move' + + number_to_words = fields.Char(string="Amount in Words (Total) : ", + compute='_compute_number_to_words', + help="To showing total amount in words") + + def _compute_number_to_words(self): + """Compute the amount to words in Invoice""" + for rec in self: + rec.number_to_words = rec.currency_id.amount_to_text( + rec.amount_total) diff --git a/amount_in_words_invoice/models/purchase_order.py b/amount_in_words_invoice/models/purchase_order.py new file mode 100644 index 000000000..2fdb19960 --- /dev/null +++ b/amount_in_words_invoice/models/purchase_order.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies () +# Author: Jumana Haseen () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU 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 fields, models + + +class PurchaseOrder(models.Model): + """ Inherit the Purchase Order model to add amount in words in purchase + order.Methods:_compute_number_to_words(self): + Function to Change the purchase order total amount to words.""" + _inherit = 'purchase.order' + + number_to_words = fields.Char(string="Amount in Words (Total) : ", + compute='_compute_number_to_words', + help="To showing total amount in words") + + def _compute_number_to_words(self): + """Compute the amount to words in Purchase Order""" + for rec in self: + rec.number_to_words = rec.currency_id.amount_to_text( + rec.amount_total) diff --git a/amount_in_words_invoice/models/sale_order.py b/amount_in_words_invoice/models/sale_order.py new file mode 100644 index 000000000..263230781 --- /dev/null +++ b/amount_in_words_invoice/models/sale_order.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies () +# Author: Jumana Haseen() +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL v3) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU 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 fields, models + + +class SaleOrder(models.Model): + """ + Inherited the Sale Order model to add amount in words on sale order + form view.Methods:_compute_number_to_words(self): + Function to convert the sale order subtotal amount to words. + """ + _inherit = 'sale.order' + + number_to_words = fields.Char(string="Amount in Words (Total) :", + compute='_compute_number_to_words', + help="To showing total amount in words") + + def _compute_number_to_words(self): + """Compute the amount to words in Sale Order""" + for rec in self: + rec.number_to_words = rec.currency_id.amount_to_text( + rec.amount_total) diff --git a/amount_in_words_invoice/report/account_move_reports.xml b/amount_in_words_invoice/report/account_move_reports.xml new file mode 100644 index 000000000..4447b944a --- /dev/null +++ b/amount_in_words_invoice/report/account_move_reports.xml @@ -0,0 +1,39 @@ + + + + + + + + + diff --git a/amount_in_words_invoice/static/description/assets/icons/capture (1).png b/amount_in_words_invoice/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/capture (1).png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/check.png b/amount_in_words_invoice/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/check.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/chevron.png b/amount_in_words_invoice/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/chevron.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/cogs.png b/amount_in_words_invoice/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/cogs.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/consultation.png b/amount_in_words_invoice/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/consultation.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/ecom-black.png b/amount_in_words_invoice/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/ecom-black.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/education-black.png b/amount_in_words_invoice/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/education-black.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/hotel-black.png b/amount_in_words_invoice/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/hotel-black.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/img.png b/amount_in_words_invoice/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/img.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/license.png b/amount_in_words_invoice/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/license.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/lifebuoy.png b/amount_in_words_invoice/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/lifebuoy.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/manufacturing-black.png b/amount_in_words_invoice/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/manufacturing-black.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/photo-capture.png b/amount_in_words_invoice/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/photo-capture.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/pos-black.png b/amount_in_words_invoice/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/pos-black.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/puzzle.png b/amount_in_words_invoice/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/puzzle.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/restaurant-black.png b/amount_in_words_invoice/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/restaurant-black.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/service-black.png b/amount_in_words_invoice/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/service-black.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/trading-black.png b/amount_in_words_invoice/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/trading-black.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/training.png b/amount_in_words_invoice/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/training.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/update.png b/amount_in_words_invoice/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/update.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/user.png b/amount_in_words_invoice/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/user.png differ diff --git a/amount_in_words_invoice/static/description/assets/icons/wrench.png b/amount_in_words_invoice/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/icons/wrench.png differ diff --git a/amount_in_words_invoice/static/description/assets/misc/Cybrosys R.png b/amount_in_words_invoice/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/misc/Cybrosys R.png differ diff --git a/amount_in_words_invoice/static/description/assets/misc/email.svg b/amount_in_words_invoice/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/amount_in_words_invoice/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/amount_in_words_invoice/static/description/assets/misc/phone.svg b/amount_in_words_invoice/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/amount_in_words_invoice/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/amount_in_words_invoice/static/description/assets/misc/star (1) 2.svg b/amount_in_words_invoice/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/amount_in_words_invoice/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/amount_in_words_invoice/static/description/assets/misc/support (1) 1.svg b/amount_in_words_invoice/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/amount_in_words_invoice/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/amount_in_words_invoice/static/description/assets/misc/support-email.svg b/amount_in_words_invoice/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/amount_in_words_invoice/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/amount_in_words_invoice/static/description/assets/misc/tick-mark.svg b/amount_in_words_invoice/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/amount_in_words_invoice/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/amount_in_words_invoice/static/description/assets/misc/whatsapp 1.svg b/amount_in_words_invoice/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/amount_in_words_invoice/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/amount_in_words_invoice/static/description/assets/misc/whatsapp.svg b/amount_in_words_invoice/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/amount_in_words_invoice/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/amount_in_words_invoice/static/description/assets/modules/1.png b/amount_in_words_invoice/static/description/assets/modules/1.png new file mode 100644 index 000000000..5238bdeab Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/modules/1.png differ diff --git a/amount_in_words_invoice/static/description/assets/modules/2.png b/amount_in_words_invoice/static/description/assets/modules/2.png new file mode 100644 index 000000000..a594b139c Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/modules/2.png differ diff --git a/amount_in_words_invoice/static/description/assets/modules/3.png b/amount_in_words_invoice/static/description/assets/modules/3.png new file mode 100644 index 000000000..f26b6f333 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/modules/3.png differ diff --git a/amount_in_words_invoice/static/description/assets/modules/4.png b/amount_in_words_invoice/static/description/assets/modules/4.png new file mode 100644 index 000000000..3fae4631e Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/modules/4.png differ diff --git a/amount_in_words_invoice/static/description/assets/modules/5.png b/amount_in_words_invoice/static/description/assets/modules/5.png new file mode 100644 index 000000000..2a5f8e659 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/modules/5.png differ diff --git a/amount_in_words_invoice/static/description/assets/modules/6.png b/amount_in_words_invoice/static/description/assets/modules/6.png new file mode 100644 index 000000000..8a2871ea0 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/modules/6.png differ diff --git a/amount_in_words_invoice/static/description/assets/screenshots/1.png b/amount_in_words_invoice/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..a09130d01 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/screenshots/1.png differ diff --git a/amount_in_words_invoice/static/description/assets/screenshots/2.png b/amount_in_words_invoice/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..fcfb6c34a Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/screenshots/2.png differ diff --git a/amount_in_words_invoice/static/description/assets/screenshots/3.png b/amount_in_words_invoice/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..1f79ed9f7 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/screenshots/3.png differ diff --git a/amount_in_words_invoice/static/description/assets/screenshots/4.png b/amount_in_words_invoice/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..16547287b Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/screenshots/4.png differ diff --git a/amount_in_words_invoice/static/description/assets/screenshots/5.png b/amount_in_words_invoice/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..315357d62 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/screenshots/5.png differ diff --git a/amount_in_words_invoice/static/description/assets/screenshots/hero.gif b/amount_in_words_invoice/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..2cde9df84 Binary files /dev/null and b/amount_in_words_invoice/static/description/assets/screenshots/hero.gif differ diff --git a/amount_in_words_invoice/static/description/banner.png b/amount_in_words_invoice/static/description/banner.png new file mode 100644 index 000000000..5152367d3 Binary files /dev/null and b/amount_in_words_invoice/static/description/banner.png differ diff --git a/amount_in_words_invoice/static/description/icon.png b/amount_in_words_invoice/static/description/icon.png new file mode 100644 index 000000000..d795f66eb Binary files /dev/null and b/amount_in_words_invoice/static/description/icon.png differ diff --git a/amount_in_words_invoice/static/description/index.html b/amount_in_words_invoice/static/description/index.html new file mode 100644 index 000000000..7b842fb34 --- /dev/null +++ b/amount_in_words_invoice/static/description/index.html @@ -0,0 +1,719 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Amount In Words In Invoice, Sale Order And Purchase Order

+

+ Helps to convert the amount to words in Invoice, Sale Order and Purchase Order +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Convert Amount into Words

+
+
+
+
+
+
+ +
+
+

+ Available in invoice forms,invoice reports,email templates

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

+ Sale Order Form Layout

+

+ Sale order form showing total amount in words +

+
+
+
+
+
+
+ +
+
+

+ Purchase Order Form Layout

+

Purchase Order form + showing total amount in words +

+
+
+
+
+
+
+ +
+
+

+ Invoice Form Layout

+

Customer Invoice + showing total amount in words +

+
+
+
+
+
+
+ +
+
+

+ Report View

+

Report view + showing total amount in words +

+
+
+
+
+
+
+ +
+
+

+ Mail Template View

+

Mail Template View + showing total amount in words +

+
+
+
+
+
+
+
    +
  • + Available in Odoo 17.0 Community and Enterprise. +
  • +
  • + Convert Amount into Words +
  • +
  • + Amount In Words In Invoice, Sale Order And Purchase Order +
      +
    • This module helps to convert the amount to words in Invoice, Sale Order and Purchase Order. +
    • +
    +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:28th November 2023 +
+

+ + Initial Commit for Amount In Words In Invoice, Sale Order And Purchase Order

+
+
+
+
+
+
+
+

+ 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/amount_in_words_invoice/views/account_move_views.xml b/amount_in_words_invoice/views/account_move_views.xml new file mode 100644 index 000000000..4ddd4d022 --- /dev/null +++ b/amount_in_words_invoice/views/account_move_views.xml @@ -0,0 +1,18 @@ + + + + + account.move.view.form.inherit.amount.in.words.invoice + account.move + + + + +
+ +
+
+
+
+
+
diff --git a/amount_in_words_invoice/views/purchase_order_views.xml b/amount_in_words_invoice/views/purchase_order_views.xml new file mode 100644 index 000000000..ee9a70bb1 --- /dev/null +++ b/amount_in_words_invoice/views/purchase_order_views.xml @@ -0,0 +1,19 @@ + + + + + purchase.order.view.form.inherit.amount.in.words.invoice + purchase.order + + + + +
+ + +
+
+
+
+
+
diff --git a/amount_in_words_invoice/views/sale_order_views.xml b/amount_in_words_invoice/views/sale_order_views.xml new file mode 100644 index 000000000..336613f4b --- /dev/null +++ b/amount_in_words_invoice/views/sale_order_views.xml @@ -0,0 +1,21 @@ + + + + + sale.order.view.form.inherit.amount.in.words.invoice + sale.order + + + + +
+ + + +
+
+
+
+
+