osbzr/gooderp_addons

View on GitHub
sell/__openerp__.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-
##############################################################################
#
#    OpenERP, Open Source Management Solution
#    Copyright (C) 2014 上海开阖软件有限公司 (http://www.osbzr.com).
#    All Rights Reserved
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU 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 General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see http://www.gnu.org/licenses/.
#
##############################################################################
{
    'name': 'GOODERP 销售模块',
    'author': 'jeff@osbzr.com,flora@osbzr.com',
    'website': 'https://www.osbzr.com',
    'category': 'gooderp',
    'description':
    '''
                            该模块可以方便的管理销货。

                            通过创建销货订单,审核后将销货订单行中的商品销售给客户,来完成销货功能。
                            通过创建销货退货订单,审核后将退货订单行中的商品退回,来完成销货退货功能。
                            通过创建销售变更单,选择原始销货订单,审核后将销售变更单行中的商品调整到原始销货订单行,来完成销售调整功能。

                            销货管理的报表有:
                                  销售订单跟踪表;
                                  销售明细表;
                                  销售汇总表(按商品、按客户、按销售人员);
                                  销售收款一览表;
                                  销售前十商品。
    ''',
    'version': '11.11',
    'depends': ['warehouse', 'partner_address', 'staff'],
    'data': [
            'data/sell_data.xml',
            'security/groups.xml',
            'security/rules.xml',
            'views/sell_view.xml',
            'views/customer_view.xml',
            'views/approve_multi_sale_order_view.xml',
            'report/customer_statements_view.xml',
            'report/sell_order_track_view.xml',
            'report/sell_order_detail_view.xml',
            'report/sell_summary_goods_view.xml',
            'report/sell_summary_partner_view.xml',
            'report/sell_summary_staff_view.xml',
            'report/sell_receipt_view.xml',
            'report/sell_top_ten_view.xml',
            'report/sell_summary_view.xml',
            'wizard/customer_statements_wizard_view.xml',
            'wizard/sell_order_track_wizard_view.xml',
            'wizard/sell_order_detail_wizard_view.xml',
            'wizard/sell_summary_goods_wizard_view.xml',
            'wizard/sell_summary_partner_wizard_view.xml',
            'wizard/sell_summary_staff_wizard_view.xml',
            'wizard/sell_receipt_wizard_view.xml',
            'wizard/sell_top_ten_wizard_view.xml',
            'security/ir.model.access.csv',
            'report/report_data.xml',
            'data/home_page_data.xml'
    ],
    'demo': [
        'data/sell_demo.xml',
    ],
    'installable': True,
    'auto_install': False,
}