提交 9b7a813f 作者: 龚洪江

修复:采购订单列表,采购方信息

上级 42e056db
...@@ -1465,6 +1465,8 @@ type purchaseOrderItemType = { ...@@ -1465,6 +1465,8 @@ type purchaseOrderItemType = {
}[]; }[];
}; };
uavOrderNo: string; uavOrderNo: string;
buyCompanyName: string;
phoneNum: string;
}; };
export type listPurchaseOrderType = InterListFunction< export type listPurchaseOrderType = InterListFunction<
{ {
......
...@@ -145,8 +145,14 @@ const ProcurementOrderList = () => { ...@@ -145,8 +145,14 @@ const ProcurementOrderList = () => {
<TableItem <TableItem
tr={ tr={
<div> <div>
<div>{record.companyName}</div> <div>
<div>{record.thirdPhoneNum}</div> {userInfo.companyInfoVO.companyType === 0
? record.companyName
: record.buyCompanyName}
</div>
<div>
{userInfo.companyInfoVO.companyType === 0 ? record.thirdPhoneNum : record.phoneNum}
</div>
{getCurrenRemark(record) ? ( {getCurrenRemark(record) ? (
<div> <div>
<Tooltip placement='top' title={getCurrenRemark(record)}> <Tooltip placement='top' title={getCurrenRemark(record)}>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论