|
|
@ -177,10 +177,10 @@ |
|
|
|
</BasicForm> |
|
|
|
|
|
|
|
<!-- 标签打印 --> |
|
|
|
<SearchTable width="905px" ref="searchTableRef" @searchTableSuccess="searchTableSuccess1"> |
|
|
|
<!-- <template #actions> |
|
|
|
<SearchTable width="905px" ref="searchTableRef" sureText="打印所选" @searchTableSuccess="searchTableSuccess1"> |
|
|
|
<template #actionsOther> |
|
|
|
<el-button type="primary" @click="printAllClick">打印全部</el-button> |
|
|
|
</template> --> |
|
|
|
</template> |
|
|
|
</SearchTable> |
|
|
|
<labelForm |
|
|
|
ref="labelFormRef" |
|
|
@ -1239,7 +1239,30 @@ const labelPrint = async (row) => { |
|
|
|
} |
|
|
|
|
|
|
|
// 打印全部 |
|
|
|
const printAllClick = () => {} |
|
|
|
const printAllClick = async () => { |
|
|
|
let res = await PackageApi.getLabelDetailPage({ |
|
|
|
moduleName: 'supplier', |
|
|
|
recordNumber:'REQS0120250117-0022', |
|
|
|
pageSize: 500, |
|
|
|
pageNo: 1, |
|
|
|
}) |
|
|
|
|
|
|
|
await PackageApi.batchPrintingLablesForYT(res.list) |
|
|
|
.then(res => { |
|
|
|
if(res.xdpLabel){ |
|
|
|
//协定品标签 |
|
|
|
window.open(src1.value + '&asn_number=' + res.xdpLabel) |
|
|
|
} |
|
|
|
if (res.cgLabel) { |
|
|
|
//采购标签 |
|
|
|
window.open(src.value + '&asn_number=' + res.cgLabel) |
|
|
|
} |
|
|
|
}).catch(err => { |
|
|
|
message.error(t('ts.创建标签失败')) |
|
|
|
}) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
// 批量打印--供应商发货申请 |
|
|
|
const searchTableSuccess1 = async (formField, searchField, val, formRef, type, row) => { |
|
|
|
// let rows:any = [] |
|
|
|