@kmkf-fe-packages/services-components 2.3.17 → 2.3.19-beta.2
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.
|
@@ -1472,6 +1472,10 @@ var GoodHeaderMap = {
|
|
|
1472
1472
|
},
|
|
1473
1473
|
KM_GOODS: {
|
|
1474
1474
|
headerMap: {
|
|
1475
|
+
sysItemOuterId: {
|
|
1476
|
+
name: "系统主商家编码",
|
|
1477
|
+
width: 250
|
|
1478
|
+
},
|
|
1475
1479
|
sysSkuPropertiesName: {
|
|
1476
1480
|
name: "规格名称",
|
|
1477
1481
|
width: 250
|
|
@@ -1553,6 +1557,10 @@ var GoodHeaderMap = {
|
|
|
1553
1557
|
},
|
|
1554
1558
|
KM_REISSUE_GOODS: {
|
|
1555
1559
|
headerMap: {
|
|
1560
|
+
sysItemOuterId: {
|
|
1561
|
+
name: "系统主商家编码",
|
|
1562
|
+
width: 250
|
|
1563
|
+
},
|
|
1556
1564
|
sysSkuPropertiesName: {
|
|
1557
1565
|
name: "规格名称",
|
|
1558
1566
|
width: 250
|
|
@@ -36,6 +36,13 @@ var typeMap = {
|
|
|
36
36
|
type: 3,
|
|
37
37
|
valueKey: "billNo"
|
|
38
38
|
},
|
|
39
|
+
SWAP_OUT_TRADE_ID: {
|
|
40
|
+
key: "tradeItemList",
|
|
41
|
+
code: "tradeIdList",
|
|
42
|
+
name: "换出系统订单号",
|
|
43
|
+
type: 3,
|
|
44
|
+
valueKey: "billNo"
|
|
45
|
+
},
|
|
39
46
|
EXCHANGE_TRADE_ID: {
|
|
40
47
|
key: "tradeItemList",
|
|
41
48
|
code: "tradeIdList",
|
package/dist/esm/factory.d.ts
CHANGED
|
@@ -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, BasicTypeInput, SkxIdInputSelect, SkxGoods, BasicSelectOption, OrderSubForm, FlowOverallStatusSelect, ReturnWarehouse, KmExchange } from "./index";
|
|
2
2
|
import { PickOption } from "./type";
|
|
3
|
-
export declare const factory: (type: string, options: PickOption) =>
|
|
3
|
+
export declare const factory: (type: string, options: PickOption) => CommonSystemOrder | MsgStatus | BasicInput | BasicTypeInput | BasicAddress | BasicCascader | BasicCheckbox | BasicDataTime | BasicSelect | BasicSelectOption | 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 | Payment | ReissueLogistics | JstItemSelect | JstSendGood | 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 | CommonMultiStatus | NodeDeadLine | HandlerDeadLine | NodeStayDuration | WlnGoods | BsPosting | NodeInput | FlowWorkOrderStatus | WdtGoods | WdtReissue | WdtReturn | WdtExchange | WdtShopSelect | KmVideo | CommonInput | PaymentVoucherCode | Label | MemberLevel | AfterSalesOrderId | ReturnWarehouse | GyGoods | KmExchange | GyReissue | GyReturn | AsyncSelect | SkxIdInputSelect | SkxGoods | OrderSubForm | FlowOverallStatusSelect;
|
package/dist/esm/factory.js
CHANGED
|
@@ -206,6 +206,7 @@ export var factory = function factory(type, options) {
|
|
|
206
206
|
case "JST_RETURN_GOODS":
|
|
207
207
|
return new PublicReissueGoods(options);
|
|
208
208
|
case "REISSUE_TRADE_ID":
|
|
209
|
+
case "SWAP_OUT_TRADE_ID":
|
|
209
210
|
case "ERP_AFTER_SALE_TRADE_ID":
|
|
210
211
|
case "BS_DELIVERY_NO":
|
|
211
212
|
case "RETURN_GOODS_TRADE_ID":
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.19-beta.2",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
]
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@kmkf-fe-packages/basic-components": "2.3.
|
|
24
|
+
"@kmkf-fe-packages/basic-components": "2.3.19-beta.2",
|
|
25
25
|
"@kmkf-fe-packages/kmkf-utils": "2.3.17",
|
|
26
26
|
"b64-to-blob": "^1.2.19",
|
|
27
27
|
"html2canvas": "^1.4.1",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "319beea5fcbeb6171121bb9be09a6031633fab43",
|
|
45
45
|
"gitHooks": {
|
|
46
46
|
"pre-commit": "lint-staged"
|
|
47
47
|
}
|