Commit 4d084d4d14bbf7bed8a298e895a6d911214b5231
1 parent
c5286d59
docs(config): 更新生产字段配置文档
- 添加客户相关字段配置说明 - 新增currency币别配置示例 - 补充customerGroup客户分组配置 - 增加contactCompanyType往来单位类型设置 - 完善customerUseOrg使用组织配置 - 添加customerCreateOrg创建组织配置
Showing
1 changed file
with
62 additions
and
0 deletions
doc/生产字段配置.md
| @@ -1963,3 +1963,65 @@ PLAT_WITHDRAW(7, "平台提现") | @@ -1963,3 +1963,65 @@ PLAT_WITHDRAW(7, "平台提现") | ||
| 1963 | "fixedValue": "000002" | 1963 | "fixedValue": "000002" |
| 1964 | } | 1964 | } |
| 1965 | ``` | 1965 | ``` |
| 1966 | + | ||
| 1967 | +## 5.客户 | ||
| 1968 | + | ||
| 1969 | +### 5.1 currency币别 | ||
| 1970 | + | ||
| 1971 | +```json | ||
| 1972 | +{ | ||
| 1973 | + "pipelineId": 2, | ||
| 1974 | + "documentType": "BD_Customer", | ||
| 1975 | + "configKey": "currency", | ||
| 1976 | + "settingFieldType": 0, | ||
| 1977 | + "fixedValue": "PRE001" | ||
| 1978 | +} | ||
| 1979 | +``` | ||
| 1980 | + | ||
| 1981 | +### 5.2 customerGroup 客户分组 | ||
| 1982 | + | ||
| 1983 | +```json | ||
| 1984 | +{ | ||
| 1985 | + "pipelineId": 2, | ||
| 1986 | + "documentType": "BD_Customer", | ||
| 1987 | + "configKey": "customerGroup", | ||
| 1988 | + "settingFieldType": 0, | ||
| 1989 | + "fixedValue": "默认分组" | ||
| 1990 | +} | ||
| 1991 | +``` | ||
| 1992 | + | ||
| 1993 | +### 5.3 contactCompanyType 往来单位类型 | ||
| 1994 | + | ||
| 1995 | +```json | ||
| 1996 | +{ | ||
| 1997 | + "pipelineId": 2, | ||
| 1998 | + "documentType": "BD_Customer", | ||
| 1999 | + "configKey": "contactCompanyType", | ||
| 2000 | + "settingFieldType": 0, | ||
| 2001 | + "fixedValue": "BD_Customer" | ||
| 2002 | +} | ||
| 2003 | +``` | ||
| 2004 | + | ||
| 2005 | +### 5.4 customerUseOrg 使用组织 | ||
| 2006 | + | ||
| 2007 | +```json | ||
| 2008 | +{ | ||
| 2009 | + "pipelineId": 2, | ||
| 2010 | + "documentType": "BD_Customer", | ||
| 2011 | + "configKey": "customerUseOrg", | ||
| 2012 | + "settingFieldType": 0, | ||
| 2013 | + "fixedValue": "101.02" | ||
| 2014 | +} | ||
| 2015 | +``` | ||
| 2016 | + | ||
| 2017 | +### 5.5 customerCreateOrg 创建组织 | ||
| 2018 | + | ||
| 2019 | +```json | ||
| 2020 | +{ | ||
| 2021 | + "pipelineId": 2, | ||
| 2022 | + "documentType": "BD_Customer", | ||
| 2023 | + "configKey": "customerCreateOrg", | ||
| 2024 | + "settingFieldType": 0, | ||
| 2025 | + "fixedValue": "101.02" | ||
| 2026 | +} | ||
| 2027 | +``` |