@kmkf-fe-packages/services-components 2.0.79-beta.2 → 2.0.79

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/README.md CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  - 针对于自定义组件的后缀,在提交的时候是以组件类型的驼峰式来命名的
4
4
 
5
- ---
5
+ ---
@@ -93,7 +93,7 @@ var EBuyerNick = /*#__PURE__*/_createClass(function EBuyerNick(options) {
93
93
  required: (_this$componentConfig = (_this$componentConfig2 = _this.componentConfig) === null || _this$componentConfig2 === void 0 ? void 0 : _this$componentConfig2.required) !== null && _this$componentConfig !== void 0 ? _this$componentConfig : false,
94
94
  hidden: p === null || p === void 0 ? void 0 : p.hidden,
95
95
  display: p === null || p === void 0 ? void 0 : p.display,
96
- tooltip: (_this$componentConfig3 = _this.componentConfig) !== null && _this$componentConfig3 !== void 0 && _this$componentConfig3.showTooltip ? (_this$componentConfig4 = _this.componentConfig) === null || _this$componentConfig4 === void 0 ? void 0 : _this$componentConfig4.tooltip : "",
96
+ tooltip: (_this$componentConfig3 = _this.componentConfig) !== null && _this$componentConfig3 !== void 0 && _this$componentConfig3.showTooltip ? (_this$componentConfig4 = _this.componentConfig) === null || _this$componentConfig4 === void 0 ? void 0 : _this$componentConfig4.tooltip : '',
97
97
  component: /*#__PURE__*/React.createElement(BuyerNick, _extends({}, _this.componentConfig, {
98
98
  shopId: (_this$effects3 = _this.effects) === null || _this$effects3 === void 0 ? void 0 : _this$effects3.shopId,
99
99
  shopList: (_this$effects4 = _this.effects) === null || _this$effects4 === void 0 ? void 0 : _this$effects4.shopList,
@@ -903,11 +903,11 @@ var GoodHeaderMap = {
903
903
  name: "总金额",
904
904
  transformValue: function transformValue(val, record, parentName) {
905
905
  if (!record) return "--";
906
- return ((record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0)).toFixed(2);
906
+ return (record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0);
907
907
  },
908
908
  renderExport: function renderExport(val, record, parentName) {
909
909
  if (!record) return "--";
910
- return ((record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0)).toFixed(2);
910
+ return (record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0);
911
911
  }
912
912
  },
913
913
  batchId: "批次号",
@@ -999,11 +999,11 @@ var GoodHeaderMap = {
999
999
  name: "总金额",
1000
1000
  transformValue: function transformValue(val, record, parentName) {
1001
1001
  if (!record) return "--";
1002
- return ((record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0)).toFixed(2);
1002
+ return (record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0);
1003
1003
  },
1004
1004
  renderExport: function renderExport(val, record, parentName) {
1005
1005
  if (!record) return "--";
1006
- return ((record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0)).toFixed(2);
1006
+ return (record["".concat(parentName, "_qty")] || 0) * (+record["".concat(parentName, "_salePrice")] || 0);
1007
1007
  }
1008
1008
  },
1009
1009
  batchId: "批次号",
@@ -176,7 +176,7 @@ var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
176
176
  });
177
177
  _defineProperty(this, "filterConfig", function (item) {
178
178
  var _typeMap$_this$type8, _typeMap$_this$type9, _typeMap$_this$type11;
179
- return [["WDT_SEND_GOOD", "BS_E3_SEND_GOOD", "KM_SEND_GOOD", "GY_SEND_GOOD"].includes(_this.type) ? {
179
+ return [["WDT_SEND_GOOD", "BS_E3_SEND_GOOD", "GY_SEND_GOOD"].includes(_this.type) ? {
180
180
  searchDefaultConditions: SYMBOL.in,
181
181
  type: item.type,
182
182
  id: "".concat(item.id, "_").concat((_typeMap$_this$type8 = typeMap[_this.type]) === null || _typeMap$_this$type8 === void 0 ? void 0 : _typeMap$_this$type8.sendName),
@@ -14,8 +14,6 @@ declare class MsgStatus implements ComponentInterface {
14
14
  children: ComponentInterface[];
15
15
  dataType: ComponentInterface["dataType"];
16
16
  options: ComponentInterface["options"];
17
- exampleValue?: string;
18
- standardDateType: ComponentInterface["standardDateType"];
19
17
  constructor(options: PickOption);
20
18
  renderClient: (record: any) => React.JSX.Element | null;
21
19
  renderPc: (value: any, record: Record) => React.JSX.Element;
@@ -39,15 +39,10 @@ var typeMap = {
39
39
  label: "等待执行",
40
40
  color: "#e7780f"
41
41
  }, {
42
- oldValue: "不满足条件,无需执行",
42
+ oldValue: "等待发送",
43
43
  value: "不满足条件,无需执行",
44
44
  label: "不满足条件,无需执行",
45
45
  color: "#8A8A8A"
46
- }, {
47
- oldValue: "暂不满足条件,等待执行",
48
- value: "暂不满足条件,等待执行",
49
- label: "暂不满足条件,等待执行",
50
- color: "#4D90F7"
51
46
  }],
52
47
  key: "msgStatusValues",
53
48
  code: "msgStatus4Search",
@@ -79,8 +74,6 @@ var MsgStatus = /*#__PURE__*/_createClass(function MsgStatus(options) {
79
74
  _defineProperty(this, "children", void 0);
80
75
  _defineProperty(this, "dataType", void 0);
81
76
  _defineProperty(this, "options", void 0);
82
- _defineProperty(this, "exampleValue", void 0);
83
- _defineProperty(this, "standardDateType", void 0);
84
77
  _defineProperty(this, "renderClient", function (record) {
85
78
  var _typeMap$_this$type, _typeMap$_this$type2, _typeMap$_this$type3;
86
79
  var isShow = Array.isArray(record === null || record === void 0 ? void 0 : record[_this.id]) ? some(record === null || record === void 0 ? void 0 : record[_this.id], function (item) {
@@ -132,7 +125,7 @@ var MsgStatus = /*#__PURE__*/_createClass(function MsgStatus(options) {
132
125
  return item[(_typeMap$_this$type14 = typeMap[_this.type]) === null || _typeMap$_this$type14 === void 0 ? void 0 : _typeMap$_this$type14.valueKey] === option.value;
133
126
  });
134
127
  var key = item.msgType || "ding";
135
- return "".concat(msgTypeCh[key] || key).concat(item.ruleName ? "-".concat(item.ruleName) : "", ":").concat(currentOption ? (currentOption === null || currentOption === void 0 ? void 0 : currentOption.label) || "" : (item === null || item === void 0 ? void 0 : item[(_typeMap$_this$type15 = typeMap[_this.type]) === null || _typeMap$_this$type15 === void 0 ? void 0 : _typeMap$_this$type15.valueKey]) || "");
128
+ return "".concat(msgTypeCh[key]).concat(item.ruleName ? "-".concat(item.ruleName) : "", ":").concat(currentOption ? (currentOption === null || currentOption === void 0 ? void 0 : currentOption.label) || "" : (item === null || item === void 0 ? void 0 : item[(_typeMap$_this$type15 = typeMap[_this.type]) === null || _typeMap$_this$type15 === void 0 ? void 0 : _typeMap$_this$type15.valueKey]) || "");
136
129
  }).join(",");
137
130
  });
138
131
  _defineProperty(this, "editRender", function (p) {
@@ -202,7 +195,5 @@ var MsgStatus = /*#__PURE__*/_createClass(function MsgStatus(options) {
202
195
  }] : [];
203
196
  this.align = "left";
204
197
  this.options = (_typeMap$options$type3 = typeMap[options.type]) === null || _typeMap$options$type3 === void 0 ? void 0 : _typeMap$options$type3.options;
205
- this.exampleValue = '{"msgStatus4Search":"["1"]","msgStatusValues":"[{"jobUuid":"1","msgType":"1","msgRuleId":"1","statusKey":"1","ruleName":"1","failReason":"","msgReceivers":[],"status":"1"}]"}';
206
- this.standardDateType = "Object";
207
198
  });
208
199
  export default MsgStatus;
@@ -36,5 +36,6 @@ declare class PaymentAmount implements ComponentInterface {
36
36
  formatFilterValue: (val: Array<number | null>) => (number | null)[];
37
37
  filterFn: (value: string) => (i: Record) => boolean;
38
38
  };
39
+ formDataTransform: (value: string) => string | number;
39
40
  }
40
41
  export default PaymentAmount;
@@ -132,6 +132,10 @@ var PaymentAmount = /*#__PURE__*/_createClass(function PaymentAmount(options) {
132
132
  }
133
133
  };
134
134
  });
135
+ _defineProperty(this, "formDataTransform", function (value) {
136
+ var isNumber = new RegExp(/^[+-]?\d+(\.\d+)?$/);
137
+ return isNumber.test(value) ? Number(value) : value;
138
+ });
135
139
  this.name = '打款金额';
136
140
  this.id = "".concat(options.id, "_enterprisePaymentRefundFee");
137
141
  this.sortField = "".concat(options.id, "_enterprisePaymentRefundFee");
@@ -28,9 +28,6 @@ var typeMap = {
28
28
  },
29
29
  REFUND_TYPE: {
30
30
  key: "orderRefundType"
31
- },
32
- EXECUTE_ACTION_TYPE: {
33
- key: "executeActionType"
34
31
  }
35
32
  };
36
33
  var BasicSelect = /*#__PURE__*/_createClass(function BasicSelect(options) {
@@ -1,3 +1,3 @@
1
1
  import { ReissueLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, BasicAddress, BasicCascader, BasicCheckbox, BasicDataTime, BasicSelect, BasicRadio, BasicTextArea, BasicPicture, BasicPicturePro, BasicMultSelect, BasicGrade, BasicRate, BasicFile, BasicPosting, SubForm, CommonDataTime, TradeId, ShopName, BuyerNick, ReceiverName, ReceiverMobile, ReceiverAddress, TradeDateTime, Logistics, ReturnLogistics, ActualPayment, ERemark, AliPay, ItemSelect, ItemId, ItemEnCode, SystemOrderNo, Ordinary, ThirdItemSelect, FlowStatusSelect, FlowMarkSelect, FlowTag, Payment, TemplateSelect, WorkOrderId, PlatForm, ShopInput, Submitter, PrevSubmitter, FlowCreator, Handler, CompletedUser, LogisticsInterception, LogisticsMoreInterception, LogisticsTrajectory, LogisticsMoreTrajectory, FlowWorkOrderId, BsGoods, BsExchange, BsReissue, BsReturn, BsSystemOrder, BsLogistics, StatusSelect, CommonSystemOrder, CommonMultiStatus, Calculation, NodeDeadLine, HandlerDeadLine, NodeStayDuration, WlnGoods, BsPosting, MsgStatus, NodeInput, FlowWorkOrderStatus, WdtGoods, WdtReturn, WdtExchange, CommonInput, PaymentVoucherCode, Label, WdtReissue, GyReissue, AfterSalesOrderId, BsE3Goods, PublicGoods, PublicReissueGoods, PublicExchange, GyGoods, BsE3Reissue, MemberLevel, GyReturn, AsyncSelect, WdtShopSelect, KmVideo } from "./index";
2
2
  import { PickOption } from "./type";
3
- export declare const factory: (type: string, options: PickOption) => BuyerNick | JstSendGood | MsgStatus | BasicSelect | BasicInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicRadio | BasicTextArea | BasicPicture | BasicPicturePro | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | SubForm | CommonDataTime | TradeId | ShopName | ReceiverName | ReceiverMobile | ReceiverAddress | TradeDateTime | Logistics | ReturnLogistics | ActualPayment | ERemark | AliPay | ItemSelect | ItemId | ItemEnCode | SystemOrderNo | Ordinary | ThirdItemSelect | Payment | ReissueLogistics | JstItemSelect | JstSupply | BsSystemOrder | BsGoods | BsE3Goods | PublicGoods | PublicReissueGoods | PublicExchange | BsE3Reissue | BsExchange | BsReissue | BsReturn | BsLogistics | FlowStatusSelect | FlowMarkSelect | FlowTag | TemplateSelect | WorkOrderId | LogisticsInterception | LogisticsMoreInterception | LogisticsTrajectory | LogisticsMoreTrajectory | PlatForm | ShopInput | Submitter | PrevSubmitter | FlowCreator | Handler | CompletedUser | FlowWorkOrderId | StatusSelect | Calculation | CommonSystemOrder | CommonMultiStatus | NodeDeadLine | HandlerDeadLine | NodeStayDuration | WlnGoods | BsPosting | NodeInput | FlowWorkOrderStatus | WdtGoods | WdtReissue | WdtReturn | WdtExchange | WdtShopSelect | KmVideo | CommonInput | PaymentVoucherCode | Label | MemberLevel | AfterSalesOrderId | GyGoods | GyReissue | GyReturn | AsyncSelect;
3
+ export declare const factory: (type: string, options: PickOption) => BuyerNick | FlowStatusSelect | JstSendGood | MsgStatus | BasicSelect | BasicInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicRadio | BasicTextArea | BasicPicture | BasicPicturePro | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | SubForm | CommonDataTime | TradeId | ShopName | ReceiverName | ReceiverMobile | ReceiverAddress | TradeDateTime | Logistics | ReturnLogistics | ActualPayment | ERemark | AliPay | ItemSelect | ItemId | ItemEnCode | SystemOrderNo | Ordinary | ThirdItemSelect | Payment | ReissueLogistics | JstItemSelect | JstSupply | BsSystemOrder | BsGoods | BsE3Goods | PublicGoods | PublicReissueGoods | PublicExchange | BsE3Reissue | BsExchange | BsReissue | BsReturn | BsLogistics | FlowMarkSelect | FlowTag | TemplateSelect | WorkOrderId | LogisticsInterception | LogisticsMoreInterception | LogisticsTrajectory | LogisticsMoreTrajectory | PlatForm | ShopInput | Submitter | PrevSubmitter | FlowCreator | Handler | CompletedUser | FlowWorkOrderId | StatusSelect | Calculation | CommonSystemOrder | CommonMultiStatus | NodeDeadLine | HandlerDeadLine | NodeStayDuration | WlnGoods | BsPosting | NodeInput | FlowWorkOrderStatus | WdtGoods | WdtReissue | WdtReturn | WdtExchange | WdtShopSelect | KmVideo | CommonInput | PaymentVoucherCode | Label | MemberLevel | AfterSalesOrderId | GyGoods | GyReissue | GyReturn | AsyncSelect;
@@ -33,7 +33,6 @@ export var factory = function factory(type, options) {
33
33
  case "NEW_PAYMENT_STATUS":
34
34
  case "ORDER_TYPE":
35
35
  case "REFUND_TYPE":
36
- case "EXECUTE_ACTION_TYPE":
37
36
  return new BasicSelect(options);
38
37
  case "PICTURE":
39
38
  return new BasicPicture(options);
@@ -54,7 +54,6 @@ export interface ComponentInterface {
54
54
  width?: number;
55
55
  align?: ALignType;
56
56
  dataType: "string" | "number" | "boolean" | "array" | "range" | "object" | "weakenArray" | "arrayObject";
57
- standardDateType: "String" | "Number" | "Boolean" | "Array" | "Object";
58
57
  format?: "dateTime" | "date" | "time" | "cascader" | "shopInput" | "staffGroup" | "object";
59
58
  options?: Array<any>;
60
59
  optionsMap?: Record;
@@ -63,7 +62,6 @@ export interface ComponentInterface {
63
62
  workOrderUniqueKey?: string;
64
63
  platform?: PlatForm;
65
64
  parentName?: string;
66
- exampleValue?: any;
67
65
  /**
68
66
  * @description 组件下标
69
67
  * @deprecated 已弃用字段,后续版本不在使用
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/services-components",
3
- "version": "2.0.79-beta.2",
3
+ "version": "2.0.79",
4
4
  "module": "dist/esm/index.js",
5
5
  "typings": "dist/esm/index.d.ts",
6
6
  "files": [
@@ -21,8 +21,8 @@
21
21
  ]
22
22
  },
23
23
  "dependencies": {
24
- "@kmkf-fe-packages/basic-components": "2.0.79-beta.2",
25
- "@kmkf-fe-packages/kmkf-utils": "2.0.79-beta.2",
24
+ "@kmkf-fe-packages/basic-components": "2.0.79",
25
+ "@kmkf-fe-packages/kmkf-utils": "2.0.79",
26
26
  "b64-to-blob": "^1.2.19",
27
27
  "html2canvas": "^1.4.1",
28
28
  "react-pdf-js": "^5.1.0"
@@ -41,7 +41,7 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "f857118aff6aae6c75ba9f9e249399e5cd5b11fe",
44
+ "gitHead": "2322a33372d35b4da259bd6ea8d4838164dc70e8",
45
45
  "gitHooks": {
46
46
  "pre-commit": "lint-staged"
47
47
  }