- 生成内部码
-
-
- 打印全部
-
+ 生成内部码
+ 标签打印全部
+ 报表打印全部
@@ -87,6 +74,13 @@
>标签打印
+ 报表打印
+
@@ -371,6 +365,69 @@ export default {
});
},
+ printStockOrderDetailStatementPDF(row) {
+ let tQuery = {
+ queryId: null,
+ orderId: null,
+ countList: [],
+ labelId: 5
+ };
+ if (row == null) {
+ tQuery.orderId = this.query.orderIdFk;
+ } else {
+ if (row.reCount <= 0) {
+ return this.$message.error('数量错误');
+ }
+ tQuery.queryId = row.id;
+ }
+ this.loading = true;
+ inspectionStockQRCodeTextPDFFromTemplateStatementFile(tQuery).then((response) => {
+ if (response.code === 20000) {
+ if (row != null) {
+ tQuery.id = row.id;
+ tQuery.rowCount = row.reCount;
+ let data = {
+ queryId: row.id,
+ rowCount: row.count
+ }
+ tQuery.countList.push(data);
+ } else {
+ for (let i = 0; i < this.codeArray.length; i++) {
+ let data = {
+ queryId: this.codeArray[i].id,
+ rowCount: this.codeArray[i].count
+ }
+ tQuery.countList.push(data);
+ }
+ }
+ let count = 0;
+ for (let i = 0; i < tQuery.countList.length; i++) {
+
+ count = count + tQuery.countList[i].rowCount;
+ console.log(count);
+ }
+ stockQRCodeTextPDFFromTemplateStatementFile(tQuery).then((response) => {
+ //将pdf文件转换为url。
+ const binaryData = [];
+ binaryData.push(response);
+ //获取blob链接。
+ let url = window.URL.createObjectURL(
+ new Blob(binaryData, {type: "application/pdf"})
+ );
+ this.loading = false;
+ window.open(url);//打开新标签页,预览pdf。
+ this.getOrderQRCodeTextList();
+ }).catch(() => {
+ this.loading = false;
+ });
+ } else {
+ this.loading = false;
+ this.$message.error(response.message);
+ }
+ }).catch(() => {
+ this.loading = false;
+ });
+ },
generateQRCodeText() {
this.$confirm("确定生成内部码?", "提示", {
confirmButtonText: "确定",
diff --git a/src/views/inventory/supInoutSearchOrder.vue b/src/views/inventory/supInoutSearchOrder.vue
index d1368f6..24b97a1 100644
--- a/src/views/inventory/supInoutSearchOrder.vue
+++ b/src/views/inventory/supInoutSearchOrder.vue
@@ -69,20 +69,15 @@
显示/隐藏搜索栏
- 重置
-
- 查询
-
+ 选入打印
+ 查询打印
+ 重置
+ 查询
-
+
+
@@ -112,7 +107,8 @@