Browse Source

二线出岛业务记账管理,勾选1条,点击打印,打印预览页面显示全部数据

CzRger 7 months ago
parent
commit
97cdfbc885

+ 1 - 1
snowy-admin-web/src/api/yqyc/qySecondlineWarehouseApi.js

@@ -37,6 +37,6 @@ export default {
   },
   },
   // 获取一线径予放行业务记账管理记账打印
   // 获取一线径予放行业务记账管理记账打印
   qySecondlineWarehousePrintPdf(data) {
   qySecondlineWarehousePrintPdf(data) {
-    return request('printPdf', data, 'get')
+    return request('printPdf', data, 'post')
   }
   }
 }
 }

+ 14 - 1
snowy-admin-web/src/views/yqyc/general-ledger/two/index.vue

@@ -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')
   })
   })
 }
 }