@kmkf-fe-packages/basic-components 2.3.0-rc.4 → 2.3.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.
Files changed (41) hide show
  1. package/dist/index.esm.js +4341 -1558
  2. package/dist/index.js +4342 -1555
  3. package/dist/src/apaas/ApaasAddress/index.d.ts +1 -1
  4. package/dist/src/apaas/ApaasImage/index.d.ts +4 -0
  5. package/dist/src/apaas/ApaasPosting/index.d.ts +1 -1
  6. package/dist/src/apaas/SubForm/index.d.ts +2 -2
  7. package/dist/src/apaas/SubForm/render.d.ts +3 -0
  8. package/dist/src/bs/SystemOrder/index.d.ts +5 -0
  9. package/dist/src/bs/component/GoodItem/constants/wdtReissueGoodsColumns.d.ts +2 -1
  10. package/dist/src/bs/component/GoodItem/index.d.ts +7 -2
  11. package/dist/src/bs/component/GoodsModal.d.ts +2 -0
  12. package/dist/src/bs/component/model/BsE3GoodList.d.ts +1 -0
  13. package/dist/src/bs/component/model/Columns/Erp/bse3.d.ts +2 -0
  14. package/dist/src/bs/component/model/Columns/Erp/common.d.ts +2 -0
  15. package/dist/src/bs/component/model/Columns/Erp/gy.d.ts +1 -1
  16. package/dist/src/bs/component/model/Columns/Erp/jst.d.ts +1 -7
  17. package/dist/src/bs/component/model/Columns/Erp/jy.d.ts +21 -0
  18. package/dist/src/bs/component/model/Columns/Erp/km.d.ts +4 -4
  19. package/dist/src/bs/component/model/Columns/Erp/wdt.d.ts +2 -2
  20. package/dist/src/bs/component/model/GyGoodsList.d.ts +2 -0
  21. package/dist/src/bs/component/model/JstGoodsModal/GoodsList.d.ts +1 -0
  22. package/dist/src/bs/component/model/JyGoodsModal/GoodsList.d.ts +32 -0
  23. package/dist/src/bs/component/model/JyGoodsModal/index.d.ts +5 -0
  24. package/dist/src/bs/component/model/KmGoodsModal/GoodsList.d.ts +1 -0
  25. package/dist/src/bs/component/model/WdtGoodList.d.ts +1 -0
  26. package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/FilterSelectOption/Rate/index.d.ts +2 -1
  27. package/dist/src/bs/component/model/WorkOrderList/SearchFormForWorkOrder/SearchHeader/index.d.ts +2 -1
  28. package/dist/src/bs/component/model/WorkOrderList/index.d.ts +1 -0
  29. package/dist/src/bs/component/model/WorkOrderList/useDefaultSearchValue.d.ts +10 -0
  30. package/dist/src/bs/component/model/components/SearchForm/components.d.ts +2 -0
  31. package/dist/src/bs/component/model/components/SearchForm/index.d.ts +5 -3
  32. package/dist/src/bs/component/model/components/SearchForm/utils.d.ts +5 -0
  33. package/dist/src/bs/component/model/type.d.ts +3 -0
  34. package/dist/src/business/LogisticsInterception/index.d.ts +2 -0
  35. package/dist/src/common/IdentifyAddress/index.d.ts +1 -1
  36. package/dist/src/constants/index.d.ts +1 -0
  37. package/dist/src/constants/jy.d.ts +3 -0
  38. package/dist/src/constants/systemOrderColumnsMap.d.ts +81 -0
  39. package/dist/src/index.d.ts +3 -1
  40. package/dist/src/jy/common/index.d.ts +3 -0
  41. package/package.json +3 -3
@@ -3,7 +3,7 @@ interface ProvinceType {
3
3
  value: string[];
4
4
  disabled: boolean;
5
5
  onChange: (value: any, selectedOptions: any) => void;
6
- type?: 'workOrder' | 'bs' | 'wdt' | 'gy' | 'km';
6
+ type?: 'workOrder' | 'bs' | 'wdt' | 'gy' | 'km' | 'jst';
7
7
  }
8
8
  declare const Province: (props: Partial<ProvinceType>) => React.JSX.Element;
9
9
  export default Province;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ImageProps } from 'antd';
3
+ declare function ApaasImage(props: ImageProps): React.JSX.Element;
4
+ export default ApaasImage;
@@ -9,7 +9,7 @@ interface ApaasPostingProps {
9
9
  value: Partial<PostingValueType>;
10
10
  disabled: boolean;
11
11
  onChange: (val: any) => void;
12
- type?: 'workOrder' | 'bs' | 'wdt';
12
+ type?: 'workOrder' | 'bs' | 'wdt' | 'gy' | 'km' | 'jst';
13
13
  }
14
14
  declare function ApaasPosting(props: Partial<ApaasPostingProps>): React.JSX.Element;
15
15
  export default ApaasPosting;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { renderMap } from './render';
2
+ import { renderMap, renderSplitMap } from './render';
3
3
  type subConfigType = {
4
4
  name: string;
5
5
  key: string;
@@ -31,4 +31,4 @@ type SubFormProps = {
31
31
  };
32
32
  declare const SubForm: (props: SubFormProps) => React.JSX.Element;
33
33
  export default SubForm;
34
- export { renderMap };
34
+ export { renderMap, renderSplitMap };
@@ -9,6 +9,7 @@ export declare const PictureRender: ({ value, width, }: {
9
9
  export declare const RadioRender: ({ value }: {
10
10
  value: any;
11
11
  }) => React.JSX.Element;
12
+ export declare const LogisticsCompanyRender: (value: string) => string | number;
12
13
  export declare const CheckboxRender: ({ value }: {
13
14
  value: any;
14
15
  }) => any;
@@ -16,7 +17,9 @@ export declare const MultipleSelectRender: ({ value }: {
16
17
  value: any;
17
18
  }) => any;
18
19
  export declare const renderMap: Record<string, (props: any, platform?: string) => React.ReactNode>;
20
+ export declare const renderSplitMap: Record<string, (props: any) => React.ReactNode>;
19
21
  export declare const EditPictureRender: ({ val, index, t, updateHandle, disabled, hostUrl, platform, }: any) => React.JSX.Element;
20
22
  export declare const EditFileRender: ({ val, index, t, updateHandle, disabled, hostUrl, platform, }: any) => React.JSX.Element;
21
23
  export declare const EditRenderMap: Record<string, (props: any) => React.ReactNode>;
24
+ export declare const EditSplitRenderMap: Record<string, (props: any) => React.ReactNode>;
22
25
  export {};
@@ -6,6 +6,11 @@ interface BsSystemOrderProps {
6
6
  selectIds: string[];
7
7
  showOrderInfo: any[];
8
8
  };
9
+ showHeader: {
10
+ title: string;
11
+ dataIndex: string;
12
+ show?: boolean;
13
+ }[] | string[];
9
14
  type: string;
10
15
  disabled: boolean;
11
16
  onChange: (val: any) => void;
@@ -4,8 +4,9 @@ type P = {
4
4
  disabled: boolean | undefined;
5
5
  updateHandle: (v: any, index: number, key: string) => void;
6
6
  operate?: boolean;
7
+ updateDataHandle: (v: any, index: number) => void;
7
8
  };
8
- export declare const getWdtReissueGoodColumns: ({ disabled, updateHandle, operate, }: P) => ({
9
+ export declare const getWdtReissueGoodColumns: ({ disabled, updateHandle, updateDataHandle, operate, }: P) => ({
9
10
  dataIndex: string;
10
11
  title: string;
11
12
  width?: number | undefined;
@@ -1,7 +1,9 @@
1
1
  import React from 'react';
2
2
  import type { GoodsSourceFormatType, GoodsSourceType } from '../model/type';
3
3
  import { FormInstance } from 'antd/es/form';
4
+ import '../model/Columns/columns.less';
4
5
  interface BsGoodsProps {
6
+ templateDetail?: any;
5
7
  form: FormInstance;
6
8
  value: any[];
7
9
  type: string;
@@ -17,6 +19,7 @@ interface BsGoodsProps {
17
19
  shopId: string | number;
18
20
  maxLength: number;
19
21
  showChangeBtn: boolean;
22
+ hasSelectedSystemOrder: boolean;
20
23
  showErpGoodsBtn: boolean;
21
24
  showModeBtn: boolean;
22
25
  alwaysShowChooseErpGoodsBtn?: boolean;
@@ -54,12 +57,14 @@ type SelectTradeGoodsProps = {
54
57
  uniqueKey?: string;
55
58
  selectedRowKeys: Array<React.Key>;
56
59
  onChangeSelectedKeys: (p: React.Key[]) => void;
57
- isGoods?: boolean;
60
+ isShowSelect?: boolean;
58
61
  systemOrders?: any[];
59
62
  selectedSystemOrders?: any[];
60
63
  type?: string;
61
64
  width?: number;
65
+ validSystemOrder?: boolean;
66
+ isReissueType?: boolean;
62
67
  };
63
- export declare const SelectTradeGoods: ({ columns, dataSource, getDataSourceAsync, selectedRowKeys, onChangeSelectedKeys, uniqueKey, isGoods, systemOrders, selectedSystemOrders, type, width, }: SelectTradeGoodsProps) => React.JSX.Element;
68
+ export declare const SelectTradeGoods: ({ columns, dataSource, getDataSourceAsync, selectedRowKeys, onChangeSelectedKeys, uniqueKey, isShowSelect, systemOrders, selectedSystemOrders, validSystemOrder, type, width, isReissueType, }: SelectTradeGoodsProps) => React.JSX.Element;
64
69
  declare const GoodItem: (props: MakeRequired<Partial<BsGoodsProps>, 'useGoodsSourceFormat'>) => React.JSX.Element;
65
70
  export default GoodItem;
@@ -1,4 +1,6 @@
1
1
  import React from 'react';
2
+ import './model/Columns/columns.less';
3
+ import './model/components/SearchForm/index.less';
2
4
  interface GoodModelProps {
3
5
  shopId: number | string;
4
6
  maxLength: number;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import './Columns/columns.less';
2
3
  export declare namespace BsE3Goods {
3
4
  interface GoodsInfo {
4
5
  deleted: 0 | 1;
@@ -1,7 +1,9 @@
1
+ /// <reference types="react" />
1
2
  declare const _default: {
2
3
  dataIndex: string;
3
4
  title: string;
4
5
  ellipsis: boolean;
5
6
  width: number;
7
+ render: (value: any) => import("react").JSX.Element;
6
8
  }[];
7
9
  export default _default;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const renderTextEllipsis: (value: any) => React.JSX.Element;
@@ -4,7 +4,7 @@ declare const _default: ({
4
4
  title: string;
5
5
  width: number;
6
6
  ellipsis: boolean;
7
- render?: undefined;
7
+ render: (value: any) => React.JSX.Element;
8
8
  } | {
9
9
  dataIndex: string;
10
10
  title: string;
@@ -1,11 +1,5 @@
1
1
  import React from 'react';
2
2
  declare const _default: ({
3
- dataIndex: string;
4
- title: string;
5
- width: number;
6
- ellipsis: boolean;
7
- render?: undefined;
8
- } | {
9
3
  dataIndex: string;
10
4
  title: string;
11
5
  width: number;
@@ -16,6 +10,6 @@ declare const _default: ({
16
10
  title: string;
17
11
  ellipsis: boolean;
18
12
  width: number;
19
- render: (type?: 'normal' | 'combine') => string;
13
+ render: (type?: 'normal' | 'combine') => React.JSX.Element;
20
14
  })[];
21
15
  export default _default;
@@ -0,0 +1,21 @@
1
+ import React from 'react';
2
+ declare const _default: ({
3
+ dataIndex: string;
4
+ title: string;
5
+ width: number;
6
+ render: (picUrl: string) => React.JSX.Element | null;
7
+ ellipsis?: undefined;
8
+ } | {
9
+ dataIndex: string;
10
+ title: string;
11
+ ellipsis: boolean;
12
+ width: number;
13
+ render: (val: boolean) => React.JSX.Element;
14
+ } | {
15
+ dataIndex: string;
16
+ title: string;
17
+ ellipsis: boolean;
18
+ width: number;
19
+ render: (val: string) => React.JSX.Element;
20
+ })[];
21
+ export default _default;
@@ -3,14 +3,14 @@ declare const _default: ({
3
3
  dataIndex: string;
4
4
  title: string;
5
5
  width: number;
6
- ellipsis: boolean;
7
- render?: undefined;
6
+ render: (val: string) => React.JSX.Element;
7
+ ellipsis?: undefined;
8
8
  } | {
9
9
  dataIndex: string;
10
10
  title: string;
11
+ ellipsis: boolean;
11
12
  width: number;
12
- render: (val: string) => React.JSX.Element;
13
- ellipsis?: undefined;
13
+ render: (type: number) => React.JSX.Element;
14
14
  } | {
15
15
  dataIndex: string;
16
16
  title: string;
@@ -4,7 +4,7 @@ declare const _default: ({
4
4
  title: string;
5
5
  width: number;
6
6
  ellipsis: boolean;
7
- render?: undefined;
7
+ render: (value: any) => React.JSX.Element;
8
8
  } | {
9
9
  dataIndex: string;
10
10
  title: string;
@@ -15,7 +15,7 @@ declare const _default: ({
15
15
  dataIndex: string;
16
16
  title: string;
17
17
  width: number;
18
- render: (price: string) => string;
18
+ render: (price: string | number) => string;
19
19
  ellipsis?: undefined;
20
20
  })[];
21
21
  export default _default;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import './Columns/columns.less';
2
3
  export declare namespace BsE3Goods {
3
4
  interface GoodsInfo {
4
5
  deleted: 0 | 1;
@@ -30,6 +31,7 @@ export declare namespace BsE3Goods {
30
31
  }
31
32
  interface SelectDrawerRefObject {
32
33
  getSelectGoodList: () => BsE3Goods.GoodsInfo[];
34
+ setDefaultSearchValue?: (value: Record<string, any>) => void;
33
35
  }
34
36
  }
35
37
  declare const _default: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<BsE3Goods.SelectDrawerRefObject>>;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import '../Columns/columns.less';
2
3
  export declare namespace JstGoods {
3
4
  interface GoodsInfo {
4
5
  brandName: string;
@@ -0,0 +1,32 @@
1
+ import React from 'react';
2
+ import '../Columns/columns.less';
3
+ export declare namespace JyGoods {
4
+ interface GoodsInfo {
5
+ companyKey: string;
6
+ id: number;
7
+ platform: 'JY_ERP';
8
+ goodNo: string;
9
+ goodName: string;
10
+ imageUrl: string;
11
+ goodShortName: string;
12
+ categoryName: string;
13
+ productType: string;
14
+ brandName: string;
15
+ specName: string;
16
+ specNo: string;
17
+ specBarcode: string;
18
+ specImgUrl: string;
19
+ colorName: string;
20
+ sizeName: string;
21
+ marketPrice: string;
22
+ retailPrice: string;
23
+ costPrice: string;
24
+ isGift: boolean;
25
+ skuType: string;
26
+ }
27
+ interface SelectDrawerRefObject {
28
+ getSelectGoodList: () => JyGoods.GoodsInfo[];
29
+ }
30
+ }
31
+ declare const _default: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<JyGoods.SelectDrawerRefObject>>;
32
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import type { JyGoods } from './GoodsList';
3
+ import type { ErpGoodModelProps } from '../type';
4
+ declare const _default: React.ForwardRefExoticComponent<ErpGoodModelProps<JyGoods.GoodsInfo[]> & React.RefAttributes<unknown>>;
5
+ export default _default;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import '../Columns/columns.less';
2
3
  export declare namespace ErpGoods {
3
4
  interface GoodsInfo {
4
5
  brandName: string;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import './Columns/columns.less';
2
3
  export declare namespace WdtGoods {
3
4
  interface GoodsInfo {
4
5
  deleted: 0 | 1;
@@ -4,6 +4,7 @@ type RateProps = {
4
4
  onChange: (v: (number | null)[]) => void;
5
5
  placeholder: string[];
6
6
  prefix: string;
7
+ onSubmit: () => void;
7
8
  };
8
- declare const Rate: ({ value, onChange, placeholder, prefix }: RateProps) => React.JSX.Element;
9
+ declare const Rate: ({ value, onChange, placeholder, prefix, onSubmit }: RateProps) => React.JSX.Element;
9
10
  export default Rate;
@@ -12,6 +12,7 @@ type SearchHeaderPropsType = {
12
12
  value: string;
13
13
  }[];
14
14
  ShopList: React.JSX.Element;
15
+ onSubmit: () => void;
15
16
  };
16
- declare const SearchHeader: ({ allFields, children, status, layout, isShowTime, timeOptions, ShopList, }: PropsWithChildren<SearchHeaderPropsType>) => React.JSX.Element;
17
+ declare const SearchHeader: ({ allFields, children, status, layout, isShowTime, timeOptions, ShopList, onSubmit, }: PropsWithChildren<SearchHeaderPropsType>) => React.JSX.Element;
17
18
  export default SearchHeader;
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  interface SelectDrawerRefObject {
3
3
  getSelectGoodList: () => any[];
4
+ setDefaultSearchValue?: (value: Record<string, any>) => void;
4
5
  }
5
6
  declare const _default: React.ForwardRefExoticComponent<Omit<any, "ref"> & React.RefAttributes<SelectDrawerRefObject>>;
6
7
  export default _default;
@@ -0,0 +1,10 @@
1
+ import type { FormInstance } from 'antd/es/form';
2
+ type PropsType = {
3
+ form: FormInstance;
4
+ companyKey: string;
5
+ source?: 'workOrder' | 'erp';
6
+ erp: string;
7
+ templateDetail?: any;
8
+ };
9
+ declare const _default: (props: PropsType) => "" | Record<string, any>;
10
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export declare const OptionalInput: (props: any) => React.JSX.Element;
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  import type { FormInstance } from 'antd';
3
+ import './index.less';
3
4
  type Props = {
4
5
  searchFormData: SearchFormData;
5
6
  form: FormInstance;
@@ -7,12 +8,13 @@ type Props = {
7
8
  submit: () => void;
8
9
  reset: () => void;
9
10
  };
10
- export type SearchFormData = {
11
+ export type SearchFormItem = {
11
12
  label: string;
12
13
  name: string;
13
14
  dataIndex?: string;
14
- type?: undefined | 'input' | 'select';
15
+ type?: undefined | 'input' | 'select' | 'optionalInput';
15
16
  formItemProps?: Record<string, any>;
16
- }[];
17
+ };
18
+ export type SearchFormData = SearchFormItem[];
17
19
  declare function SearchForm({ searchFormData, form, showColumnsDataIndexList, submit, reset, }: Props): React.JSX.Element;
18
20
  export default SearchForm;
@@ -0,0 +1,5 @@
1
+ export declare const transformFormData: (formData: Record<string, any>) => {
2
+ leftValue: string;
3
+ compareSymbol: any;
4
+ rightValue: any;
5
+ }[];
@@ -1,4 +1,5 @@
1
1
  /// <reference types="react" />
2
+ import type { FormInstance } from 'antd/es/form';
2
3
  export type GoodsSourceFormatType = {
3
4
  filterItems?: any[];
4
5
  flowNodeId: string;
@@ -41,12 +42,14 @@ export type GoodsSourceType = {
41
42
  };
42
43
  };
43
44
  export interface ErpGoodModelProps<T = any[]> {
45
+ templateDetail?: any;
44
46
  shopId: number | string;
45
47
  maxLength: number;
46
48
  shopList: any[];
47
49
  width?: string | number;
48
50
  shopCode?: string;
49
51
  companyKey: string;
52
+ form?: FormInstance;
50
53
  useGoodsSourceFormat: (goodsSource?: GoodsSourceType) => GoodsSourceFormatType;
51
54
  goodsSource?: GoodsSourceType;
52
55
  onSubmit: (goodsList: T) => any;
@@ -16,6 +16,7 @@ interface LogisticsInterceptionValueType {
16
16
  status: string;
17
17
  reason: string;
18
18
  };
19
+ interceptLogisticsApiStatusReason: string;
19
20
  interceptLogisticsUserKCode: string;
20
21
  interceptLogisticsUserSecretKey: string;
21
22
  }
@@ -27,6 +28,7 @@ interface LogisticsInterceptionProps {
27
28
  isEditing: boolean;
28
29
  onChange: (value: Partial<LogisticsInterceptionValueType>) => void;
29
30
  platform: string;
31
+ showReason?: boolean;
30
32
  onJumpPage?: (val: any) => void;
31
33
  }
32
34
  declare const LogisticsInterception: (props: Partial<LogisticsInterceptionProps>) => React.JSX.Element;
@@ -9,7 +9,7 @@ interface IdentifyAddressProps {
9
9
  onChange: (value: any) => void;
10
10
  disabled?: boolean;
11
11
  showIdentify?: boolean;
12
- type?: 'workOrder' | 'bs' | 'wdt' | 'gy' | 'km';
12
+ type?: 'workOrder' | 'bs' | 'wdt' | 'gy' | 'km' | 'jst';
13
13
  }
14
14
  declare const IdentifyAddress: (props: IdentifyAddressProps) => React.JSX.Element;
15
15
  export default IdentifyAddress;
@@ -3,5 +3,6 @@ export { default as getWlnColumns } from './wln';
3
3
  export { default as getGyColumns } from './gy';
4
4
  export { default as getWdtColumns } from './wdt';
5
5
  export { default as getKmColumns } from './km';
6
+ export { default as getJyColumns } from './jy';
6
7
  export { default as getSkxColumns } from './skx';
7
8
  export { default as orderSubFormConstants } from './orderSubForm';
@@ -0,0 +1,3 @@
1
+ import { GetColumnsBaseInfoMapFnType } from './columnsBaseInfoMap';
2
+ declare const getColumns: GetColumnsBaseInfoMapFnType;
3
+ export default getColumns;
@@ -0,0 +1,81 @@
1
+ declare const SYSTEM_ORDER_COLUMNS_MAP: {
2
+ BS_SYSTEM_ORDER: {
3
+ title: string;
4
+ dataIndex: string;
5
+ width: number;
6
+ }[];
7
+ KM_SYSTEM_ORDER: ({
8
+ dataIndex: string;
9
+ title: string;
10
+ width: number;
11
+ render?: undefined;
12
+ renderExport?: undefined;
13
+ } | {
14
+ dataIndex: string;
15
+ title: string;
16
+ width: number;
17
+ render: (val: "WAIT_BUYER_PAY" | "WAIT_AUDIT" | "WAIT_FINANCE_AUDIT" | "WAIT_MANUAL_AUDIT" | "FINISHED_AUDIT" | "WAIT_EXPRESS_PRINT" | "SYS_STATUS_WAIT_DELIVERY_PRINT" | "WAIT_PACKAGE" | "WAIT_WEIGHT" | "WAIT_SEND_GOODS" | "WAIT_DEST_SEND_GOODS" | "SELLER_SEND_GOODS" | "FINISHED" | "CLOSED" | "CANCEL") => string;
18
+ renderExport: (val: "WAIT_BUYER_PAY" | "WAIT_AUDIT" | "WAIT_FINANCE_AUDIT" | "WAIT_MANUAL_AUDIT" | "FINISHED_AUDIT" | "WAIT_EXPRESS_PRINT" | "SYS_STATUS_WAIT_DELIVERY_PRINT" | "WAIT_PACKAGE" | "WAIT_WEIGHT" | "WAIT_SEND_GOODS" | "WAIT_DEST_SEND_GOODS" | "SELLER_SEND_GOODS" | "FINISHED" | "CLOSED" | "CANCEL") => string;
19
+ } | {
20
+ dataIndex: string;
21
+ title: string;
22
+ width: number;
23
+ render: (val: string[]) => string;
24
+ renderExport: (val: string[]) => string;
25
+ })[];
26
+ WLN_SYSTEM_ORDER: {
27
+ title: string;
28
+ dataIndex: string;
29
+ width: number;
30
+ }[];
31
+ WDT_SYSTEM_ORDER: {
32
+ title: string;
33
+ dataIndex: string;
34
+ width: number;
35
+ ellipsis: boolean;
36
+ }[];
37
+ BS_E3_SYSTEM_ORDER: ({
38
+ title: string;
39
+ dataIndex: string;
40
+ width: number;
41
+ ellipsis: boolean;
42
+ render?: undefined;
43
+ renderExport?: undefined;
44
+ } | {
45
+ title: string;
46
+ dataIndex: string;
47
+ width: number;
48
+ ellipsis: boolean;
49
+ render: (val: any) => any;
50
+ renderExport: (val: any) => any;
51
+ })[];
52
+ GY_SYSTEM_ORDER: {
53
+ dataIndex: string;
54
+ title: string;
55
+ width: number;
56
+ }[];
57
+ JST_SYSTEM_ORDER: {
58
+ dataIndex: string;
59
+ title: string;
60
+ width: number;
61
+ }[];
62
+ JY_SYSTEM_ORDER: {
63
+ dataIndex: string;
64
+ title: string;
65
+ width: number;
66
+ }[];
67
+ WDT_RETURN_BILL_NO: ({
68
+ title: string;
69
+ dataIndex: string;
70
+ width: number;
71
+ ellipsis: boolean;
72
+ disabled?: undefined;
73
+ } | {
74
+ title: string;
75
+ dataIndex: string;
76
+ width: number;
77
+ ellipsis: boolean;
78
+ disabled: boolean;
79
+ })[];
80
+ };
81
+ export default SYSTEM_ORDER_COLUMNS_MAP;
@@ -1,5 +1,6 @@
1
1
  export { default as ApaasCascader } from './apaas/ApaasCascader';
2
2
  export { default as ApaasDate } from './apaas/ApaasDate';
3
+ export { default as ApaasImage } from './apaas/ApaasImage';
3
4
  export { default as ApaasInput } from './apaas/ApaasInput';
4
5
  export { default as ApaasInputNumber } from './apaas/ApaasInputNumber';
5
6
  export { default as ApaasSelect } from './apaas/ApaasSelect';
@@ -17,7 +18,7 @@ export { default as ApaasAddress } from './apaas/ApaasAddress';
17
18
  export { default as ApaasPosting } from './apaas/ApaasPosting';
18
19
  export { default as ApaasLogistics } from './apaas/ApaasLogistics';
19
20
  export { default as ApaasHoc } from './apaas/hoc/withFormItem';
20
- export { default as SubForm, renderMap } from './apaas/SubForm';
21
+ export { default as SubForm, renderMap, renderSplitMap } from './apaas/SubForm';
21
22
  export { default as CopyTextIcon } from './apaas/CopyTextIcon';
22
23
  export { default as BuyerNick } from './business/BuyerNick';
23
24
  export { default as TradeId } from './business/TradeId';
@@ -73,4 +74,5 @@ export { default as OrderSubFormUtils } from './apaas/OrderSubForm/utils';
73
74
  export { default as SkxIdInputSelect } from './skx/IdInputSelect';
74
75
  export { default as SkxGoods } from './skx/Goods';
75
76
  export { default as columnsBaseInfoMap, erpColumnsMap, erpFormValidator, } from './constants/columnsBaseInfoMap';
77
+ export { default as SYSTEM_ORDER_COLUMNS_MAP } from './constants/systemOrderColumnsMap';
76
78
  export { default as erpModalColumnsMap } from './bs/component/model/Columns';
@@ -0,0 +1,3 @@
1
+ export declare const jyUtils: {
2
+ getJyOrderListSingleton: (orderNo: string) => Promise<any>;
3
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kmkf-fe-packages/basic-components",
3
- "version": "2.3.0-rc.4",
3
+ "version": "2.3.2",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "",
6
6
  "license": "ISC",
@@ -20,7 +20,7 @@
20
20
  "watch": "nodemon --ignore dist/ --ignore node_modules/ --watch src/ -C -e ts,tsx,less --debug -x 'yarn async'"
21
21
  },
22
22
  "dependencies": {
23
- "@kmkf-fe-packages/kmkf-utils": "2.3.0-rc.4",
23
+ "@kmkf-fe-packages/kmkf-utils": "2.3.1",
24
24
  "ahooks": "^3.7.4",
25
25
  "ali-react-table": "2.6.1",
26
26
  "bignumber.js": "^9.1.2",
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "gitHead": "b19c34ea02f32fa3df7e93486edb7c652479f025"
69
+ "gitHead": "6db37a878558212d358a2be5253d4d2a6aa3f7d5"
70
70
  }