diff --git a/odoo_print_cheque/README.rst b/odoo_print_cheque/README.rst new file mode 100644 index 000000000..08b98e26b --- /dev/null +++ b/odoo_print_cheque/README.rst @@ -0,0 +1,56 @@ +.. 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 + +Print Cheques +============= +This module enables the user to print cheque in odoo community. The format of +the cheque can be customized by configuring its settings. This allows the user +to have control over how the information is displayed on the cheque when it is +printed. + +Configuration +============= +- install our custom module https://apps.odoo.com/apps/modules/17.0/base_accounting_kit +- configure the cheque format by aligning the details from accounting module--> configuration--> Configure Cheques. + +Installation +============ +- www.odoo.com/documentation/16.0/setup/install.html +- Install our custom addon + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V16) Aslam A K, + (V17) Remya R, +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 https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ diff --git a/odoo_print_cheque/__init__.py b/odoo_print_cheque/__init__.py new file mode 100644 index 000000000..87e653dc6 --- /dev/null +++ b/odoo_print_cheque/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Remya R( 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/odoo_print_cheque/__manifest__.py b/odoo_print_cheque/__manifest__.py new file mode 100644 index 000000000..4b4738a20 --- /dev/null +++ b/odoo_print_cheque/__manifest__.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Remya R( 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': "Print Cheques", + 'version': "17.0.1.0.0", + 'category': "Accounting", + 'summary': """Print bank cheques format in odoo""", + 'description': """ This module was developed to print cheques formats in + odoo community edition""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base_accounting_kit'], + 'data': [ + 'security/ir.model.access.csv', + 'views/res_config_settings_views.xml', + 'views/cheque_format_views.xml', + 'views/account_payment_views.xml', + 'report/cheque_format_templates.xml', + 'report/cheque_format_reports.xml', + 'wizard/cheque_type_views.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/odoo_print_cheque/doc/RELEASE_NOTES.md b/odoo_print_cheque/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..e3cc71244 --- /dev/null +++ b/odoo_print_cheque/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 23.12.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Print Cheques diff --git a/odoo_print_cheque/models/__init__.py b/odoo_print_cheque/models/__init__.py new file mode 100644 index 000000000..8898174f2 --- /dev/null +++ b/odoo_print_cheque/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Remya R( 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 account_payment +from . import cheque_format diff --git a/odoo_print_cheque/models/account_payment.py b/odoo_print_cheque/models/account_payment.py new file mode 100644 index 000000000..ff996d327 --- /dev/null +++ b/odoo_print_cheque/models/account_payment.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Remya R( 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 models + + +class AccountPayment(models.Model): + """ + This class inherits from the 'account.payment' model to add specific + features and behavior related to printing checks and handling payment + information. It overrides the 'print_checks' method to provide a custom + wizard view for selecting and formatting cheque printing options. + """ + _inherit = 'account.payment' + + def print_checks(self): + """ + Overriding print_checks button to generate a wizard view to print + cheque by selecting a cheque print format. + """ + if self.payment_method_line_id.payment_method_id.name == 'Checks': + cheque_date = self.date + elif self.payment_method_line_id.payment_method_id.name == 'PDC': + cheque_date = self.effective_date + return { + 'name': "Cheque Format", + 'type': 'ir.actions.act_window', + 'view_type': 'form', + 'view_mode': 'form', + 'res_model': 'cheque.types', + 'target': 'new', + 'context': { + 'default_partner_id': self.partner_id.id, + 'default_cheque_amount_in_words': self.check_amount_in_words, + 'default_cheque_date': cheque_date, + 'default_cheque_amount': self.amount, + 'default_check_number': self.check_number, + 'default_payment_id': self.id + } + } diff --git a/odoo_print_cheque/models/cheque_format.py b/odoo_print_cheque/models/cheque_format.py new file mode 100644 index 000000000..2de21fefd --- /dev/null +++ b/odoo_print_cheque/models/cheque_format.py @@ -0,0 +1,133 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies(). +# Author: Remya R( 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 fields, models + + +class ChequeFormat(models.Model): + """ Configure cheque print template.""" + _name = 'cheque.format' + _description = 'Cheque Format' + _rec_name = 'bank_name' + + bank_name = fields.Char(string='Bank Name', + help='Enter the name of the bank.', + required=True) + font_size = fields.Float(string='Font Size', + help='Total font size for the text.') + cheque_width = fields.Float(string='Width', help='Width of the cheque.') + cheque_height = fields.Float(string='Height', help='Height of the cheque.') + print_cheque_number = fields.Boolean(string='Print Cheque Number', + help='Enable to print the cheque ' + 'sequence number. ' + 'You can adjust this if the ' + 'numbering is incorrect.') + cheque_no_tm = fields.Float(string='Cheque No: Top Margin', + help="Top margin for the cheque number.") + cheque_no_lm = fields.Float(string='Cheque No: Left Margin', + help="Left margin for the cheque number.") + is_account_payee = fields.Boolean(string="Crossed Account Payee Cheque", + help="Select to make the cheque a " + "Crossed Account Payee cheque. " + "Prints ‘A/C Payee Only’ between " + "parallel crossing lines.") + a_c_payee_top_margin = fields.Float(string='Payee Top Margin', + help="Top margin for the 'A/C Payee' " + "text.") + a_c_payee_left_margin = fields.Float(string="Payee Left Margin", + help="Left margin for the 'A/C Payee'" + " text.") + a_c_payee_width = fields.Float(string="Payee Width", + help="Width of the 'A/C Payee' text.") + a_c_payee_height = fields.Float(string="Payee Height", + help="Height of the 'A/C Payee' text.") + date_remove_slashes = fields.Boolean(string="Remove Slashes", + help="Enable to remove slashes from" + " the date.") + date_top_margin = fields.Float(string="Date Top Margin", + help="Top margin for the date.") + date_left_margin = fields.Float(string="Date Left Margin", + help="Left margin for the date.") + date_letter_spacing = fields.Float(string="Date Letter Spacing", + help="Spacing between date characters.") + beneficiary_top_margin = fields.Float(string="Beneficiary Top Margin", + help="Top margin for the beneficiary" + " name.") + beneficiary_left_margin = fields.Float(string="Beneficiary Left Margin", + help="Left margin for the " + "beneficiary name.") + amount_word_tm = fields.Float(string="Amount in Words Top Margin", + help="Top margin for the amount in words.") + amount_word_lm = fields.Float(string="Amount in Words Left Margin", + help="Left margin for the amount in words.") + amount_word_ls = fields.Float(string="Amount in Words Letter Spacing", + help="Spacing between characters in the " + "amount in words.") + print_currency = fields.Boolean(string="Print Currency Symbol", + help="Enable to print the currency symbol." + "") + amount_digit_tm = fields.Float(string="Amount in Digits Top Margin", + help="Top margin for the amount in digits." + "") + amount_digit_lm = fields.Float(string="Amount in Digits Left Margin", + help="Left margin for the amount in digits." + "") + amount_digit_ls = fields.Float(string="Amount in Digits Letter Spacing", + help="Spacing between characters in the " + "amount in digits.") + amount_digit_size = fields.Float(string="Amount in Digits Font Size", + help="Font size for the amount in digits" + ".") + + def action_print_test(self): + """Print a test cheque to make corrections for the user in + cheque format.""" + data = { + 'cheque_width': self.cheque_width, + 'cheque_height': self.cheque_height, + 'font_size': self.font_size, + 'print_cheque_number': self.print_cheque_number, + 'cheque_no_tm': self.cheque_no_tm, + 'cheque_no_lm': self.cheque_no_lm, + 'is_account_payee': self.is_account_payee, + 'a_c_payee_top_margin': self.a_c_payee_top_margin, + 'a_c_payee_left_margin': self.a_c_payee_left_margin, + 'a_c_payee_width': self.a_c_payee_width, + 'a_c_payee_height': self.a_c_payee_height, + 'date_top_margin': self.date_top_margin, + 'date_left_margin': self.date_left_margin, + 'date_letter_spacing': self.date_letter_spacing, + 'beneficiary_top_margin': self.beneficiary_top_margin, + 'beneficiary_left_margin': self.beneficiary_left_margin, + 'amount_word_tm': self.amount_word_tm, + 'amount_word_lm': self.amount_word_lm, + 'amount_word_ls': self.amount_word_ls, + 'amount_digit_tm': self.amount_digit_tm, + 'amount_digit_lm': self.amount_digit_lm, + 'amount_digit_ls': self.amount_digit_ls, + 'amount_digit_size': self.amount_digit_size, + 'print_currency': self.print_currency, + 'currency_symbol': self.env.company.currency_id.symbol, + 'date_remove_slashes': self.date_remove_slashes + } + return self.env.ref( + 'odoo_print_cheque.test_cheque_action').report_action(None, + data=data) diff --git a/odoo_print_cheque/report/cheque_format_reports.xml b/odoo_print_cheque/report/cheque_format_reports.xml new file mode 100644 index 000000000..5a7583b1a --- /dev/null +++ b/odoo_print_cheque/report/cheque_format_reports.xml @@ -0,0 +1,53 @@ + + + + + + Print Cheque + + A4 + Landscape + + 1 + 1 + + 90 + + + + Cheque + cheque.format + qweb-pdf + odoo_print_cheque.cheque_print + odoo_print_cheque.cheque_print + + + report + + + + + Print Test Cheque + + A4 + Landscape + + 1 + 1 + + 90 + + + + Test Print + cheque.format + qweb-pdf + odoo_print_cheque.cheque_test_print + odoo_print_cheque.cheque_test_print + + + report + + diff --git a/odoo_print_cheque/report/cheque_format_templates.xml b/odoo_print_cheque/report/cheque_format_templates.xml new file mode 100644 index 000000000..fc39c408e --- /dev/null +++ b/odoo_print_cheque/report/cheque_format_templates.xml @@ -0,0 +1,92 @@ + + + + + + diff --git a/odoo_print_cheque/security/ir.model.access.csv b/odoo_print_cheque/security/ir.model.access.csv new file mode 100644 index 000000000..d74561e06 --- /dev/null +++ b/odoo_print_cheque/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink +access_cheque_format_user,access.cheque.format.user,model_cheque_format,base.group_user,1,1,1,1 +access_cheque_types_user,access.cheque_types_user,model_cheque_types,base.group_user,1,1,1,1 diff --git a/odoo_print_cheque/static/description/assets/icons/capture (1).png b/odoo_print_cheque/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/capture (1).png differ diff --git a/odoo_print_cheque/static/description/assets/icons/check.png b/odoo_print_cheque/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/check.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/chevron.png b/odoo_print_cheque/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/chevron.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/cogs.png b/odoo_print_cheque/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/cogs.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/consultation.png b/odoo_print_cheque/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/consultation.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/ecom-black.png b/odoo_print_cheque/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/ecom-black.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/education-black.png b/odoo_print_cheque/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/education-black.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/hotel-black.png b/odoo_print_cheque/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/hotel-black.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/img.png b/odoo_print_cheque/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/img.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/license.png b/odoo_print_cheque/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/license.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/lifebuoy.png b/odoo_print_cheque/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/lifebuoy.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/manufacturing-black.png b/odoo_print_cheque/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/manufacturing-black.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/photo-capture.png b/odoo_print_cheque/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/photo-capture.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/pos-black.png b/odoo_print_cheque/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/pos-black.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/puzzle.png b/odoo_print_cheque/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/puzzle.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/restaurant-black.png b/odoo_print_cheque/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/restaurant-black.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/service-black.png b/odoo_print_cheque/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/service-black.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/trading-black.png b/odoo_print_cheque/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/trading-black.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/training.png b/odoo_print_cheque/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/training.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/update.png b/odoo_print_cheque/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/update.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/user.png b/odoo_print_cheque/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/user.png differ diff --git a/odoo_print_cheque/static/description/assets/icons/wrench.png b/odoo_print_cheque/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/odoo_print_cheque/static/description/assets/icons/wrench.png differ diff --git a/odoo_print_cheque/static/description/assets/misc/Cybrosys R.png b/odoo_print_cheque/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/misc/Cybrosys R.png differ diff --git a/odoo_print_cheque/static/description/assets/misc/email.svg b/odoo_print_cheque/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/odoo_print_cheque/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_print_cheque/static/description/assets/misc/phone.svg b/odoo_print_cheque/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/odoo_print_cheque/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_print_cheque/static/description/assets/misc/star (1) 2.svg b/odoo_print_cheque/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/odoo_print_cheque/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_print_cheque/static/description/assets/misc/support (1) 1.svg b/odoo_print_cheque/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/odoo_print_cheque/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_print_cheque/static/description/assets/misc/support-email.svg b/odoo_print_cheque/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/odoo_print_cheque/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/odoo_print_cheque/static/description/assets/misc/tick-mark.svg b/odoo_print_cheque/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/odoo_print_cheque/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo_print_cheque/static/description/assets/misc/whatsapp 1.svg b/odoo_print_cheque/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/odoo_print_cheque/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_print_cheque/static/description/assets/misc/whatsapp.svg b/odoo_print_cheque/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/odoo_print_cheque/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_print_cheque/static/description/assets/modules/m1.png b/odoo_print_cheque/static/description/assets/modules/m1.png new file mode 100644 index 000000000..acb4c76c6 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/modules/m1.png differ diff --git a/odoo_print_cheque/static/description/assets/modules/m2.png b/odoo_print_cheque/static/description/assets/modules/m2.png new file mode 100644 index 000000000..3ef91f771 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/modules/m2.png differ diff --git a/odoo_print_cheque/static/description/assets/modules/m3.png b/odoo_print_cheque/static/description/assets/modules/m3.png new file mode 100644 index 000000000..72febf6ae Binary files /dev/null and b/odoo_print_cheque/static/description/assets/modules/m3.png differ diff --git a/odoo_print_cheque/static/description/assets/modules/m4.png b/odoo_print_cheque/static/description/assets/modules/m4.png new file mode 100644 index 000000000..f7d7f9241 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/modules/m4.png differ diff --git a/odoo_print_cheque/static/description/assets/modules/m5.png b/odoo_print_cheque/static/description/assets/modules/m5.png new file mode 100644 index 000000000..1d3324e88 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/modules/m5.png differ diff --git a/odoo_print_cheque/static/description/assets/modules/m6.png b/odoo_print_cheque/static/description/assets/modules/m6.png new file mode 100644 index 000000000..80938c15a Binary files /dev/null and b/odoo_print_cheque/static/description/assets/modules/m6.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/01.png b/odoo_print_cheque/static/description/assets/screenshots/01.png new file mode 100644 index 000000000..5d7686be9 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/01.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/02.png b/odoo_print_cheque/static/description/assets/screenshots/02.png new file mode 100644 index 000000000..28231a51f Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/02.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/03.png b/odoo_print_cheque/static/description/assets/screenshots/03.png new file mode 100644 index 000000000..a09dc7e47 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/03.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/04.png b/odoo_print_cheque/static/description/assets/screenshots/04.png new file mode 100644 index 000000000..1ad5ce37a Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/04.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/05.png b/odoo_print_cheque/static/description/assets/screenshots/05.png new file mode 100644 index 000000000..277c92f97 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/05.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/06.png b/odoo_print_cheque/static/description/assets/screenshots/06.png new file mode 100644 index 000000000..92f80e97b Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/06.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/07.png b/odoo_print_cheque/static/description/assets/screenshots/07.png new file mode 100644 index 000000000..2814e6d27 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/07.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/09.png b/odoo_print_cheque/static/description/assets/screenshots/09.png new file mode 100644 index 000000000..645cbd28d Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/09.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/10.png b/odoo_print_cheque/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..8f17e9581 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/10.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/11.png b/odoo_print_cheque/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..41e0dab81 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/11.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/8.png b/odoo_print_cheque/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..6ba683976 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/8.png differ diff --git a/odoo_print_cheque/static/description/assets/screenshots/hero.gif b/odoo_print_cheque/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..7cb455cc3 Binary files /dev/null and b/odoo_print_cheque/static/description/assets/screenshots/hero.gif differ diff --git a/odoo_print_cheque/static/description/banner.jpg b/odoo_print_cheque/static/description/banner.jpg new file mode 100644 index 000000000..47e83c93a Binary files /dev/null and b/odoo_print_cheque/static/description/banner.jpg differ diff --git a/odoo_print_cheque/static/description/icon.png b/odoo_print_cheque/static/description/icon.png new file mode 100644 index 000000000..070bfddcc Binary files /dev/null and b/odoo_print_cheque/static/description/icon.png differ diff --git a/odoo_print_cheque/static/description/index.html b/odoo_print_cheque/static/description/index.html new file mode 100644 index 000000000..228aee856 --- /dev/null +++ b/odoo_print_cheque/static/description/index.html @@ -0,0 +1,856 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+
+
+
+
+

+ Print Cheques

+

+ Print Cheques Allows to Set Up Bank Cheque Formats to + Print on Cheques Easily. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Setup Cheque Format for Different Banks

+
+
+
+
+
+
+ +
+
+

+ Customizable Cheque Alignment

+
+
+
+
+
+
+ +
+
+

+ Adjust Font Size

+
+
+
+
+
+
+ +
+
+

+ Test Print Button

+
+
+
+
+
+
+ +
+
+

+ Adjust the Details Like Crossed check, Sequence + Number, Payee Name, Date, Amount, and Amount in + Words Based on the Check.

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

+ Configuration Menu

+

+ To Configure the Cheque Format + Goto -->Accounting Module --> Configuration + --> Configure + Cheques +

+
+ +
+
+
+
+
+ +
+
+

+ Crossed Cheque Alignment

+
+
+
+
+
+
+ +
+
+

+Cheque Sequence Alignment

+
+
+
+
+
+
+ +
+
+

+ Date Alignment.

+
+
+
+
+
+
+ +
+
+

+ Payee Name Alignment

+
+
+
+
+
+
+ +
+
+

+ Amount in Words Alignment

+
+
+
+
+
+
+ +
+
+

+ Amount in Digits Alignment

+
+
+
+
+
+
+ +
+
+

+ Test Print Format

+
+
+
+
+
+
+ +
+
+

+ Now Go to Payments and after posting the payment click the button "Print Check"

+
+
+
+
+
+
+ +
+
+

+ Cheque Format Selection View

+
+
+
+
+
+
+ +
+
+

+ Cheque Print View

+
+
+
+
+
+
+
    +
  • + The Cheque Print application provides users with a + customizable template that can be used to print cheques +
  • +
  • + Users can create multiple cheque formats for different banks + and others. The cheque format is downloaded as pdf with designed size +
  • +
  • + + Available in Odoo 17.0 Community. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:22nd July 2024 +
+

+ + Initial Commit for Print Cheques + Report

+
+
+
+
+
+
+
+

+ 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/odoo_print_cheque/static/src/img/accountpay.png b/odoo_print_cheque/static/src/img/accountpay.png new file mode 100644 index 000000000..aeb87eb4f Binary files /dev/null and b/odoo_print_cheque/static/src/img/accountpay.png differ diff --git a/odoo_print_cheque/views/account_payment_views.xml b/odoo_print_cheque/views/account_payment_views.xml new file mode 100644 index 000000000..ce2ba2193 --- /dev/null +++ b/odoo_print_cheque/views/account_payment_views.xml @@ -0,0 +1,28 @@ + + + + + account.payment.view.form.inherit.odoo.print.cheque + account.payment + + + + + state != 'posted' or payment_method_code not in ['check_printing','pdc'] + + + +