From de2c3068cdea54ffa36d2359b32abd9b8a144cde Mon Sep 17 00:00:00 2001
From: huang <1532065656@qq.com>
Date: 星期一, 09 十二月 2024 14:49:47 +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/SelectPrintProject.vue |  213 +++++++++++++++++++++++++++++++++++++++++-----------
 1 files changed, 167 insertions(+), 46 deletions(-)

diff --git a/north-glass-erp/northglass-erp/src/views/pp/processCard/SelectPrintProject.vue b/north-glass-erp/northglass-erp/src/views/pp/processCard/SelectPrintProject.vue
index 79ec409..330e795 100644
--- a/north-glass-erp/northglass-erp/src/views/pp/processCard/SelectPrintProject.vue
+++ b/north-glass-erp/northglass-erp/src/views/pp/processCard/SelectPrintProject.vue
@@ -9,17 +9,35 @@
 import {changeFilterEvent, filterChanged} from "@/hook"
 import footSum from "@/hook/footSum"
 import TagStyle from "@/components/pp/TagStyle.vue"
+import PrintCustomLabelXJTwo from '@/components/pp/PrintCustomLabelXJTwo.vue'
+import {Printer} from "@element-plus/icons-vue/global";
+import companyInfo from "@/stores/sd/companyInfo"
+import {remove} from "xe-utils";
 //璇█鑾峰彇
 const {t} = useI18n()
 
 let router = useRouter()
+const dialogTableVisibleLabelXJTwo = ref(false)
+let rowClickIndex = ref(null)
 
 
 
 //瀹氫箟鏁版嵁杩斿洖缁撴灉
 let produceList = ref([])
 let titleStyleVisible = ref(false)
+let print = ref("1")
 
+//鏍囩
+let labelRow = ref({
+  list: null,//鍕鹃�夌殑鏁版嵁
+  faceOrientation: null,//鍐呭闈�
+  type: "",//鏍囩妯℃澘
+  lableType: null,//鏍囩绫诲瀷
+  dataType: 0,//鏍囩绫诲瀷
+  projectNo:null
+})
+const company = companyInfo()
+let hidePrintLabels = company.printLabel.hideButton;
 
 const form = reactive({
   date1: '',
@@ -29,11 +47,20 @@
 const getTableRow = (row, type) => {
   switch (type) {
     case 'edit' :{
-      router.push({path: '/main/processCard/PrintLabel', query: { projectNo: row.project_no,type:1 }})
+      if(parseInt(print.value)==1){
+        router.push({path: '/main/processCard/PrintLabel', query: { projectNo: row.project_no,type:1 }})
+      }else{
+        router.push({path: '/main/processCard/PrintCustomLabelSemi2', query: { projectNo: row.project_no,type:1 }})
+      }
+
       break
     }
     case 'edit1' :{
       router.push({path: '/main/processCard/PrintLabel', query: { projectNo: row.project_no,type:2 }})
+      break
+    }
+    case 'edit2' :{
+      router.push({path: '/main/processCard/PrintLabel', query: { projectNo: row.project_no,type:3 }})
       break
     }
   }
@@ -60,11 +87,11 @@
 
 //鑾峰彇涓冨ぉ鍓嶅埌褰撳墠鏃堕棿
 function getNowTime() {
-  const start = new Date(new Date().getTime() - 3600 * 1000 * 24 * 15)
+  const start = new Date(new Date().getTime() - 3600 * 1000 * 24 * 14)
       .toISOString()
       .replace('T', ' ')
       .slice(0, 10) //榛樿寮�濮嬫椂闂�7澶╁墠
-  const end = new Date(new Date().getTime() + 3600 * 1000 * 24)
+  const end = new Date(new Date().getTime())
       .toISOString()
       .replace('T', ' ')
       .slice(0, 10)//榛樿缁撴潫鏃堕棿褰撳墠鏃堕棿
@@ -83,6 +110,25 @@
 request.post(`/processCard/selectPrintPrintProject/${startTime}/${endTime}`, filterData.value).then((res) => {
 
   if (res.code == 200) {
+    if(hidePrintLabels=="true"){
+      //鍒犻櫎涓嬫媺妗�
+      remove(gridOptions.toolbarConfig.slots)
+      const button = {'code': 'printLabel',
+        status: 'primary',
+        'name': t('processCard.finishedProductPrinting2')}
+      let name=company.companyName
+      if (name != '閲戝崕绂忓枩澶╂垚鐜荤拑鏈夐檺鍏徃') {
+        gridOptions.toolbarConfig.buttons.push(button)
+      }
+
+
+
+      const button2 = {'code': 'detailPrinting',
+        status: 'primary',
+        'name': t('processCard.detailPrinting')}
+      gridOptions.toolbarConfig.buttons.push(button2)
+
+    }
     produceList.value = deepClone(res.data.data)
     xGrid.value.reloadData(produceList.value)
     gridOptions.loading = false
@@ -128,7 +174,7 @@
     useKey: true
   },
   filterConfig: {   //绛涢�夐厤缃」
-                    // remote: true
+    // remote: true
   },
   customConfig: {
     storage: true
@@ -142,11 +188,11 @@
   //琛ㄥご鍙傛暟
   columns: [
     {type: 'expand', fixed: "left", slots: {content: 'content'}, width: 50},
-    {title: t('basicData.operate'), width: 120, slots: { default: 'button_slot' },fixed:"left"},
+    {title: t('basicData.operate'), width: 140, slots: { default: 'button_slot' },fixed:"left"},
     {type: 'seq', fixed: "left", title: t('basicData.Number'), width: 50},
     {
       field: 'project_no',
-      title: t('mainIngredientStock.projectNo'),
+      title: t('ingredientsStock.projectNo'),
       filters: [{data: ''}],
       slots: {filter: 'num1_filter'},
       filterMethod: filterChanged
@@ -170,7 +216,9 @@
   toolbarConfig: {
     buttons: [
     ],
-
+    slots:{
+      buttons: "toolbar_buttons"
+    },
     zoom: true,
     custom: true
   },
@@ -202,17 +250,56 @@
           titleStyleVisible.value = true
           break
         }
+        case 'printLabel': {
+          if(rowClickIndex.value===null){
+            ElMessage.warning(t('processCard.pleaseSelectProject'))
+            return
+          }
+          labelRow.value.type = '鎭掗懌'
+          labelRow.value.dataType=2
+          labelRow.value.projectNo=rowClickIndex.value.project_no
+          dialogTableVisibleLabelXJTwo.value = true
+
+
+          break
+        }
+        case 'detailPrinting': {
+          if(rowClickIndex.value===null){
+            ElMessage.warning(t('processCard.pleaseSelectProject'))
+            return
+          }
+          router.push({path: '/main/processCard/PrintProjectDetails', query: {projectNo: rowClickIndex.value.project_no}})
+          //dialogTableVisibleLabelXJTwo.value = true
+
+
+          break
+        }
       }
     }
+  },
+  cellClick({ row }){
+    rowClickIndex.value = row
   }
 }
+const printContentLabel = ref({
+  id: 'childLabel',
+})
 
+const hideButton = () => {
+  let name=company.companyName
+  // 鏍规嵁鏉′欢鍊� hidePrintLabels 杩囨护鎸夐挳鏁扮粍
+  gridOptions.toolbarConfig.buttons = gridOptions.toolbarConfig.buttons.filter(button => {
+    // 杩欓噷鏍规嵁 hidePrintLabels 鐨勫�煎喅瀹氭槸鍚﹂殣钘� printLabel 鍜� printLabel2
+    if (name == '閲戝崕绂忓枩澶╂垚鐜荤拑鏈夐檺鍏徃') {
+      return button.code !== 'printLabel';
+    }
+  })
+}
 </script>
 
 <template>
-  <div class="main-div-customer">
-    <div id="selectForm">
-      <el-row :gutter="0">
+  <div  style="width: 100%;height: 100%">
+    <div class="head">
         <el-date-picker
             v-model="form.date1"
             :start-placeholder="$t('basicData.startDate')"
@@ -229,43 +316,56 @@
             :icon="Search"
             type="primary" @click="getWorkOrder">{{ $t('basicData.search') }}
         </el-button>
-      </el-row>
     </div>
-    <vxe-grid
-        ref="xGrid"
-        class="mytable-scrollbar"
-        height="100%"
-        v-bind="gridOptions"
-        v-on="gridEvents"
-    >
-      <!--      @toolbar-button-click="toolbarButtonClickEvent"-->
-      <!--      涓嬫媺鏄剧ず鎵�鏈変俊鎭彃妲�-->
-      <template #content="{ row }">
-        <ul class="expand-wrapper">
-          <li v-for="(item,index) in gridOptions.columns" v-show="item.field!=undefined ">
-            <span style="font-weight: bold">{{ item.title + ':  ' }}</span>
-            <span v-if="hasDecimal(item.field)">{{ row[item.field.split('.')[0]][item.field.split('.')[1]] }}</span>
-            <span v-else>{{ row[item.field] }}</span>
+    <div class="main-table">
+      <vxe-grid
+          ref="xGrid"
+          class="mytable-scrollbar"
+          height="100%"
+          v-bind="gridOptions"
+          v-on="gridEvents"
+      >
+        <!--      @toolbar-button-click="toolbarButtonClickEvent"-->
+        <!--      涓嬫媺鏄剧ず鎵�鏈変俊鎭彃妲�-->
+        <template #content="{ row }">
+          <ul class="expand-wrapper">
+            <li v-for="(item,index) in gridOptions.columns" v-show="item.field!=undefined ">
+              <span style="font-weight: bold">{{ item.title + ':  ' }}</span>
+              <span v-if="hasDecimal(item.field)">{{ row[item.field.split('.')[0]][item.field.split('.')[1]] }}</span>
+              <span v-else>{{ row[item.field] }}</span>
 
-          </li>
-        </ul>
-      </template>
-      <!--宸﹁竟鍥哄畾鏄剧ず鐨勬彃妲�-->
-      <template #button_slot="{ row }">
-        <el-button @click="getTableRow(row,'edit')" link type="primary" size="small">{{$t('machine.cutting')}}</el-button>
-        <el-button @click="getTableRow(row,'edit1')" link type="primary" size="small">{{$t('machine.tempering')}}</el-button>
-      </template>
+            </li>
+          </ul>
+        </template>
+        <!--宸﹁竟鍥哄畾鏄剧ず鐨勬彃妲�-->
+        <template #button_slot="{ row }">
+          <el-button @click="getTableRow(row,'edit')" link type="primary" size="small">{{$t('machine.cutting')}}</el-button>
+          <el-button @click="getTableRow(row,'edit1')" link type="primary" size="small">{{$t('machine.tempering')}}</el-button>
+          <el-button @click="getTableRow(row,'edit2')" link type="primary" size="small">{{$t('components.finishedProduct')}}</el-button>
+        </template>
 
-      <template #num1_filter="{ column, $panel }">
-        <div>
-          <div v-for="(option, index) in column.filters" :key="index">
-            <input v-model="option.data" type="text" @input="changeFilterEvent($event, option, $panel)"/>
+        <template #num1_filter="{ column, $panel }">
+          <div>
+            <div v-for="(option, index) in column.filters" :key="index">
+              <input v-model="option.data" type="text"
+                     @keyup.enter.native="$panel.confirmFilter()"
+                     @input="changeFilterEvent($event, option, $panel)"/>
+            </div>
           </div>
-        </div>
-      </template>
+        </template>
+
+        <template #toolbar_buttons>
+          <vxe-select @change="changeOrderType" v-model="print" >
+            <vxe-option value="1" label="EPSON LQ-82KF ESC/P2"></vxe-option>
+            <vxe-option value="2" label="TSC TTP-244Pro"></vxe-option>
+          </vxe-select>
+        </template>
 
 
-    </vxe-grid>
+
+
+      </vxe-grid>
+    </div>
     <el-dialog
         id="titleStyle"
         :title="$t('processCard.labelStyle')"
@@ -275,16 +375,37 @@
         v-model="titleStyleVisible">
       <tag-style style="width: 100%;height: 100%"/>
     </el-dialog>
+
+    <el-dialog
+        id="sizeCustom"
+        v-model="dialogTableVisibleLabelXJTwo"
+        :title="$t('processCard.printLabel')"
+        destroy-on-close
+        style="width: 80%;height:75%;overflow: auto ">
+      <template #header="{ close, titleId, titleClass }">
+        <el-button v-print="printContentLabel" :icon="Printer" circle/>
+      </template>
+      <print-custom-label-x-j-two id="childLabel"
+                                  :faceOrientation="labelRow.faceOrientation"
+                                  :type="labelRow.type"
+                                  :dataType="labelRow.dataType"
+                                  :projectNo="labelRow.projectNo"
+                                  style="width: 100%;height: 100%"/>
+    </el-dialog>
   </div>
 </template>
 
+
+
 <style scoped>
-.main-div-customer {
-  width: 99%;
-  height: 93%;
+.head{
+  width: 100%;
+  height: 35px;
 }
-#selectForm {
-  width: 60%;
+
+.main-table{
+  width: 100%;
+  height: calc(100% - 35px);
 }
 :deep(#titleStyle .el-dialog__body){
   height: 90%;

--
Gitblit v1.8.0