Files
jikimo_sf/sf_sale/__manifest__.py
jinling.yang 5fa9d1e16e 1.优化生成销售订单和产品的接口:bfm分配工厂时将“结算方式”和“支付方式”传到该接口内的生成报价订单方法里
2.优化销售和报价查询及详情页面:新增“结算方式”和“支付方式”两个字段;销售的tree列表的“号码”显示改为“订单号”;报价的tree列表的“号码”显示改为“订单号”,创建时间改为“下单时间”
3.优化快速订单:tree列表去掉“表面工艺参数”字段,新增“创建人”和“创建时间”2个字段;详情页面新增“加工时长”字段
2023-09-14 18:04:04 +08:00

29 lines
766 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': '机企猫智能工厂 销售管理',
'version': '1.0',
'summary': '智能工厂销售模块',
'sequence': 1,
'description': """
在本模块,为业务平台传过来的订单信息
""",
'category': 'sf',
'website': 'https://www.sf.jikimo.com',
'depends': ['sale', 'web_widget_model_viewer'],
'data': [
'security/group_security.xml',
'security/ir.model.access.csv',
'views/sale_order_view.xml',
'views/quick_easy_order_view.xml'
],
'demo': [
],
'qweb': [
],
'license': 'LGPL-3',
'installable': True,
'application': False,
'auto_install': False,
}