|
@@ -357,7 +357,20 @@ const onDetail = (record = null, view) => {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
const onPrint = () => {
|
|
const onPrint = () => {
|
|
- qySecondlineWarehouseApi.qySecondlineWarehousePrintPdf(searchFormStateReal.value).then(res => {
|
|
|
|
|
|
+ const params = {
|
|
|
|
+ ...filterParam.value
|
|
|
|
+ }
|
|
|
|
+ if (selectedRowKeys.value.length > 0) {
|
|
|
|
+ params.ids = selectedRowKeys.value
|
|
|
|
+ } else {
|
|
|
|
+ Object.entries(searchFormStateReal.value).forEach(([key, value]) => {
|
|
|
|
+ console.log(key)
|
|
|
|
+ if (proxy.$util.isValue(value)) {
|
|
|
|
+ params[key] = value
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ qySecondlineWarehouseApi.qySecondlineWarehousePrintPdf(params).then(res => {
|
|
printJS(res, 'pdf')
|
|
printJS(res, 'pdf')
|
|
})
|
|
})
|
|
}
|
|
}
|