发货缺少id,添加供应商显示 台账页面

This commit is contained in:
ylj20011123 2026-01-30 15:12:34 +08:00
parent 71a6bc2c56
commit 15379a9fdf
2 changed files with 12 additions and 2 deletions

View File

@ -164,6 +164,14 @@ const OrderDetailModal = ({ modalVisible, handleCloseModal, currentRow, detailTy
width: 120,
ellipsis: true,
},
{
dataIndex: 'MERCHANTS_NAME',
title: '供应商名称',
align: 'center',
hideInSearch: true,
width: 180,
ellipsis: true,
},
{
dataIndex: 'SALEDETAIL_DESC',
title: '备注',
@ -331,7 +339,7 @@ const OrderDetailModal = ({ modalVisible, handleCloseModal, currentRow, detailTy
title={false}
closeIcon={<div></div>}
destroyOnClose={true}
width={1200}
width={1600}
bodyStyle={{
maxHeight: '850px', // 你可以根据需要调整高度
overflowY: 'auto',

View File

@ -267,7 +267,9 @@ const TradingLedger: React.FC<{ currentUser: CurrentUser }> = (props) => {
MOBILEPHONE: record?.ReceiverPhone // 收货电话
},
ORDER_DATE: record?.OrderDate,// 下单时间
SALEBILL_CODE: record?.OrderCode// 订单编码
SALEBILL_CODE: record?.OrderCode,// 订单编码
SALEBILL_ID: record?.OrderId,// 订单内码
SALEBILL_CHILD_ID: record?.OrderChildId,// 子订单内码
});
handleModalVisible(true)
handleSetlogSave(`查询收货人【${record?.ORDER_PERSON}】编码【${record.OrderCode}】订单`)