From 33dbc6a161554f3a897f9e9273feb4f2c1b47381 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期一, 15 十二月 2025 17:04:27 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10105/r/ERP_override

---
 north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue |   31 +++++++++++++++++++++++++++++--
 1 files changed, 29 insertions(+), 2 deletions(-)

diff --git a/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue b/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue
index 47cd2b3..cafc314 100644
--- a/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue
+++ b/north-glass-erp/northglass-erp/src/views/pp/processCard/PrintFlowCard.vue
@@ -67,7 +67,9 @@
   like: null,
   merge: null,
   printFc:null,
-  flashback:null
+  flashback:null,
+  landingSequence:null,
+  compound:null
 })
 
 //鏍囩
@@ -80,6 +82,10 @@
 
 //鍊掑彊
 let  flashback = ref(1)
+//钀芥灦椤哄簭
+let landingSequence= ref(1)
+//鍚堟灦鎵撳嵃
+let compound = ref(null)
 
 const getTableRow = (row, type) => {
   switch (type) {
@@ -418,6 +424,8 @@
           printRow.value.merge = company.flowCardMerge
           printRow.value.printFc= printFc
           printRow.value.flashback = flashback.value
+          printRow.value.landingSequence=landingSequence.value
+          printRow.value.compound = compound.value
           // router.push({path: '/main/processCard/printProcess', query: {printList: JSON.stringify(selectRecords),printMerge:printMergeVal}})
           if(company.companyName=='甯稿窞甯傚悏鍒╃幓鐠冩湁闄愬叕鍙�'){
             dialogTableVisibleStraight.value = true
@@ -597,7 +605,7 @@
             return
           }
           if (printMerge.value === null || printMerge.value === '') {
-            ElMessage.warning('璇峰~鍏ラ渶瑕佸悎骞剁殑灞�')
+            ElMessage.warning(t('rework.msg1'))
             return
           }
 
@@ -707,6 +715,10 @@
 function onFlashbackChange(checked) {
   flashback.value = checked ? 0 : 1
 }
+
+function onlandingSequenceChange(checked) {
+  landingSequence.value = checked ? 0 : 1
+}
 </script>
 
 <template>
@@ -812,6 +824,19 @@
           >
             {{ t('processCard.flashback') }}
           </el-checkbox>
+          <el-checkbox
+              :model-value="landingSequence === 0"
+              @change="onlandingSequenceChange"
+          >
+            {{ t('processCard.landingSequence') }}
+          </el-checkbox>
+          <el-input
+              v-model="compound"
+              :placeholder="$t('processCard.printCompound')"
+              clearable
+              style="margin-left:20px; width: 110px;"
+          />
+
         </template>
         <!--      @toolbar-button-click="toolbarButtonClickEvent"-->
         <!--      涓嬫媺鏄剧ず鎵�鏈変俊鎭彃妲�-->
@@ -870,6 +895,8 @@
           :printFc="printRow.printFc"
           :merges="printRow.merge"
           :flashback = "printRow.flashback"
+          :landingSequence = "printRow.landingSequence"
+          :compound = "printRow.compound"
           style="width: 100%;height: 100%"/>
     </el-dialog>
 

--
Gitblit v1.8.0