8 changed files with 129 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||
|
{ |
||||
|
'name': 'Export Product Stock in Excel', |
||||
|
'version': '0.2', |
||||
|
'category': 'Warehouse', |
||||
|
'license': "AGPL-3", |
||||
|
'summary': "Current Stock Report for all Products in each Warehouse", |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'website': 'http://www.cybrosys.com', |
||||
|
'depends': [ |
||||
|
'base', |
||||
|
'stock', |
||||
|
'sale', |
||||
|
'purchase', |
||||
|
'report_xlsx' |
||||
|
], |
||||
|
'data': [ |
||||
|
'views/wizard_view.xml', |
||||
|
], |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
{ |
||||
|
'name': 'Sale Discount on Total Amount', |
||||
|
'version': '1.0', |
||||
|
'category': 'Sales Management', |
||||
|
'summary': "Discount on total in Sale and invoice with Discount limit and approval", |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'website': 'http://www.cybrosys.com', |
||||
|
|
||||
|
'description': """ |
||||
|
|
||||
|
Sale Discount for Total Amount |
||||
|
======================= |
||||
|
Module to manage discount on total amount in Sale. |
||||
|
as an specific amount or percentage |
||||
|
""", |
||||
|
'depends': ['sale', |
||||
|
'account' |
||||
|
], |
||||
|
'data': [ |
||||
|
'views/sale_view.xml', |
||||
|
'views/account_invoice_view.xml', |
||||
|
'views/invoice_report.xml', |
||||
|
'views/sale_order_report.xml', |
||||
|
'views/res_config_view.xml', |
||||
|
|
||||
|
], |
||||
|
'demo': [ |
||||
|
], |
||||
|
'application': True, |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
} |
@ -0,0 +1,43 @@ |
|||||
|
# -*- encoding: utf-8 -*- |
||||
|
############################################################################## |
||||
|
# |
||||
|
# Item number |
||||
|
# |
||||
|
# Copyright (C) 2016 Cybrosys Techno Solutions (<http://http://www.cybrosys.com). |
||||
|
# |
||||
|
# This program is free software: you can redistribute it and/or modify |
||||
|
# it under the terms of the GNU Affero General Public License 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 <http://www.gnu.org/licenses/>. |
||||
|
# |
||||
|
############################################################################## |
||||
|
{ |
||||
|
'name': 'Sale Splitter', |
||||
|
'version': '1.0', |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'website': 'http://www.cybrosys.com', |
||||
|
'description': """ |
||||
|
|
||||
|
|
||||
|
======================= |
||||
|
|
||||
|
|
||||
|
""", |
||||
|
|
||||
|
'sequence': 6, |
||||
|
'category': 'Sales Management', |
||||
|
'summary': 'Used for splitting lengthy quotations into sepparate.', |
||||
|
'data': ['views/splitter.xml'], |
||||
|
'depends': ['base','sale'], |
||||
|
'installable': True, |
||||
|
'license': 'AGPL-3', |
||||
|
} |
@ -0,0 +1,27 @@ |
|||||
|
{ |
||||
|
'name': 'Taxless Accounting', |
||||
|
'version': '1.0', |
||||
|
'category': 'Accounting', |
||||
|
'sequence': 6, |
||||
|
'summary': 'Lets hide Tax from Accounting', |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'website': 'http://www.cybrosys.com', |
||||
|
'description': """ |
||||
|
|
||||
|
|
||||
|
======================= |
||||
|
|
||||
|
|
||||
|
""", |
||||
|
'depends': ['account','base','account_voucher'], |
||||
|
'data': [ |
||||
|
'views/account_view.xml', |
||||
|
|
||||
|
], |
||||
|
'demo': [ |
||||
|
], |
||||
|
'license': 'AGPL-3', |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
} |
Loading…
Reference in new issue