diff --git a/account_payment_receipt/README.rst b/account_payment_receipt/README.rst deleted file mode 100644 index 2c042bcab..000000000 --- a/account_payment_receipt/README.rst +++ /dev/null @@ -1,10 +0,0 @@ -Account Payment Receipt v9 -========================== -This module will print payment receipts with paid details. - -Credits -======= -Cybrosys Techno Solutions -Author ------- -* Cybrosys Techno Solutions diff --git a/account_payment_receipt/__init__.py b/account_payment_receipt/__init__.py deleted file mode 100644 index be6313a49..000000000 --- a/account_payment_receipt/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# Copyright (C) 2009-TODAY Cybrosys Technologies(). -# Author: Niyas Raphy() -# you can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. -# -# It is forbidden to publish, distribute, sublicense, or sell copies -# of the Software or modified copies of the Software. -# -# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. -# -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. -# If not, see . -# -############################################################################## -import models diff --git a/account_payment_receipt/__openerp__.py b/account_payment_receipt/__openerp__.py deleted file mode 100644 index 9f35429a2..000000000 --- a/account_payment_receipt/__openerp__.py +++ /dev/null @@ -1,42 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# Copyright (C) 2009-TODAY Cybrosys Technologies(). -# Author: Niyas Raphy() -# you can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. -# -# It is forbidden to publish, distribute, sublicense, or sell copies -# of the Software or modified copies of the Software. -# -# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. -# -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. -# If not, see . -# -############################################################################## -{ - 'name': 'Account Payment Receipt', - 'version': '0.1', - 'description': """Payment Receipt With Paid Details""", - 'summary': 'Payment Receipt With Paid Details', - 'author': 'Cybrosys Techno Solutions', - 'company': 'Cybrosys Techno Solutions', - 'website': 'http://www.cybrosys.com', - 'category': 'Accounting', - 'depends': ['base', 'account'], - 'data': [ - 'views/receipt_print_template.xml', - 'views/account_payment_print.xml', - ], - 'demo': [], - 'images': ['static/description/project_banner.jpg'], - 'license': 'AGPL-3', - 'installable': True, - 'auto_install': False, -} diff --git a/account_payment_receipt/models/__init__.py b/account_payment_receipt/models/__init__.py deleted file mode 100644 index 33720fea2..000000000 --- a/account_payment_receipt/models/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# Copyright (C) 2009-TODAY Cybrosys Technologies(). -# Author: Niyas Raphy() -# you can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. -# -# It is forbidden to publish, distribute, sublicense, or sell copies -# of the Software or modified copies of the Software. -# -# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. -# -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. -# If not, see . -# -############################################################################## -import account_receipt_parser diff --git a/account_payment_receipt/models/account_receipt_parser.py b/account_payment_receipt/models/account_receipt_parser.py deleted file mode 100644 index a3c3679c7..000000000 --- a/account_payment_receipt/models/account_receipt_parser.py +++ /dev/null @@ -1,62 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################## -# -# Cybrosys Technologies Pvt. Ltd. -# Copyright (C) 2009-TODAY Cybrosys Technologies(). -# Author: Niyas Raphy() -# you can modify it under the terms of the GNU LESSER -# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. -# -# It is forbidden to publish, distribute, sublicense, or sell copies -# of the Software or modified copies of the Software. -# -# 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. -# -# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE -# GENERAL PUBLIC LICENSE (LGPL v3) along with this program. -# If not, see . -# -############################################################################## -from odoo.report import report_sxw -from odoo.osv import osv -from odoo import api -from odoo.http import request -import json - - -class AccountReceiptParser(report_sxw.rml_parse): - - def __init__(self, cr, uid, name, context=None): - super(AccountReceiptParser, self).__init__(cr, uid, name, context=context) - self.localcontext.update({ - 'get_details': self.get_details, - }) - self.context = context - - @api.multi - def get_details(self, doc): - lines = [] - acc_inv = request.env['account.invoice'] - acc_inv_rec = acc_inv.search([('number', '=', doc.number)]) - d = json.loads(acc_inv_rec.payments_widget) - for payment in d['content']: - vals = { - 'memo': payment['name'], - 'amount': payment['amount'], - 'method': payment['journal_name'], - 'date': payment['date'], - } - lines.append(vals) - return lines - - -class PrintReport(osv.AbstractModel): - _name = 'report.account_payment_receipt.report_payment' - _inherit = 'report.abstract_report' - _template = 'account_payment_receipt.report_payment' - _wrapped_report_class = AccountReceiptParser - - diff --git a/account_payment_receipt/static/description/banner.jpg b/account_payment_receipt/static/description/banner.jpg deleted file mode 100644 index d76cdd554..000000000 Binary files a/account_payment_receipt/static/description/banner.jpg and /dev/null differ diff --git a/account_payment_receipt/static/description/customer_invoice_form_view.png b/account_payment_receipt/static/description/customer_invoice_form_view.png deleted file mode 100644 index 0af91bed4..000000000 Binary files a/account_payment_receipt/static/description/customer_invoice_form_view.png and /dev/null differ diff --git a/account_payment_receipt/static/description/customer_receipt.png b/account_payment_receipt/static/description/customer_receipt.png deleted file mode 100644 index 7f0a34cb7..000000000 Binary files a/account_payment_receipt/static/description/customer_receipt.png and /dev/null differ diff --git a/account_payment_receipt/static/description/cybro_logo.png b/account_payment_receipt/static/description/cybro_logo.png deleted file mode 100644 index bb309114c..000000000 Binary files a/account_payment_receipt/static/description/cybro_logo.png and /dev/null differ diff --git a/account_payment_receipt/static/description/icon.png b/account_payment_receipt/static/description/icon.png deleted file mode 100644 index b646dbde0..000000000 Binary files a/account_payment_receipt/static/description/icon.png and /dev/null differ diff --git a/account_payment_receipt/static/description/index.html b/account_payment_receipt/static/description/index.html deleted file mode 100644 index e15ef9b1d..000000000 --- a/account_payment_receipt/static/description/index.html +++ /dev/null @@ -1,103 +0,0 @@ -
-
-

Payment Receipt Report

-

Customer Receipts & Vendor Payment Report

-

Cybrosys Techno Solutions, www.cybrosys.com

-
-
-
-
-
- ☀ Generate Customer invoice receipt with payment details.
- ☀ Generate Vendor receipt with payment details.
-
-
-
-

Customer Receipts

-

Customer Receipts Form View

-
-

-
-

-
- -
-
-
-
-

Customer Receipt Print

-
-

-
-

-
- -
-
-
-
-

Customer Receipt Report

-
-

-
-

-
- -
-
-
-
-
-
-

Vendor Receipts

-

Vendor Receipts Form View

-
-

-
-

-
- -
-
-
-
-

Vendor Receipt Print

-
-

-
-

-
- -
-
-
-
-

Vendor Receipt Report

-
-

-
-

-
- -
-
-
-
- -
-

Need Any Help?

- - -
- - diff --git a/account_payment_receipt/static/description/receipt_print_customer.png b/account_payment_receipt/static/description/receipt_print_customer.png deleted file mode 100644 index 68ac64059..000000000 Binary files a/account_payment_receipt/static/description/receipt_print_customer.png and /dev/null differ diff --git a/account_payment_receipt/static/description/vendor_invoice_form.png b/account_payment_receipt/static/description/vendor_invoice_form.png deleted file mode 100644 index b61e73b09..000000000 Binary files a/account_payment_receipt/static/description/vendor_invoice_form.png and /dev/null differ diff --git a/account_payment_receipt/static/description/vendor_print_button.png b/account_payment_receipt/static/description/vendor_print_button.png deleted file mode 100644 index 15e38d4e7..000000000 Binary files a/account_payment_receipt/static/description/vendor_print_button.png and /dev/null differ diff --git a/account_payment_receipt/static/description/vendor_receipt.png b/account_payment_receipt/static/description/vendor_receipt.png deleted file mode 100644 index 8d0603df2..000000000 Binary files a/account_payment_receipt/static/description/vendor_receipt.png and /dev/null differ diff --git a/account_payment_receipt/views/account_payment_print.xml b/account_payment_receipt/views/account_payment_print.xml deleted file mode 100644 index 34320d2ca..000000000 --- a/account_payment_receipt/views/account_payment_print.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/account_payment_receipt/views/receipt_print_template.xml b/account_payment_receipt/views/receipt_print_template.xml deleted file mode 100644 index dc75eaf01..000000000 --- a/account_payment_receipt/views/receipt_print_template.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - -