Commit e76ee40e authored by 前端-钟卫鹏's avatar 前端-钟卫鹏
parents b4ed44b0 c4a467cf
...@@ -642,12 +642,13 @@ export const logisticsDeliverySearchSchema: ISchema = { ...@@ -642,12 +642,13 @@ export const logisticsDeliverySearchSchema: ISchema = {
} }
} }
}, },
inventoryId: { invoicesType: {
type: 'string', type: 'string',
"x-component": 'SearchSelect', // fetchSearch: PublicApi.getWarehouseInvoicesTypeAll,
// "x-component": 'SearchSelect',
'x-component-props': { 'x-component-props': {
placeholder: '单据类型', placeholder: '单据类型',
fetchSearch: PublicApi.getWarehouseInvoicesTypeAll,
style: { style: {
width: 160 width: 160
} }
......
...@@ -30,7 +30,7 @@ export interface ModalTableProps extends IStandardTableProps<any> { ...@@ -30,7 +30,7 @@ export interface ModalTableProps extends IStandardTableProps<any> {
export const logisticsDeliverySearchSchema: ISchema = { export const logisticsDeliverySearchSchema: ISchema = {
type: 'object', type: 'object',
properties: { properties: {
invoicesNo: { orderNo: {
type: 'string', type: 'string',
'x-component': 'ModalSearch', 'x-component': 'ModalSearch',
'x-component-props': { 'x-component-props': {
...@@ -53,7 +53,7 @@ export const logisticsDeliverySearchSchema: ISchema = { ...@@ -53,7 +53,7 @@ export const logisticsDeliverySearchSchema: ISchema = {
}, },
}, },
properties: { properties: {
orderNo: { memberName: {
type: 'string', type: 'string',
"x-component-props": { "x-component-props": {
placeholder: '会员名称', placeholder: '会员名称',
...@@ -62,7 +62,7 @@ export const logisticsDeliverySearchSchema: ISchema = { ...@@ -62,7 +62,7 @@ export const logisticsDeliverySearchSchema: ISchema = {
} }
} }
}, },
invoicesAbstract: { orderThe: {
type: 'string', type: 'string',
"x-component-props": { "x-component-props": {
placeholder: '单据摘要', placeholder: '单据摘要',
...@@ -71,7 +71,7 @@ export const logisticsDeliverySearchSchema: ISchema = { ...@@ -71,7 +71,7 @@ export const logisticsDeliverySearchSchema: ISchema = {
} }
} }
}, },
"[startTransactionTime,endTransactionTime]": { "[startCreateTime,endCreateTime]": {
type: 'string', type: 'string',
"x-component": "dateSelect", "x-component": "dateSelect",
"x-component-props": { "x-component-props": {
...@@ -283,7 +283,7 @@ const ModalTableOrder: React.FC<ModalTableProps> = (props) => { ...@@ -283,7 +283,7 @@ const ModalTableOrder: React.FC<ModalTableProps> = (props) => {
useStateFilterSearchLinkageEffect( useStateFilterSearchLinkageEffect(
$, $,
actions, actions,
type === 1 ? 'invoicesNo' : 'applyNo', type === 1 ? 'orderNo' : 'applyNo',
FORM_FILTER_PATH, FORM_FILTER_PATH,
); );
} }
......
...@@ -24,6 +24,34 @@ export const SelectGoodsColumns: ColumnType<any>[] = [ ...@@ -24,6 +24,34 @@ export const SelectGoodsColumns: ColumnType<any>[] = [
} }
] ]
export const AfterSalesSelectGoodsColumns: ColumnType<any>[] = [
{
title: '商品ID',
key: 'productId',
dataIndex: 'productId',
},
{
title: '商品名称',
key: 'productName',
dataIndex: 'productName',
},
{
title: '品类',
key: 'category',
dataIndex: 'category',
},
{
title: '订单编号',
key: 'orderNo',
dataIndex: 'orderNo',
},
{
title: '品牌',
key: 'brand',
dataIndex: 'brand',
}
]
export const ExternalListColumns: ColumnType<any>[] = [ export const ExternalListColumns: ColumnType<any>[] = [
{ {
title: '流转顺序号', title: '流转顺序号',
......
This diff is collapsed.
...@@ -68,7 +68,7 @@ const PayWayTable: React.FC<payWayTableParams> = (props) => { ...@@ -68,7 +68,7 @@ const PayWayTable: React.FC<payWayTableParams> = (props) => {
} else { } else {
onEdit(value, idType, modifyIndex) onEdit(value, idType, modifyIndex)
} }
setedit({});
setmodalvisible(false); setmodalvisible(false);
} }
...@@ -109,7 +109,7 @@ const PayWayTable: React.FC<payWayTableParams> = (props) => { ...@@ -109,7 +109,7 @@ const PayWayTable: React.FC<payWayTableParams> = (props) => {
modalvisible={modalvisible} modalvisible={modalvisible}
edit={edit} edit={edit}
onOK={(value) => handleOk(value, type)} onOK={(value) => handleOk(value, type)}
onCancel={() => setmodalvisible(false)} onCancel={() => { setmodalvisible(false); setedit({}); }}
/> />
</> </>
) )
......
...@@ -71,10 +71,10 @@ const SetUpModal: React.FC<setUpModalParams> = (props) => { ...@@ -71,10 +71,10 @@ const SetUpModal: React.FC<setUpModalParams> = (props) => {
return ( return (
<Modal <Modal
width={576} width={576}
title='新增参数配置' title={`${Object.keys(edit).length > 0 ? `编辑` : '新增'}参数配置`}
visible={modalvisible} visible={modalvisible}
onOk={handleOk} onOk={handleOk}
onCancel={() => onCancel()} onCancel={() => { onCancel(); form.resetFields(); }}
> >
<Form <Form
form={form} form={form}
......
...@@ -425,7 +425,7 @@ const Details: React.FC<parmas> = (props) => { ...@@ -425,7 +425,7 @@ const Details: React.FC<parmas> = (props) => {
progressDot progressDot
current={data.externalState - 1} current={data.externalState - 1}
> >
{Object.keys(data).length > 0 && data.externalInquiryListStateResponses.map((item, index) => { {(Object.keys(data).length > 0 && data.externalInquiryListStateResponses) && data.externalInquiryListStateResponses.map((item, index) => {
return ( return (
<Step <Step
key={index} key={index}
...@@ -443,7 +443,7 @@ const Details: React.FC<parmas> = (props) => { ...@@ -443,7 +443,7 @@ const Details: React.FC<parmas> = (props) => {
progressDot progressDot
current={Number(data.interiorState - 1)} current={Number(data.interiorState - 1)}
> >
{Object.keys(data).length > 0 && data.interiorRequisitionFormStateResponses.map((item, index) => { {(Object.keys(data).length > 0 && data.interiorRequisitionFormStateResponses ) && data.interiorRequisitionFormStateResponses.map((item, index) => {
return ( return (
<Step <Step
key={index} key={index}
......
...@@ -39,6 +39,10 @@ const AddQuotes: React.FC<parmas> = (props) => { ...@@ -39,6 +39,10 @@ const AddQuotes: React.FC<parmas> = (props) => {
memberRoleId: res.data.memberRoleId, memberRoleId: res.data.memberRoleId,
memberRoleName: res.data.memberRoleName memberRoleName: res.data.memberRoleName
}) })
setaddress({
fullAddress: res.data.fullAddress,
fullAddressId: res.data.fullAddressId
})
} }
}) })
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment