bmc-common-resource 1.1.101 → 1.1.102

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.
@@ -1,6 +1,6 @@
1
1
  import QuotationItem from "../modules/solution/models/QuotationItem";
2
2
  /**
3
- * 计算报价产品项标准金额 (计量 * 数量 * 单价)
3
+ * 计算报价产品项标准金额 (计量 * 数量 * 单价 * 非标系数)
4
4
  * @param item 报价清单项
5
5
  * @param decimalPlaces 小数保留位数(可选),如果传入则按四舍五入保留指定位数小数
6
6
  * @returns 计算后的标准金额
@@ -8,7 +8,7 @@ import QuotationItem from "../modules/solution/models/QuotationItem";
8
8
  export declare const calcStandardPrice: (item: QuotationItem, decimalPlaces?: number) => number;
9
9
  /**
10
10
  * 计算报价产品项实际金额
11
- * 实际金额 = 标准金额 * 非标系数 * 分项折扣(百分比形式,100表示100%)
11
+ * 实际金额 = 标准金额 * 分项折扣(百分比形式,100表示100%)
12
12
  * 标配或赠品价格标识的产品不计算金额(返回0)
13
13
  * 特殊处理:墙板类(WALLBOARD)且有子项时,实际金额为所有子项实际金额之和
14
14
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmc-common-resource",
3
- "version": "1.1.101",
3
+ "version": "1.1.102",
4
4
  "description": "通用枚举、常量和资源的npm包",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",