|
|
@@ -230,9 +230,12 @@ const listtableData = reactive([])
|
|
|
const tableRowClick = async (row)=>{
|
|
|
listtableData.splice(0, listtableData.length);//清空表格
|
|
|
console.log(row['出库单'])
|
|
|
- const response = await ReceiptDetail({receipt:row['出库单']});
|
|
|
- console.log(response)
|
|
|
- listtableData.splice(0,response.length,...response.data);
|
|
|
+ if(row['单号类型'] != '退还'){
|
|
|
+ //单据详情
|
|
|
+ const response = await ReceiptDetail({receipt:row['出库单']});
|
|
|
+ console.log(response)
|
|
|
+ listtableData.splice(0,response.length,...response.data);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
const getSummaries = (param) => {
|