bmc-common-resource 1.1.193 → 1.1.195
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants/amount-decimal-value-constant.d.ts +3 -1
- package/dist/constants/assign-business-type-options.constant.d.ts +2 -0
- package/dist/constants/contract-status-options.constant.d.ts +3 -1
- package/dist/constants/contract-type.constant.d.ts +3 -1
- package/dist/constants/currency-unit-options.constant.d.ts +3 -1
- package/dist/constants/design-type-options.constant.d.ts +3 -1
- package/dist/constants/dictionary-identify-options.constant.d.ts +1 -1
- package/dist/constants/house-status-options.constant.d.ts +3 -1
- package/dist/constants/house-type-options.constant.d.ts +3 -1
- package/dist/constants/im-group-type-options.constants.d.ts +3 -1
- package/dist/constants/order-status-options.constant.d.ts +3 -1
- package/dist/constants/price-flag-options.constant.d.ts +3 -1
- package/dist/constants/privilege-status-options.constant.d.ts +3 -1
- package/dist/constants/pro_series_type_enum.constant.d.ts +3 -1
- package/dist/constants/product-unit-measure.constant.d.ts +119 -1
- package/dist/constants/recommendation-type-options.constant.d.ts +3 -1
- package/dist/constants/rounding-rule-options.constant.d.ts +3 -1
- package/dist/constants/sales-end-app-tag.constant.d.ts +3 -1
- package/dist/constants/sign-style-options.constant.d.ts +3 -1
- package/dist/constants/solution-status-options.constant.d.ts +4 -2
- package/dist/constants/spatial-category-options.constant.d.ts +3 -1
- package/dist/constants/supply-mode-options.constant.d.ts +3 -1
- package/dist/constants/user-type-options.constants.d.ts +3 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/interfaces/dictionary.interface.d.ts +2 -0
- package/dist/modules/solution/models/QuotationItem.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 订单小数位数金额保留位数选项
|
|
3
|
-
* 提供 {name: '名称', value: '代码'} 格式的数据
|
|
3
|
+
* 提供 { name: '名称', enName: '英文名称', value: '代码' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { AMOUNT_DECIMAL_VALUE_ENUM } from '../enums/amount-decimal-value.enum';
|
|
6
6
|
export interface AmountDecimalValueOptions {
|
|
7
7
|
/** */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 状态代码 */
|
|
10
12
|
value: AMOUNT_DECIMAL_VALUE_ENUM;
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 销售合同状态选项数组
|
|
3
|
-
* 提供 {name: '状态名称', value: '状态代码'} 格式的数据
|
|
3
|
+
* 提供 { name: '状态名称', enName: '英文名称', value: '状态代码' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { CONTRACT_STATE_ENUM } from '../enums/contract-state.enum';
|
|
6
6
|
export interface ContractStatusOption {
|
|
7
7
|
/** 状态名称 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 状态代码 */
|
|
10
12
|
value: CONTRACT_STATE_ENUM;
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 合同类型
|
|
3
|
-
* 提供 {name: '模式名称', value: '模式值'} 格式的数据
|
|
3
|
+
* 提供 { name: '模式名称', enName: '英文名称', value: '模式值' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { CONTRACT_TYPE } from '../enums/contract-type.enum';
|
|
6
6
|
export interface ContractTypeOption {
|
|
7
7
|
/** 合同类型标签 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 合同类型值 */
|
|
10
12
|
value: CONTRACT_TYPE;
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 货币单位选项数组
|
|
3
|
-
* 提供 {name: '货币名称', value: '货币代码'} 格式的数据
|
|
3
|
+
* 提供 { name: '货币名称', enName: '英文名称', value: '货币代码' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { CURRENCY_UNIT_ENUM } from '../enums/currency-unit.enum';
|
|
6
6
|
export interface CurrencyOption {
|
|
7
7
|
/** 货币名称 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 货币代码 */
|
|
10
12
|
value: CURRENCY_UNIT_ENUM;
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 方案类型选项数组
|
|
3
|
-
* 提供 {name: '状态名称', value: '状态值'} 格式的数据
|
|
3
|
+
* 提供 { name: '状态名称', enName: '英文名称', value: '状态值' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { design_type } from '../enums/design-type.enum';
|
|
6
6
|
export interface designTypeOption {
|
|
7
7
|
/** 状态名称 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 状态值 */
|
|
10
12
|
value: design_type;
|
|
11
13
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 字典项标识选项
|
|
3
|
-
* 提供 {label: '字典项名称', value: '字典项标识'} 格式的数据
|
|
3
|
+
* 提供 { label: '字典项名称', enName: '英文名称', value: '字典项标识' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { DICTIONARY_IDENTIFY_ENUM } from "../enums/dictionary-identify.enum";
|
|
6
6
|
import { DictionaryOption } from "../interfaces/dictionary.interface";
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 房屋交期选项数组
|
|
3
|
-
* 提供 {name: '交期名称', value: '交期值'} 格式的数据
|
|
3
|
+
* 提供 { name: '交期名称', enName: '英文名称', value: '交期值' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { house_status } from '../enums/house-status.enum';
|
|
6
6
|
export interface houseStatusOption {
|
|
7
7
|
/** 交期名称 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 交期值 */
|
|
10
12
|
value: house_status;
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 户型选项数组
|
|
3
|
-
* 提供 {name: '户型名称', value: '户型值'} 格式的数据
|
|
3
|
+
* 提供 { name: '户型名称', enName: '英文名称', value: '户型值' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { house_type } from '../enums/house-type.enum';
|
|
6
6
|
export interface houseTypeOption {
|
|
7
7
|
/** 户型名称 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 户型值 */
|
|
10
12
|
value: house_type;
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 群类型选项
|
|
3
|
-
* 提供 {name: '模式名称', value: '模式值'} 格式的数据
|
|
3
|
+
* 提供 { name: '模式名称', enName: '英文名称', value: '模式值' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { IM_GROUP_TYPE } from '../enums/im_group_type.enum';
|
|
6
6
|
export interface IM_GROUP_TYPE_OPTION {
|
|
7
7
|
/** 群类型标签 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 群类型值 */
|
|
10
12
|
value: IM_GROUP_TYPE;
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 订单状态选项数组
|
|
3
|
-
* 提供 {name: '状态名称', value: '状态值'} 格式的数据
|
|
3
|
+
* 提供 { name: '状态名称', enName: '英文名称', value: '状态值' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { order_status } from '../enums/order-status.enum';
|
|
6
6
|
export interface orderStatusOption {
|
|
7
7
|
/** 状态名称 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 状态值 */
|
|
10
12
|
value: order_status;
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 价格标识选项数组
|
|
3
|
-
* 提供 {name: '标识名称', value: '标识值'} 格式的数据
|
|
3
|
+
* 提供 { name: '标识名称', enName: '英文名称', value: '标识值' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { price_flag } from '../enums/price-flag.enum';
|
|
6
6
|
export interface PriceFlagOption {
|
|
7
7
|
/** 价格标识名称 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 价格标识值 */
|
|
10
12
|
value: price_flag;
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 特权状态选项数组
|
|
3
|
-
* 提供 {name: '状态名称', value: '状态代码'} 格式的数据
|
|
3
|
+
* 提供 { name: '状态名称', enName: '英文名称', value: '状态代码' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { PRIVILEGE_STATE_ENUM } from '../enums/privilege-status.enum';
|
|
6
6
|
export interface PrivilegeStatusOption {
|
|
7
7
|
/** 状态名称 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 状态代码 */
|
|
10
12
|
value: PRIVILEGE_STATE_ENUM;
|
|
11
13
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 产品系列款式分类选项数组
|
|
3
|
-
* 提供 {name: '分类名称', value: '分类值'} 格式的数据
|
|
3
|
+
* 提供 { name: '分类名称', enName: '英文名称', value: '分类值' } 格式的数据
|
|
4
4
|
*/
|
|
5
5
|
import { pro_series_type_enum } from '../enums/pro_series_type.enum';
|
|
6
6
|
export interface SeriesTypeOption {
|
|
7
7
|
/** 状态名称 */
|
|
8
8
|
name: string;
|
|
9
|
+
/** 英文名称 */
|
|
10
|
+
enName: string;
|
|
9
11
|
/** 状态值 */
|
|
10
12
|
value: pro_series_type_enum;
|
|
11
13
|
}
|