9 changed files with 107 additions and 39 deletions
@ -0,0 +1,39 @@ |
|||
Aged Partner Balance with Partner Filter v10 |
|||
============================================ |
|||
|
|||
Aged Partner report with Partner Filter |
|||
You can generate aged partner report from wizard with partner filter |
|||
|
|||
Depends |
|||
======= |
|||
[account] addon Odoo |
|||
|
|||
Tech |
|||
==== |
|||
* [Python] - Models |
|||
* [XML] - Odoo views |
|||
|
|||
Installation |
|||
============ |
|||
- www.odoo.com/documentation/10.0/setup/install.html |
|||
- Install our custom addon |
|||
|
|||
License |
|||
======= |
|||
GNU LESSER GENERAL PUBLIC LICENSE, Version 3 (LGPLv3) |
|||
(http://www.gnu.org/licenses/agpl.html) |
|||
|
|||
Bug Tracker |
|||
=========== |
|||
Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. |
|||
|
|||
Authors |
|||
------- |
|||
* Sreejith P <sreejith@cybrosys.in> |
|||
|
|||
Maintainer |
|||
---------- |
|||
|
|||
This module is maintained by Cybrosys Technologies. |
|||
|
|||
For support and more information, please visit https://www.cybrosys.com. |
@ -1,2 +1,2 @@ |
|||
# -*- coding: utf-8 -*- |
|||
import models |
|||
from . import models |
|||
|
@ -1,17 +1,39 @@ |
|||
# -*- coding: utf-8 -*- |
|||
################################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# Copyright (C) 2017-TODAY Cybrosys Technologies(<https://www.cybrosys.com>). |
|||
# Author: Sreejith P(<https://www.cybrosys.com>) |
|||
# |
|||
# 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 <https://www.gnu.org/licenses/>. |
|||
# |
|||
################################################################################### |
|||
{ |
|||
'name': 'Aged partner filter', |
|||
'summary': "Aged partners filtered pdf reports", |
|||
'version': '10.0.1.0', |
|||
'author': 'Cybrosys Technologies', |
|||
'website': "http://www.cybrosys.com", |
|||
'name': 'Aged Partner Balance with Partner Filter', |
|||
'version': '10.0.1.0.0', |
|||
'summary': """Partner Wise on Aged Partner Balance""", |
|||
'category': 'Accounting', |
|||
'author': 'Cybrosys Techno Solutions', |
|||
'company': 'Cybrosys Techno Solutions', |
|||
"category": "Accounts", |
|||
'depends': ['base', 'account', 'sale'], |
|||
'data': ['views/filter_aged_partners.xml', |
|||
], |
|||
'license': 'LGPL-3', |
|||
'maintainer': 'Cybrosys Techno Solutions', |
|||
'website': "https://www.cybrosys.com", |
|||
'depends': ['base', 'account'], |
|||
'data': ['views/filter_aged_partners.xml'], |
|||
'demo': [], |
|||
'images': ['static/description/banner.jpg'], |
|||
'license': 'AGPL-3', |
|||
'installable': True, |
|||
'application': True, |
|||
'auto_install': False, |
|||
'application': False, |
|||
} |
|||
|
@ -1 +1,2 @@ |
|||
import filter_aged_partners |
|||
# -*- coding: utf-8 -*- |
|||
from . import filter_aged_partners |
|||
|
Before Width: | Height: | Size: 110 KiB After Width: | Height: | Size: 129 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 32 KiB |
Loading…
Reference in new issue