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 -*- |
# -*- coding: utf-8 -*- |
||||
import models |
from . import models |
||||
|
@ -1,17 +1,39 @@ |
|||||
# -*- coding: utf-8 -*- |
# -*- 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', |
'name': 'Aged Partner Balance with Partner Filter', |
||||
'summary': "Aged partners filtered pdf reports", |
'version': '10.0.1.0.0', |
||||
'version': '10.0.1.0', |
'summary': """Partner Wise on Aged Partner Balance""", |
||||
'author': 'Cybrosys Technologies', |
'category': 'Accounting', |
||||
'website': "http://www.cybrosys.com", |
'author': 'Cybrosys Techno Solutions', |
||||
'company': 'Cybrosys Techno Solutions', |
'company': 'Cybrosys Techno Solutions', |
||||
"category": "Accounts", |
'maintainer': 'Cybrosys Techno Solutions', |
||||
'depends': ['base', 'account', 'sale'], |
'website': "https://www.cybrosys.com", |
||||
'data': ['views/filter_aged_partners.xml', |
'depends': ['base', 'account'], |
||||
], |
'data': ['views/filter_aged_partners.xml'], |
||||
'license': 'LGPL-3', |
'demo': [], |
||||
'images': ['static/description/banner.jpg'], |
'images': ['static/description/banner.jpg'], |
||||
|
'license': 'AGPL-3', |
||||
'installable': True, |
'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 |
@ -1,16 +1,15 @@ |
|||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||
<odoo> |
<odoo> |
||||
<data> |
<data> |
||||
<record id="partner_filter_form" model="ir.ui.view"> |
<record id="partner_filter_aged_balance_view" model="ir.ui.view"> |
||||
<field name="name">partner.filter.form</field> |
<field name="name">partner.filter.form</field> |
||||
<field name="model">account.aged.trial.balance</field> |
<field name="model">account.aged.trial.balance</field> |
||||
<field name="inherit_id" ref="account.account_aged_balance_view" /> |
<field name="inherit_id" ref="account.account_aged_balance_view" /> |
||||
<field name="arch" type="xml"> |
<field name="arch" type="xml"> |
||||
<field name='target_move' position="after"> |
<field name='target_move' position="after"> |
||||
<field name="customer" widget="many2many_tags"/> |
<field name="customer" widget="many2many_tags"/> |
||||
</field > |
</field> |
||||
</field> |
</field> |
||||
</record> |
</record> |
||||
|
|
||||
</data> |
</data> |
||||
</odoo> |
</odoo> |
||||
|
Loading…
Reference in new issue