@kmkf-fe-packages/services-components 1.16.5-alpha.5 → 1.16.5-alpha.6

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.
@@ -79,37 +79,19 @@ var BsLogistics = /*#__PURE__*/_createClass(function BsLogistics(_options) {
79
79
  }) : null;
80
80
  });
81
81
  _defineProperty(this, "getSortChildFields", function (type, options) {
82
- if (!type) {
83
- var _typeMap$options$type, _typeMap$options$type2;
84
- return [{
85
- name: "物流公司",
86
- key: "".concat(options.id, "_").concat((_typeMap$options$type = typeMap[options.type]) === null || _typeMap$options$type === void 0 ? void 0 : _typeMap$options$type.company),
87
- options: _this.expressDateInstance.getExpressData(),
88
- dataType: "string"
89
- }, {
90
- name: "物流单号",
91
- key: "".concat(options.id, "_").concat((_typeMap$options$type2 = typeMap[options.type]) === null || _typeMap$options$type2 === void 0 ? void 0 : _typeMap$options$type2.code),
92
- dataType: "string"
93
- }];
94
- }
95
- if (type === "logisticsCompany") {
96
- var _typeMap$options$type3;
97
- return [{
98
- name: "物流公司",
99
- key: "".concat(options.id, "_").concat((_typeMap$options$type3 = typeMap[options.type]) === null || _typeMap$options$type3 === void 0 ? void 0 : _typeMap$options$type3.company),
100
- options: _this.expressDateInstance.getExpressData(),
101
- dataType: "string"
102
- }];
103
- }
104
- if (type === "logisticsCode") {
105
- var _typeMap$options$type4;
106
- return [{
107
- name: "物流单号",
108
- key: "".concat(options.id, "_").concat((_typeMap$options$type4 = typeMap[options.type]) === null || _typeMap$options$type4 === void 0 ? void 0 : _typeMap$options$type4.code),
109
- dataType: "string"
110
- }];
111
- }
112
- return [];
82
+ var _typeMap$options$type, _typeMap$options$type2;
83
+ return [{
84
+ name: "物流公司",
85
+ key: "".concat(options.id, "_").concat((_typeMap$options$type = typeMap[options.type]) === null || _typeMap$options$type === void 0 ? void 0 : _typeMap$options$type.company),
86
+ options: _this.expressDateInstance.getExpressData(),
87
+ dataType: "arrayObject",
88
+ disabled: type === 'logisticsCode'
89
+ }, {
90
+ name: "物流单号",
91
+ key: "".concat(options.id, "_").concat((_typeMap$options$type2 = typeMap[options.type]) === null || _typeMap$options$type2 === void 0 ? void 0 : _typeMap$options$type2.code),
92
+ dataType: "arrayObject",
93
+ disabled: type === 'logisticsCompany'
94
+ }];
113
95
  });
114
96
  _defineProperty(this, "renderPc", function (value, record) {
115
97
  var _typeMap$_this$type;
@@ -1065,7 +1065,7 @@ export var MsgContent = function MsgContent(_ref14) {
1065
1065
  var getColorByStatus = function getColorByStatus(value) {
1066
1066
  var _options$find2;
1067
1067
  return ((_options$find2 = options.find(function (innerItem) {
1068
- return value === innerItem.label;
1068
+ return value === innerItem.label || value === innerItem.oldValue;
1069
1069
  })) === null || _options$find2 === void 0 ? void 0 : _options$find2.color) || '#000';
1070
1070
  };
1071
1071
  var detailContent = function detailContent(item) {
@@ -1106,7 +1106,7 @@ export var MsgContent = function MsgContent(_ref14) {
1106
1106
  cursor: "pointer"
1107
1107
  }
1108
1108
  }, (_item$msgReceivers2 = item.msgReceivers) !== null && _item$msgReceivers2 !== void 0 && _item$msgReceivers2.some(function (msgItem) {
1109
- return (msgItem === null || msgItem === void 0 ? void 0 : msgItem.status) === failValue;
1109
+ return Array.isArray(failValue) ? failValue.includes(msgItem === null || msgItem === void 0 ? void 0 : msgItem.status) : (msgItem === null || msgItem === void 0 ? void 0 : msgItem.status) === failValue;
1110
1110
  }) || item.failReason ? /*#__PURE__*/React.createElement(Popover, {
1111
1111
  content: detailContent(item),
1112
1112
  overlayStyle: {
@@ -17,7 +17,14 @@ declare class EItemEncode implements ComponentInterface {
17
17
  dataType: ComponentInterface["dataType"];
18
18
  showHeader: string[];
19
19
  platform?: ComponentInterface["platform"];
20
+ sortChildField: {
21
+ name: string;
22
+ key: string;
23
+ dataType: string;
24
+ [key: string]: any;
25
+ }[];
20
26
  constructor(options: PickOption);
27
+ getSortChildFields: () => any;
21
28
  renderClient: (record: any) => React.JSX.Element | null;
22
29
  renderPc: (value: unknown, record: Record) => React.JSX.Element | null;
23
30
  renderLog: (r: Record) => React.JSX.Element | null;
@@ -36,6 +36,25 @@ var EItemEncode = /*#__PURE__*/_createClass(function EItemEncode(options) {
36
36
  _defineProperty(this, "dataType", void 0);
37
37
  _defineProperty(this, "showHeader", void 0);
38
38
  _defineProperty(this, "platform", void 0);
39
+ _defineProperty(this, "sortChildField", void 0);
40
+ _defineProperty(this, "getSortChildFields", function () {
41
+ var mapping = {
42
+ title: '商品名称',
43
+ outerId: '商品编码',
44
+ numIid: '商品id',
45
+ skuId: 'skuId',
46
+ outerSkuId: 'sku编码',
47
+ propertiesName: 'sku信息'
48
+ };
49
+ return Object.keys(mapping).map(function (item) {
50
+ return {
51
+ name: mapping[item],
52
+ key: "".concat(_this.id, "_").concat(item),
53
+ dataType: "arrayObject",
54
+ disabled: !_this.showHeader.includes(item)
55
+ };
56
+ });
57
+ });
39
58
  _defineProperty(this, "renderClient", function (record) {
40
59
  if (isNull(record === null || record === void 0 ? void 0 : record[_this.id])) return null;
41
60
  return /*#__PURE__*/React.createElement(ItemView, {
@@ -153,6 +172,7 @@ var EItemEncode = /*#__PURE__*/_createClass(function EItemEncode(options) {
153
172
  return Promise.resolve();
154
173
  }
155
174
  }] : [];
156
- this.dataType = "object";
175
+ this.dataType = "array";
176
+ this.sortChildField = this.getSortChildFields();
157
177
  });
158
178
  export default EItemEncode;
@@ -110,7 +110,7 @@ var BasicInput = /*#__PURE__*/_createClass(function BasicInput(options) {
110
110
  this.workOrderUniqueKey = options === null || options === void 0 ? void 0 : options.workOrderUniqueKey;
111
111
  this.rules = [{
112
112
  validator: function validator(_, value) {
113
- var _this$componentConfig6, _this$componentConfig7, _this$componentConfig8, _this$componentConfig9, _this$componentConfig10;
113
+ var _this$componentConfig6, _this$componentConfig7, _this$componentConfig8, _this$componentConfig9, _this$componentConfig10, _this$componentConfig11;
114
114
  if (!value) {
115
115
  return Promise.resolve();
116
116
  }
@@ -127,11 +127,14 @@ var BasicInput = /*#__PURE__*/_createClass(function BasicInput(options) {
127
127
  if (testList.length && !isTest) {
128
128
  return Promise.reject(new Error("请填写正确的格式"));
129
129
  }
130
- if ((_this$componentConfig9 = _this.componentConfig) !== null && _this$componentConfig9 !== void 0 && (_this$componentConfig10 = _this$componentConfig9.rulesOptions) !== null && _this$componentConfig10 !== void 0 && _this$componentConfig10.length) {
131
- var _this$componentConfig11;
132
- var rulesList = (_this$componentConfig11 = _this.componentConfig) === null || _this$componentConfig11 === void 0 ? void 0 : _this$componentConfig11.rulesOptions.filter(function (item) {
133
- var _this$componentConfig12;
134
- return (((_this$componentConfig12 = _this.componentConfig) === null || _this$componentConfig12 === void 0 ? void 0 : _this$componentConfig12.selectRules) || []).includes(item.id);
130
+ if ((_this$componentConfig9 = _this.componentConfig) !== null && _this$componentConfig9 !== void 0 && _this$componentConfig9.isNumber && value > Number.MAX_SAFE_INTEGER) {
131
+ return Promise.reject(new Error("输入数值超出最大数字上限,请使用文本框替代当前数字输入框组件"));
132
+ }
133
+ if ((_this$componentConfig10 = _this.componentConfig) !== null && _this$componentConfig10 !== void 0 && (_this$componentConfig11 = _this$componentConfig10.rulesOptions) !== null && _this$componentConfig11 !== void 0 && _this$componentConfig11.length) {
134
+ var _this$componentConfig12;
135
+ var rulesList = (_this$componentConfig12 = _this.componentConfig) === null || _this$componentConfig12 === void 0 ? void 0 : _this$componentConfig12.rulesOptions.filter(function (item) {
136
+ var _this$componentConfig13;
137
+ return (((_this$componentConfig13 = _this.componentConfig) === null || _this$componentConfig13 === void 0 ? void 0 : _this$componentConfig13.selectRules) || []).includes(item.id);
135
138
  });
136
139
  if (!rulesList.length) {
137
140
  return Promise.resolve();
@@ -154,8 +157,8 @@ var BasicInput = /*#__PURE__*/_createClass(function BasicInput(options) {
154
157
  validateTrigger: "onBlur",
155
158
  validator: function () {
156
159
  var _validator = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(_, value) {
157
- var _this$componentConfig13;
158
- var _resultList$, params, _yield$replaceCheck, resultList, _this$componentConfig14, _this$componentConfig15, _this$componentConfig16, messageMap;
160
+ var _this$componentConfig14;
161
+ var _resultList$, params, _yield$replaceCheck, resultList, _this$componentConfig15, _this$componentConfig16, _this$componentConfig17, messageMap;
159
162
  return _regeneratorRuntime().wrap(function _callee$(_context) {
160
163
  while (1) switch (_context.prev = _context.next) {
161
164
  case 0:
@@ -165,7 +168,7 @@ var BasicInput = /*#__PURE__*/_createClass(function BasicInput(options) {
165
168
  }
166
169
  return _context.abrupt("return", Promise.resolve());
167
170
  case 2:
168
- if (!((_this$componentConfig13 = _this.componentConfig) !== null && _this$componentConfig13 !== void 0 && _this$componentConfig13.replaceWarn)) {
171
+ if (!((_this$componentConfig14 = _this.componentConfig) !== null && _this$componentConfig14 !== void 0 && _this$componentConfig14.replaceWarn)) {
169
172
  _context.next = 11;
170
173
  break;
171
174
  }
@@ -192,7 +195,7 @@ var BasicInput = /*#__PURE__*/_createClass(function BasicInput(options) {
192
195
  currFlow: "数据已存在本模版中,不能重复提交",
193
196
  allWorkOrder: "数据已存在其他模版中,不能重复提交"
194
197
  };
195
- return _context.abrupt("return", Promise.reject(new Error(messageMap[(_this$componentConfig14 = (_this$componentConfig15 = _this.componentConfig) === null || _this$componentConfig15 === void 0 ? void 0 : (_this$componentConfig16 = _this$componentConfig15.repeatConfig) === null || _this$componentConfig16 === void 0 ? void 0 : _this$componentConfig16.repeatRange) !== null && _this$componentConfig14 !== void 0 ? _this$componentConfig14 : ""] || "内容已存在,不能重复提交")));
198
+ return _context.abrupt("return", Promise.reject(new Error(messageMap[(_this$componentConfig15 = (_this$componentConfig16 = _this.componentConfig) === null || _this$componentConfig16 === void 0 ? void 0 : (_this$componentConfig17 = _this$componentConfig16.repeatConfig) === null || _this$componentConfig17 === void 0 ? void 0 : _this$componentConfig17.repeatRange) !== null && _this$componentConfig15 !== void 0 ? _this$componentConfig15 : ""] || "内容已存在,不能重复提交")));
196
199
  case 11:
197
200
  case "end":
198
201
  return _context.stop();
@@ -15,6 +15,12 @@ declare class JstItemSelect implements ComponentInterface {
15
15
  canSort: boolean;
16
16
  children: ComponentInterface[];
17
17
  dataType: ComponentInterface["dataType"];
18
+ sortChildField: {
19
+ name: string;
20
+ key: string;
21
+ dataType: string;
22
+ [key: string]: any;
23
+ }[];
18
24
  constructor(options: PickOption);
19
25
  renderClient: (record: Record) => React.JSX.Element | null;
20
26
  renderPc: (value: any, record: Record) => React.JSX.Element;
@@ -22,6 +28,7 @@ declare class JstItemSelect implements ComponentInterface {
22
28
  getComponentValue: (r: Record) => any;
23
29
  renderExport: (value: any, record: any) => any;
24
30
  editRender: (p: any) => React.JSX.Element;
31
+ getSortChildFields: () => any;
25
32
  filterConfig: (item: ColumnConfig) => {
26
33
  searchDefaultConditions: "like";
27
34
  type: string;
@@ -16,7 +16,7 @@ import { isNull, filterFn as _filterFn } from "@kmkf-fe-packages/kmkf-utils";
16
16
  import { SYMBOL } from "../../../constant";
17
17
  var JstItemSelect = /*#__PURE__*/_createClass(function JstItemSelect(options) {
18
18
  var _this = this,
19
- _this$componentConfig3;
19
+ _this$componentConfig5;
20
20
  _classCallCheck(this, JstItemSelect);
21
21
  _defineProperty(this, "name", void 0);
22
22
  _defineProperty(this, "id", void 0);
@@ -31,6 +31,7 @@ var JstItemSelect = /*#__PURE__*/_createClass(function JstItemSelect(options) {
31
31
  _defineProperty(this, "canSort", void 0);
32
32
  _defineProperty(this, "children", void 0);
33
33
  _defineProperty(this, "dataType", void 0);
34
+ _defineProperty(this, "sortChildField", void 0);
34
35
  _defineProperty(this, "renderClient", function (record) {
35
36
  return !isNull(record === null || record === void 0 ? void 0 : record[_this.id]) ? /*#__PURE__*/React.createElement(ItemView, {
36
37
  id: _this.id,
@@ -82,6 +83,20 @@ var JstItemSelect = /*#__PURE__*/_createClass(function JstItemSelect(options) {
82
83
  }))
83
84
  });
84
85
  });
86
+ _defineProperty(this, "getSortChildFields", function () {
87
+ var _this$componentConfig3, _this$componentConfig4;
88
+ return [{
89
+ name: "jst供应商名称",
90
+ key: "".concat(_this.id, "_supplierName"),
91
+ dataType: "arrayObject",
92
+ disabled: !((_this$componentConfig3 = _this.componentConfig) !== null && _this$componentConfig3 !== void 0 && _this$componentConfig3.enableSupplierName)
93
+ }, {
94
+ name: "jst供应商编码",
95
+ key: "".concat(_this.id, "_itemId"),
96
+ dataType: "arrayObject",
97
+ disabled: !((_this$componentConfig4 = _this.componentConfig) !== null && _this$componentConfig4 !== void 0 && _this$componentConfig4.enableItemId)
98
+ }];
99
+ });
85
100
  _defineProperty(this, "filterConfig", function (item) {
86
101
  return [{
87
102
  searchDefaultConditions: SYMBOL.like,
@@ -127,23 +142,23 @@ var JstItemSelect = /*#__PURE__*/_createClass(function JstItemSelect(options) {
127
142
  this.canSort = false;
128
143
  this.children = [];
129
144
  this.dataType = "object";
130
- this.rules = (_this$componentConfig3 = this.componentConfig) !== null && _this$componentConfig3 !== void 0 && _this$componentConfig3.required ? [{
145
+ this.rules = (_this$componentConfig5 = this.componentConfig) !== null && _this$componentConfig5 !== void 0 && _this$componentConfig5.required ? [{
131
146
  required: true,
132
147
  validator: function validator(_, value) {
133
- var _this$componentConfig4, _this$componentConfig5;
148
+ var _this$componentConfig6, _this$componentConfig7;
134
149
  if (!value || !value.length) {
135
150
  return Promise.reject(new Error("请选择宝贝"));
136
151
  }
137
152
  var hasNotId = (value || []).some(function (item) {
138
153
  return !item.itemId;
139
154
  });
140
- if ((_this$componentConfig4 = _this.componentConfig) !== null && _this$componentConfig4 !== void 0 && _this$componentConfig4.enableItemId && hasNotId) {
155
+ if ((_this$componentConfig6 = _this.componentConfig) !== null && _this$componentConfig6 !== void 0 && _this$componentConfig6.enableItemId && hasNotId) {
141
156
  return Promise.reject(new Error("请输入供应商编码"));
142
157
  }
143
158
  var hasNotName = (value || []).some(function (item) {
144
159
  return !item.supplierName;
145
160
  });
146
- if ((_this$componentConfig5 = _this.componentConfig) !== null && _this$componentConfig5 !== void 0 && _this$componentConfig5.enableSupplierName && hasNotName) {
161
+ if ((_this$componentConfig7 = _this.componentConfig) !== null && _this$componentConfig7 !== void 0 && _this$componentConfig7.enableSupplierName && hasNotName) {
147
162
  return Promise.reject(new Error("请输入供应商名称"));
148
163
  }
149
164
  return Promise.resolve();
@@ -151,5 +166,6 @@ var JstItemSelect = /*#__PURE__*/_createClass(function JstItemSelect(options) {
151
166
  }] : [];
152
167
  this.align = "left";
153
168
  this.expressDateInstance = ExpressData.getInstance();
169
+ this.sortChildField = this.getSortChildFields();
154
170
  });
155
171
  export default JstItemSelect;
@@ -52,37 +52,19 @@ var JstLogistics = /*#__PURE__*/_createClass(function JstLogistics(_options) {
52
52
  _defineProperty(this, "children", void 0);
53
53
  _defineProperty(this, "dataType", void 0);
54
54
  _defineProperty(this, "getSortChildFields", function (type, options) {
55
- if (!type) {
56
- var _typeMap$options$type, _typeMap$options$type2;
57
- return [{
58
- name: "物流公司",
59
- key: "".concat(options.id, "_").concat((_typeMap$options$type = typeMap[options.type]) === null || _typeMap$options$type === void 0 ? void 0 : _typeMap$options$type.company),
60
- options: _this.expressDateInstance.getExpressData(),
61
- dataType: "string"
62
- }, {
63
- name: "物流单号",
64
- key: "".concat(options.id, "_").concat((_typeMap$options$type2 = typeMap[options.type]) === null || _typeMap$options$type2 === void 0 ? void 0 : _typeMap$options$type2.code),
65
- dataType: "string"
66
- }];
67
- }
68
- if (type === "logisticsCompany") {
69
- var _typeMap$options$type3;
70
- return [{
71
- name: "物流公司",
72
- key: "".concat(options.id, "_").concat((_typeMap$options$type3 = typeMap[options.type]) === null || _typeMap$options$type3 === void 0 ? void 0 : _typeMap$options$type3.company),
73
- options: _this.expressDateInstance.getExpressData(),
74
- dataType: "string"
75
- }];
76
- }
77
- if (type === "logisticsCode") {
78
- var _typeMap$options$type4;
79
- return [{
80
- name: "物流单号",
81
- key: "".concat(options.id, "_").concat((_typeMap$options$type4 = typeMap[options.type]) === null || _typeMap$options$type4 === void 0 ? void 0 : _typeMap$options$type4.code),
82
- dataType: "string"
83
- }];
84
- }
85
- return [];
55
+ var _typeMap$options$type, _typeMap$options$type2;
56
+ return [{
57
+ name: "物流公司",
58
+ key: "".concat(options.id, "_").concat((_typeMap$options$type = typeMap[options.type]) === null || _typeMap$options$type === void 0 ? void 0 : _typeMap$options$type.company),
59
+ options: _this.expressDateInstance.getExpressData(),
60
+ dataType: "string",
61
+ disabled: type === "logisticsCode"
62
+ }, {
63
+ name: "物流单号",
64
+ key: "".concat(options.id, "_").concat((_typeMap$options$type2 = typeMap[options.type]) === null || _typeMap$options$type2 === void 0 ? void 0 : _typeMap$options$type2.code),
65
+ dataType: "string",
66
+ disabled: type === "logisticsCompany"
67
+ }];
86
68
  });
87
69
  _defineProperty(this, "renderClient", function (record) {
88
70
  var _this$componentConfig;
@@ -19,6 +19,7 @@ declare class JstSendGood implements ComponentInterface {
19
19
  canSort: boolean;
20
20
  children: ComponentInterface[];
21
21
  dataType: ComponentInterface["dataType"];
22
+ format: ComponentInterface["format"];
22
23
  constructor(options: PickOption);
23
24
  getSortChildFields: (type: string, options: PickOption, fieldType?: string) => any;
24
25
  renderClient: (record: Record) => React.JSX.Element | null;
@@ -60,31 +60,25 @@ var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
60
60
  _defineProperty(this, "canSort", void 0);
61
61
  _defineProperty(this, "children", void 0);
62
62
  _defineProperty(this, "dataType", void 0);
63
+ _defineProperty(this, "format", void 0);
63
64
  _defineProperty(this, "getSortChildFields", function (type, options, fieldType) {
64
65
  var _typeMap$options$type, _typeMap$options$type2;
65
66
  var sendName = {
66
67
  name: "发货仓名称",
67
68
  key: "".concat(options.id, "_").concat((_typeMap$options$type = typeMap[options.type]) === null || _typeMap$options$type === void 0 ? void 0 : _typeMap$options$type.sendName),
68
- dataType: "string"
69
+ dataType: "arrayObject",
70
+ disabled: type === 'sendId'
69
71
  };
70
72
  var sendId = {
71
73
  name: "发货仓编码",
72
74
  key: "".concat(options.id, "_").concat((_typeMap$options$type2 = typeMap[options.type]) === null || _typeMap$options$type2 === void 0 ? void 0 : _typeMap$options$type2.sendId),
73
- dataType: "string"
75
+ dataType: "arrayObject",
76
+ disabled: type === 'sendName'
74
77
  };
75
78
  if (fieldType === 'WDT_SEND_GOOD') {
76
79
  sendName.options = WdtSendData.getInstance().getWdtSendData() || [];
77
80
  }
78
- if (type === 'all') {
79
- return [sendName, sendId];
80
- }
81
- if (type === 'sendName') {
82
- return [sendName];
83
- }
84
- if (type === 'sendId') {
85
- return [sendId];
86
- }
87
- return [];
81
+ return [sendName, sendId];
88
82
  });
89
83
  _defineProperty(this, "renderClient", function (record) {
90
84
  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) {
@@ -209,7 +203,7 @@ var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
209
203
  this.componentConfig = _options.componentConfig;
210
204
  this.sortChildField = this.getSortChildFields(((_this$componentConfig3 = this.componentConfig) === null || _this$componentConfig3 === void 0 ? void 0 : _this$componentConfig3.showField) || '', _options, _options.type);
211
205
  this.type = _options.type;
212
- this.dataType = "object";
206
+ this.dataType = "arrayObject";
213
207
  this.rules = (_this$componentConfig4 = this.componentConfig) !== null && _this$componentConfig4 !== void 0 && _this$componentConfig4.required ? [{
214
208
  required: true,
215
209
  validator: function validator(_, value) {
@@ -33,36 +33,17 @@ var JstSupply = /*#__PURE__*/_createClass(function JstSupply(_options) {
33
33
  _defineProperty(this, "children", void 0);
34
34
  _defineProperty(this, "dataType", void 0);
35
35
  _defineProperty(this, "getSortChildFields", function (type, options) {
36
- if (!type) {
37
- return [{
38
- name: "jst供销商名称",
39
- key: "".concat(options.id, "_supplyName"),
40
- dataType: "array",
41
- format: "input"
42
- }, {
43
- name: "jst供销商编码",
44
- key: "".concat(options.id, "_supplyId"),
45
- dataType: "array",
46
- format: "input"
47
- }];
48
- }
49
- if (type === "supplyName") {
50
- return [{
51
- name: "jst供销商名称",
52
- key: "".concat(options.id, "_supplyName"),
53
- dataType: "array",
54
- format: "input"
55
- }];
56
- }
57
- if (type === "supplyId") {
58
- return [{
59
- name: "jst供销商编码",
60
- key: "".concat(options.id, "_supplyId"),
61
- dataType: "array",
62
- format: "input"
63
- }];
64
- }
65
- return [];
36
+ return [{
37
+ name: "jst供销商名称",
38
+ key: "".concat(options.id, "_supplyName"),
39
+ dataType: "arrayObject",
40
+ disabled: type === 'supplyId'
41
+ }, {
42
+ name: "jst供销商编码",
43
+ key: "".concat(options.id, "_supplyId"),
44
+ dataType: "arrayObject",
45
+ disabled: type === 'supplyName'
46
+ }];
66
47
  });
67
48
  _defineProperty(this, "renderClient", function (record) {
68
49
  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) {
@@ -157,9 +138,9 @@ var JstSupply = /*#__PURE__*/_createClass(function JstSupply(_options) {
157
138
  this.id = _options.id;
158
139
  this.sortField = "".concat(_options.id, "_jstItemList");
159
140
  this.formField = "".concat(_options.id, "_jstItemList");
160
- this.sortChildField = this.getSortChildFields(((_this$componentConfig3 = this.componentConfig) === null || _this$componentConfig3 === void 0 ? void 0 : _this$componentConfig3.showField) || "", _options);
161
141
  this.type = _options.type;
162
142
  this.componentConfig = _options.componentConfig;
143
+ this.sortChildField = this.getSortChildFields(((_this$componentConfig3 = this.componentConfig) === null || _this$componentConfig3 === void 0 ? void 0 : _this$componentConfig3.showField) || "", _options);
163
144
  this.isCombinationComponent = false;
164
145
  this.canSort = false;
165
146
  this.children = [];
@@ -36,32 +36,17 @@ var JstSendGood = /*#__PURE__*/_createClass(function JstSendGood(_options) {
36
36
  _defineProperty(this, "suffixSendId", void 0);
37
37
  _defineProperty(this, "suffixSendName", void 0);
38
38
  _defineProperty(this, "getSortChildFields", function (type, options) {
39
- if (type === 'all') {
40
- return [{
41
- name: "发货仓名称",
42
- key: "".concat(options.id, "_").concat(_this.suffixSendName),
43
- dataType: "string"
44
- }, {
45
- name: "发货仓编码",
46
- key: "".concat(options.id, "_").concat(_this.suffixSendId),
47
- dataType: "string"
48
- }];
49
- }
50
- if (type === 'sendName') {
51
- return [{
52
- name: "发货仓名称",
53
- key: "".concat(options.id, "_").concat(_this.suffixSendName),
54
- dataType: "string"
55
- }];
56
- }
57
- if (type === 'sendId') {
58
- return [{
59
- name: "发货仓编码",
60
- key: "".concat(options.id, "_").concat(_this.suffixSendId),
61
- dataType: "string"
62
- }];
63
- }
64
- return [];
39
+ return [{
40
+ name: "发货仓名称",
41
+ key: "".concat(options.id, "_").concat(_this.suffixSendName),
42
+ dataType: "arrayObject",
43
+ disabled: type === 'sendId'
44
+ }, {
45
+ name: "发货仓编码",
46
+ key: "".concat(options.id, "_").concat(_this.suffixSendId),
47
+ dataType: "arrayObject",
48
+ disabled: type === 'sendName'
49
+ }];
65
50
  });
66
51
  _defineProperty(this, "renderClient", function (record) {
67
52
  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) {
@@ -34,7 +34,7 @@ var PaymentTid = /*#__PURE__*/_createClass(function PaymentTid(options) {
34
34
  var addressText = (_item$interceptAddres = item.interceptAddress) === null || _item$interceptAddres === void 0 ? void 0 : _item$interceptAddres.map(function (suffix) {
35
35
  return _this.addressDateInstance.getNameByCode(suffix);
36
36
  }).join('');
37
- return addressText || item.interceptDetail || item.interceptReceiverName || item.interceptReceiverMobile ? /*#__PURE__*/React.createElement("div", null, "\u5305\u88F9".concat(index + 1, ":"), addressText, item.interceptDetail, item.interceptReceiverName, item.interceptReceiverMobile) : '--';
37
+ return /*#__PURE__*/React.createElement("div", null, "\u5305\u88F9".concat(index + 1, ":"), addressText || item.interceptDetail || item.interceptReceiverName || item.interceptReceiverMobile ? /*#__PURE__*/React.createElement("div", null, addressText, item.interceptDetail, item.interceptReceiverName, item.interceptReceiverMobile) : "--");
38
38
  }));
39
39
  });
40
40
  _defineProperty(this, "renderClient", function () {
@@ -67,7 +67,7 @@ var Logistics = /*#__PURE__*/_createClass(function Logistics(options) {
67
67
  }).join("");
68
68
  return /*#__PURE__*/React.createElement("div", null, list.length > 1 ? "\u5305\u88F9".concat(index + 1, ":") : "", item.interceptCompany ? /*#__PURE__*/React.createElement("div", null, "\u7269\u6D41\u516C\u53F8\uFF1A", _this.expressDateInstance.getExpressNameByCode(item.interceptCompany) || item.interceptCompany) : null, item.interceptCode ? /*#__PURE__*/React.createElement("div", null, "\u7269\u6D41\u5355\u53F7\uFF1A", /*#__PURE__*/React.createElement(CopyText, {
69
69
  text: item.interceptCode
70
- })) : null, (_item$interceptAddres = item.interceptAddress) !== null && _item$interceptAddres !== void 0 && _item$interceptAddres.length || item.interceptDetail || item.interceptReceiverName || item.interceptReceiverMobile ? /*#__PURE__*/React.createElement("div", null, "\u6D3E\u4EF6\u4FE1\u606F\uFF1A", addressText, item.interceptDetail, " ", item.interceptReceiverName, " ", item.interceptReceiverMobile) : null, item.interceptType ? /*#__PURE__*/React.createElement("div", null, "\u62E6\u622A\u7C7B\u578B\uFF1A", _this.expressInterceptInstance.getTypeNameMap()[item.interceptType]) : null, item.interceptLogisticsStatus ? /*#__PURE__*/React.createElement("div", null, "\u7269\u6D41\u72B6\u6001\uFF1A", (_this$expressIntercep = _this.expressInterceptInstance.getStatusNameMap()) === null || _this$expressIntercep === void 0 ? void 0 : _this$expressIntercep[item.interceptLogisticsStatus], /*#__PURE__*/React.createElement(QueryLogisticsTrack, {
70
+ })) : null, (_item$interceptAddres = item.interceptAddress) !== null && _item$interceptAddres !== void 0 && _item$interceptAddres.length || item.interceptDetail || item.interceptReceiverName || item.interceptReceiverMobile ? /*#__PURE__*/React.createElement("div", null, "\u6D3E\u4EF6\u4FE1\u606F\uFF1A", addressText, item.interceptDetail, " ", item.interceptReceiverName, item.interceptReceiverMobile) : null, item.interceptType ? /*#__PURE__*/React.createElement("div", null, "\u62E6\u622A\u7C7B\u578B\uFF1A", _this.expressInterceptInstance.getTypeNameMap()[item.interceptType]) : null, item.interceptLogisticsStatus ? /*#__PURE__*/React.createElement("div", null, "\u7269\u6D41\u72B6\u6001\uFF1A", (_this$expressIntercep = _this.expressInterceptInstance.getStatusNameMap()) === null || _this$expressIntercep === void 0 ? void 0 : _this$expressIntercep[item.interceptLogisticsStatus], /*#__PURE__*/React.createElement(QueryLogisticsTrack, {
71
71
  modelWidth: 500,
72
72
  interceptCompany: item.interceptCompany,
73
73
  interceptCode: item.interceptCode,
@@ -28,7 +28,7 @@ var InterceptSnapshot = /*#__PURE__*/_createClass(function InterceptSnapshot(opt
28
28
  _defineProperty(this, "renderSnapshot", function (record) {
29
29
  var snapshotList = record[_this.id] || [];
30
30
  return /*#__PURE__*/React.createElement(React.Fragment, null, snapshotList.map(function (item, index) {
31
- return /*#__PURE__*/React.createElement("div", null, "\u5305\u88F9".concat(index + 1, ":"), item);
31
+ return /*#__PURE__*/React.createElement("div", null, "\u5305\u88F9".concat(index + 1, ":"), item ? item : "--");
32
32
  }));
33
33
  });
34
34
  _defineProperty(this, "getComponentValue", function (r) {
@@ -19,29 +19,39 @@ import { SYMBOL } from "../../constant";
19
19
  var typeMap = {
20
20
  MSG_STATUS: {
21
21
  options: [{
22
- value: '发送成功',
23
- label: '发送成功',
22
+ oldValue: '发送成功',
23
+ value: '执行成功',
24
+ label: '执行成功',
24
25
  color: '#52c41a'
25
26
  }, {
26
- value: '已发送',
27
- label: '已发送',
27
+ oldValue: '已发送',
28
+ value: '执行中',
29
+ label: '执行中',
28
30
  color: '#52c41a'
29
31
  }, {
30
- value: '发送失败',
31
- label: '发送失败',
32
+ oldValue: '发送失败',
33
+ value: '执行失败',
34
+ label: '执行失败',
32
35
  color: '#ff4d4f'
33
36
  }, {
34
- value: '等待发送',
35
- label: '等待发送',
37
+ oldValue: '等待发送',
38
+ value: '等待执行',
39
+ label: '等待执行',
36
40
  color: '#e7780f'
41
+ }, {
42
+ oldValue: '等待发送',
43
+ value: '不满足条件,无需执行',
44
+ label: '不满足条件,无需执行',
45
+ color: '#8A8A8A'
37
46
  }],
38
47
  key: 'msgStatusValues',
39
48
  code: 'msgStatus4Search',
40
- name: '消息状态',
49
+ name: '任务状态',
41
50
  type: 1,
42
51
  valueKey: 'status',
43
52
  idKey: 'systemOrderId',
44
- failValue: '发送失败'
53
+ // 添加 发送失败 是为了兼容老数据
54
+ failValue: ['执行失败', '发送失败']
45
55
  }
46
56
  };
47
57
  var msgTypeCh = {
@@ -175,7 +185,7 @@ var MsgStatus = /*#__PURE__*/_createClass(function MsgStatus(options) {
175
185
  this.isCombinationComponent = false;
176
186
  this.canSort = false;
177
187
  this.children = [];
178
- this.dataType = 'object';
188
+ this.dataType = 'arrayObject';
179
189
  this.rules = (_this$componentConfig5 = this.componentConfig) !== null && _this$componentConfig5 !== void 0 && _this$componentConfig5.required ? [{
180
190
  required: true,
181
191
  validator: function validator(_, value) {
@@ -21,6 +21,7 @@ import BsHeaderChild from "../BS/common/BsHeaderChild";
21
21
  import GetFormItem from "../GetFormItem";
22
22
  import ItemView from "../../commonComponents/ItemView";
23
23
  import { isNull } from "@kmkf-fe-packages/kmkf-utils";
24
+ import { difference } from 'lodash';
24
25
  import { SYMBOL } from "../../constant";
25
26
  var SubForm = /*#__PURE__*/_createClass(function SubForm(options) {
26
27
  var _this = this;
@@ -160,9 +161,22 @@ var SubForm = /*#__PURE__*/_createClass(function SubForm(options) {
160
161
  }
161
162
  return prv;
162
163
  }, {});
163
- var msg = (value || []).reduce(function (prv, next) {
164
+ // TODO: 补充确省字段
165
+ var fillKeysValue = value === null || value === void 0 ? void 0 : value.map(function (item) {
166
+ var _this$componentConfig11, _this$componentConfig12;
167
+ var lostKeys = difference((_this$componentConfig11 = _this.componentConfig) === null || _this$componentConfig11 === void 0 ? void 0 : (_this$componentConfig12 = _this$componentConfig11.tableHeader) === null || _this$componentConfig12 === void 0 ? void 0 : _this$componentConfig12.map(function (item) {
168
+ return item.key;
169
+ }), Object.keys(item));
170
+ if (!isNull(lostKeys)) {
171
+ return lostKeys.reduce(function (prv, next) {
172
+ return _objectSpread(_objectSpread({}, prv), {}, _defineProperty({}, next, undefined));
173
+ }, item);
174
+ }
175
+ return item;
176
+ });
177
+ var msg = (fillKeysValue || []).reduce(function (prv, next) {
164
178
  Object.keys(next).forEach(function (key) {
165
- if (result[key] && !next[key]) {
179
+ if (result[key] && isNull(next[key])) {
166
180
  prv = result[key];
167
181
  }
168
182
  });
@@ -13,7 +13,14 @@ declare class ThirdItemSelect implements ComponentInterface {
13
13
  canSort: boolean;
14
14
  children: ComponentInterface[];
15
15
  dataType: ComponentInterface['dataType'];
16
+ sortChildField: {
17
+ name: string;
18
+ key: string;
19
+ dataType: string;
20
+ [key: string]: any;
21
+ }[];
16
22
  constructor(options: PickOption);
23
+ getSortChildFields: () => any;
17
24
  renderClient: (record: Record) => React.JSX.Element | null;
18
25
  renderPc: (value: any, record: Record) => React.JSX.Element;
19
26
  renderLog: (r: Record) => React.JSX.Element | null;
@@ -15,7 +15,7 @@ import { isNull, filterFn as _filterFn } from '@kmkf-fe-packages/kmkf-utils';
15
15
  import { SYMBOL } from "../../constant";
16
16
  var ThirdItemSelect = /*#__PURE__*/_createClass(function ThirdItemSelect(options) {
17
17
  var _this = this,
18
- _this$componentConfig4;
18
+ _this$componentConfig6;
19
19
  _classCallCheck(this, ThirdItemSelect);
20
20
  _defineProperty(this, "name", void 0);
21
21
  _defineProperty(this, "id", void 0);
@@ -29,6 +29,21 @@ var ThirdItemSelect = /*#__PURE__*/_createClass(function ThirdItemSelect(options
29
29
  _defineProperty(this, "canSort", void 0);
30
30
  _defineProperty(this, "children", void 0);
31
31
  _defineProperty(this, "dataType", void 0);
32
+ _defineProperty(this, "sortChildField", void 0);
33
+ _defineProperty(this, "getSortChildFields", function () {
34
+ var _this$componentConfig, _this$componentConfig2;
35
+ return [{
36
+ name: '供应商编码',
37
+ key: "".concat(_this.id, "_itemId"),
38
+ dataType: "arrayObject",
39
+ disabled: !((_this$componentConfig = _this.componentConfig) !== null && _this$componentConfig !== void 0 && _this$componentConfig.enableItemId)
40
+ }, {
41
+ name: '供应商名称',
42
+ key: "".concat(_this.id, "_supplierName"),
43
+ dataType: "arrayObject",
44
+ disabled: !((_this$componentConfig2 = _this.componentConfig) !== null && _this$componentConfig2 !== void 0 && _this$componentConfig2.enableSupplierName)
45
+ }];
46
+ });
32
47
  _defineProperty(this, "renderClient", function (record) {
33
48
  return !isNull(record === null || record === void 0 ? void 0 : record[_this.id]) ? /*#__PURE__*/React.createElement(ItemView, {
34
49
  id: _this.id,
@@ -68,7 +83,7 @@ var ThirdItemSelect = /*#__PURE__*/_createClass(function ThirdItemSelect(options
68
83
  });
69
84
  });
70
85
  _defineProperty(this, "editRender", function (p) {
71
- var _this$componentConfig, _this$componentConfig2, _this$componentConfig3, _this$effects, _this$effects2;
86
+ var _this$componentConfig3, _this$componentConfig4, _this$componentConfig5, _this$effects, _this$effects2;
72
87
  return /*#__PURE__*/React.createElement(GetFormItem, {
73
88
  title: _this.name,
74
89
  name: _this.id,
@@ -76,9 +91,9 @@ var ThirdItemSelect = /*#__PURE__*/_createClass(function ThirdItemSelect(options
76
91
  required: false,
77
92
  hidden: p === null || p === void 0 ? void 0 : p.hidden,
78
93
  display: p === null || p === void 0 ? void 0 : p.display,
79
- tooltip: (_this$componentConfig = _this.componentConfig) !== null && _this$componentConfig !== void 0 && _this$componentConfig.showTooltip ? (_this$componentConfig2 = _this.componentConfig) === null || _this$componentConfig2 === void 0 ? void 0 : _this$componentConfig2.tooltip : '',
94
+ 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 : '',
80
95
  component: /*#__PURE__*/React.createElement(ItemEncode, _extends({}, _this.componentConfig, {
81
- maxLength: ((_this$componentConfig3 = _this.componentConfig) === null || _this$componentConfig3 === void 0 ? void 0 : _this$componentConfig3.maxLength) || 20,
96
+ maxLength: ((_this$componentConfig5 = _this.componentConfig) === null || _this$componentConfig5 === void 0 ? void 0 : _this$componentConfig5.maxLength) || 20,
82
97
  type: 4,
83
98
  shopId: (_this$effects = _this.effects) === null || _this$effects === void 0 ? void 0 : _this$effects.shopId,
84
99
  shopList: ((_this$effects2 = _this.effects) === null || _this$effects2 === void 0 ? void 0 : _this$effects2.shopList) || [],
@@ -118,28 +133,29 @@ var ThirdItemSelect = /*#__PURE__*/_createClass(function ThirdItemSelect(options
118
133
  this.isCombinationComponent = false;
119
134
  this.canSort = false;
120
135
  this.children = [];
121
- this.dataType = 'object';
122
- this.rules = (_this$componentConfig4 = this.componentConfig) !== null && _this$componentConfig4 !== void 0 && _this$componentConfig4.required ? [{
136
+ this.dataType = 'array';
137
+ this.rules = (_this$componentConfig6 = this.componentConfig) !== null && _this$componentConfig6 !== void 0 && _this$componentConfig6.required ? [{
123
138
  required: true,
124
139
  validator: function validator(_, value) {
125
- var _this$componentConfig5, _this$componentConfig6;
140
+ var _this$componentConfig7, _this$componentConfig8;
126
141
  if (!value || !value.length) {
127
142
  return Promise.reject(new Error('请选择宝贝'));
128
143
  }
129
144
  var hasNotId = (value || []).some(function (item) {
130
145
  return !item.itemId && !item.supplierItemOuterId;
131
146
  });
132
- if ((_this$componentConfig5 = _this.componentConfig) !== null && _this$componentConfig5 !== void 0 && _this$componentConfig5.enableItemId && hasNotId) {
147
+ if ((_this$componentConfig7 = _this.componentConfig) !== null && _this$componentConfig7 !== void 0 && _this$componentConfig7.enableItemId && hasNotId) {
133
148
  return Promise.reject(new Error('请输入供应商编码'));
134
149
  }
135
150
  var hasNotName = (value || []).some(function (item) {
136
151
  return !item.supplierName;
137
152
  });
138
- if ((_this$componentConfig6 = _this.componentConfig) !== null && _this$componentConfig6 !== void 0 && _this$componentConfig6.enableSupplierName && hasNotName) {
153
+ if ((_this$componentConfig8 = _this.componentConfig) !== null && _this$componentConfig8 !== void 0 && _this$componentConfig8.enableSupplierName && hasNotName) {
139
154
  return Promise.reject(new Error('请输入供应商名称'));
140
155
  }
141
156
  return Promise.resolve();
142
157
  }
143
158
  }] : [];
159
+ this.sortChildField = this.getSortChildFields();
144
160
  });
145
161
  export default ThirdItemSelect;
@@ -1,3 +1,3 @@
1
1
  import { JstLogistics, JstItemSelect, JstSupply, JstSendGood, BasicInput, BasicAddress, BasicCascader, BasicCheckbox, BasicDataTime, BasicSelect, BasicRadio, BasicTextArea, BasicPicture, 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, KmErpSendGood, AfterSalesOrderId } from "./index";
2
2
  import { PickOption } from "./type";
3
- export declare const factory: (type: string, options: PickOption) => BasicCascader | StatusSelect | TradeId | BasicInput | BasicAddress | BasicCheckbox | BasicDataTime | BasicSelect | BasicRadio | BasicTextArea | BasicPicture | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | SubForm | CommonDataTime | ShopName | BuyerNick | ReceiverName | ReceiverMobile | ReceiverAddress | TradeDateTime | Logistics | ReturnLogistics | ActualPayment | ERemark | AliPay | ItemSelect | ItemId | ItemEnCode | SystemOrderNo | Ordinary | ThirdItemSelect | Payment | JstLogistics | JstItemSelect | JstSendGood | JstSupply | BsSystemOrder | BsGoods | BsExchange | BsReissue | BsReturn | BsLogistics | FlowStatusSelect | FlowMarkSelect | FlowTag | TemplateSelect | WorkOrderId | LogisticsInterception | LogisticsMoreInterception | LogisticsTrajectory | LogisticsMoreTrajectory | PlatForm | ShopInput | Submitter | PrevSubmitter | FlowCreator | Handler | CompletedUser | FlowWorkOrderId | Calculation | CommonSystemOrder | CommonMultiStatus | NodeDeadLine | HandlerDeadLine | NodeStayDuration | WlnGoods | BsPosting | NodeInput | FlowWorkOrderStatus | MsgStatus | WdtGoods | WdtReissue | WdtReturn | WdtExchange | CommonInput | PaymentVoucherCode | Label | KmErpSendGood | AfterSalesOrderId;
3
+ export declare const factory: (type: string, options: PickOption) => BsLogistics | BsSystemOrder | BasicCheckbox | ItemEnCode | FlowWorkOrderId | FlowWorkOrderStatus | BasicInput | JstItemSelect | JstLogistics | JstSendGood | JstSupply | KmErpSendGood | LogisticsInterception | LogisticsMoreInterception | MsgStatus | SubForm | ThirdItemSelect | BasicDataTime | TradeDateTime | BasicAddress | BasicCascader | BasicSelect | BasicRadio | BasicTextArea | BasicPicture | BasicMultSelect | BasicGrade | BasicRate | BasicFile | BasicPosting | CommonDataTime | TradeId | ShopName | BuyerNick | ReceiverName | ReceiverMobile | ReceiverAddress | Logistics | ReturnLogistics | ActualPayment | ERemark | AliPay | ItemSelect | ItemId | SystemOrderNo | Ordinary | Payment | BsGoods | BsExchange | BsReissue | BsReturn | FlowStatusSelect | FlowMarkSelect | FlowTag | TemplateSelect | WorkOrderId | LogisticsTrajectory | LogisticsMoreTrajectory | PlatForm | ShopInput | Submitter | PrevSubmitter | FlowCreator | Handler | CompletedUser | StatusSelect | Calculation | CommonSystemOrder | CommonMultiStatus | NodeDeadLine | HandlerDeadLine | NodeStayDuration | WlnGoods | BsPosting | NodeInput | WdtGoods | WdtReissue | WdtReturn | WdtExchange | CommonInput | PaymentVoucherCode | Label | AfterSalesOrderId;
@@ -47,8 +47,8 @@ export interface ComponentInterface {
47
47
  rules?: any[];
48
48
  width?: number;
49
49
  align?: ALignType;
50
- dataType: "string" | "number" | "boolean" | "array" | "range" | "object";
51
- format?: "dateTime" | "date" | "time" | "cascader" | "shopInput" | "staffGroup";
50
+ dataType: "string" | "number" | "boolean" | "array" | "range" | "object" | "arrayObject";
51
+ format?: "dateTime" | "date" | "time" | "cascader" | "shopInput" | "staffGroup" | "object";
52
52
  options?: Array<any>;
53
53
  templateId?: string;
54
54
  flowTemplateKey?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/services-components",
3
- "version": "1.16.5-alpha.5",
3
+ "version": "1.16.5-alpha.6",
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": "1.16.5-alpha.5",
25
- "@kmkf-fe-packages/kmkf-utils": "1.16.5-alpha.5",
24
+ "@kmkf-fe-packages/basic-components": "1.16.5-alpha.6",
25
+ "@kmkf-fe-packages/kmkf-utils": "1.16.5-alpha.6",
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": "31bb738f333e28f2338a7f47d6e89ea8a865287f",
44
+ "gitHead": "adec71dedd1a96f8077aaba07425a02bcb6c5e04",
45
45
  "gitHooks": {
46
46
  "pre-commit": "lint-staged"
47
47
  }