yuansh 6 months ago
parent
commit
bd0e207716

+ 35 - 0
src/views/production/materialprocurement/materialProcurementList.vue

@@ -84,6 +84,7 @@
         <a-button  size="small" @click="examineApprove">审批</a-button>
         <a-button  size="small" @click="abstainExamineApprove">弃审</a-button>
         <a-button size="small" @click="exportList('材料请购单')">导出</a-button>
+        <a-button size="small" @click="exportXlsModelCLQGD('材料请购单导入模板')">下载导入模板</a-button>
         <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader"  @change="handleUploadChange" :action="importExcelUrl">
             <a-button  size="small">导入</a-button>
         </a-upload>
@@ -560,6 +561,40 @@
            })   
          }
         })
+      },
+       //导出
+       exportXlsModelCLQGD(fileName){
+        this.$confirm({
+          title: '确认导出',
+          content: '是否导出模板?',
+          onOk:  ()=> {
+            alertModal.loading("执行中,请稍后!")
+            let param = this.queryParam;
+            if(this.selectedRowKeys && this.selectedRowKeys.length>0){
+              param['selections'] = this.selectedRowKeys.join(",")
+            }
+            downFile('/materialRequisition/madeMaterialRequisition/exportXlsModelCLQGD', param).then(data => {
+              alertModal.closeLoading();
+              if (!data) {
+                this.$message.warning('文件下载失败')
+                return
+              }
+              if (typeof window.navigator.msSaveBlob !== 'undefined') {
+                window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), fileName + '.xlsx')
+              } else {
+                let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
+                let link = document.createElement('a')
+                link.style.display = 'none'
+                link.href = url
+                link.setAttribute('download', fileName + '.xlsx')
+                document.body.appendChild(link)
+                link.click()
+                document.body.removeChild(link) // 下载完成移除元素
+                window.URL.revokeObjectURL(url) // 释放掉blob对象
+              }
+           })   
+         }
+        })
       },
       handleUploadChange({ file, fileList }){
                 if (file.status === 'done'&&file.response.success) {

+ 40 - 0
src/views/production/productionTotalOrder/productionTotalOrderList.vue

@@ -126,6 +126,7 @@
         <a-button :disabled="isDisabledAuth('madeProductionOrders:examine')" size="small"
           @click="abstainExamineApprove">弃审</a-button>
         <a-button size="small" @click="exportList('生产总订单列表')">导出</a-button>
+        <a-button size="small" @click="exportXlsModelSCZDD('生产总订单导入模板')">下载导入模板</a-button>
         <a-upload name="file" :showUploadList="false" @change="handleUploadChange" :multiple="false"
           :headers="tokenHeader" :action="fileUpload">
           <a-button size="small">导入</a-button>
@@ -587,6 +588,45 @@
           }
         })
       },
+      //导出
+      exportXlsModelSCZDD(fileName) {
+        this.$confirm({
+          title: '确认导出',
+          content: '是否导出模板?',
+          onOk: () => {
+            alertModal.loading("执行中,请稍后!")
+            let param = this.queryParam;
+            param['selections'] = ''
+            if (this.selectedRowKeys && this.selectedRowKeys.length > 0) {
+              param['selections'] = this.selectedRowKeys.join(",")
+            }
+            downFile('/materialRequisition/madeMaterialRequisition/exportXlsModelSCZDD', param).then(data => {
+              alertModal.closeLoading();
+              if (!data) {
+                this.$message.warning('文件下载失败')
+                return
+              }
+              if (typeof window.navigator.msSaveBlob !== 'undefined') {
+                window.navigator.msSaveBlob(new Blob([data], {
+                  type: 'application/vnd.ms-excel'
+                }), fileName + '.xlsx')
+              } else {
+                let url = window.URL.createObjectURL(new Blob([data], {
+                  type: 'application/vnd.ms-excel'
+                }))
+                let link = document.createElement('a')
+                link.style.display = 'none'
+                link.href = url
+                link.setAttribute('download', fileName + '.xlsx')
+                document.body.appendChild(link)
+                link.click()
+                document.body.removeChild(link) // 下载完成移除元素
+                window.URL.revokeObjectURL(url) // 释放掉blob对象
+              }
+            })
+          }
+        })
+      },
       examineApprove() {
         if (this.selectedRowKeys.length == 0) {
           this.$message.warning('请选择数据!')

+ 36 - 0
src/views/production/safetyStock/encoderList.vue

@@ -75,6 +75,7 @@
             <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" @change="handleUploadChange"  :action="fileUpload">
                <a-button  size="small">导入</a-button>
             </a-upload>
+            <a-button size="small" @click="exportXlsModelBMQ('编码器模板')">下载导入模板</a-button>
             <a-button size="small" @click="exportList('编码器列表')">导出</a-button>
             <a-button size="small" @click="syncList">同步至u9</a-button>
           </div>
@@ -296,6 +297,41 @@
                   }
                 })
             },
+            //导出
+            exportXlsModelBMQ(fileName){
+              this.$confirm({
+                  title: '确认导出',
+                  content: '是否导出模板?',
+                  onOk:  ()=> {
+                    alertModal.loading("执行中,请稍后!")
+                    let param = this.queryParam;
+                    param['selections'] = ''
+                    if(this.selectedRowKeys && this.selectedRowKeys.length>0){
+                      param['selections'] = this.selectedRowKeys.join(",")
+                    }
+                    downFile('/materialRequisition/madeMaterialRequisition/exportXlsModelBMQ', param).then(data => {
+                      alertModal.closeLoading();
+                      if (!data) {
+                        this.$message.warning('文件下载失败')
+                        return
+                      }
+                      if (typeof window.navigator.msSaveBlob !== 'undefined') {
+                        window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), fileName + '.xlsx')
+                      } else {
+                        let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
+                        let link = document.createElement('a')
+                        link.style.display = 'none'
+                        link.href = url
+                        link.setAttribute('download', fileName + '.xlsx')
+                        document.body.appendChild(link)
+                        link.click()
+                        document.body.removeChild(link) // 下载完成移除元素
+                        window.URL.revokeObjectURL(url) // 释放掉blob对象
+                      }
+                    })
+                  }
+                })
+            },
             //重置
             searchReset(){
                 this.queryParam={}

+ 36 - 0
src/views/production/safetyStock/safetyStockList.vue

@@ -70,6 +70,7 @@
             <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" @change="handleUploadChange"  :action="importExcelUrl">
                <a-button  size="small">导入</a-button>
             </a-upload>
+            <a-button size="small" @click="exportXlsModelAQKC('安全库存模板')">下载导入模板</a-button>
             <a-button size="small" @click="exportList('安全库存列表')">导出</a-button>
           </div>
       
@@ -273,6 +274,41 @@
                   }
                 })
             },
+            //导出
+            exportXlsModelAQKC(fileName){
+              this.$confirm({
+                  title: '确认导出',
+                  content: '是否导出模板?',
+                  onOk:  ()=> {
+                    alertModal.loading("执行中,请稍后!")
+                    let param = this.queryParam;
+                    param['selections'] = ''
+                    if(this.selectedRowKeys && this.selectedRowKeys.length>0){
+                      param['selections'] = this.selectedRowKeys.join(",")
+                    }
+                    downFile('/materialRequisition/madeMaterialRequisition/exportXlsModelAQKC', param).then(data => {
+                      alertModal.closeLoading();
+                      if (!data) {
+                        this.$message.warning('文件下载失败')
+                        return
+                      }
+                      if (typeof window.navigator.msSaveBlob !== 'undefined') {
+                        window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), fileName + '.xlsx')
+                      } else {
+                        let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
+                        let link = document.createElement('a')
+                        link.style.display = 'none'
+                        link.href = url
+                        link.setAttribute('download', fileName + '.xlsx')
+                        document.body.appendChild(link)
+                        link.click()
+                        document.body.removeChild(link) // 下载完成移除元素
+                        window.URL.revokeObjectURL(url) // 释放掉blob对象
+                      }
+                    })
+                  }
+                })
+            },
             //重置
             searchReset(){
                 this.queryParam={}