forked from osbzr/gooderp_addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__openerp__.py
73 lines (71 loc) · 3.33 KB
/
__openerp__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# -*- 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': '[email protected],[email protected]',
'website': 'https://www.osbzr.com',
'category': 'gooderp',
'description':
'''
该模块可以方便的管理销货。
通过创建销货订单,审核后将销货订单行中的商品销售给客户,来完成销货功能。
通过创建销货退货订单,审核后将退货订单行中的商品退回,来完成销货退货功能。
通过创建销售变更单,选择原始销货订单,审核后将销售变更单行中的商品调整到原始销货订单行,来完成销售调整功能。
销货管理的报表有:
销售订单跟踪表;
销售明细表;
销售汇总表(按商品、按客户、按销售人员);
销售收款一览表;
销售前十商品。
''',
'version': '11.11',
'depends': ['core', 'warehouse', 'money', 'partner_address', 'staff'],
'data': [
'data/sell_data.xml',
'security/groups.xml',
'views/sell_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',
'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,
}