snow 2 жил өмнө
parent
commit
8c64b35eb6

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 0 - 0
dist/static/js/0.js


+ 117 - 118
src/views/businessReportQuery/businessProductReport/components/table1.vue

@@ -28,15 +28,15 @@
               <periodDatePickerActive
                 :month="month"
                 :size="searchSize"
-                :newTime="newTime"
+                :new-time="newTime"
                 @timeReturned="time"
               />
             </el-col>
             <el-col :span="6" style="width: 230px">
               <el-input
+                v-model="parmValue.spuCode"
                 clearable
                 placeholder="商品成本信息"
-                v-model="parmValue.spuCode"
                 maxlength="40"
                 :size="searchSize"
                 @blur="
@@ -44,16 +44,15 @@
                   parmValue.page = 1;
                   searchList();
                 "
-              >
-              </el-input>
+              />
             </el-col>
             <el-col :span="4" style="width: 66px; float: right">
               <el-button
                 type="primary"
                 style="margin-left: 30px"
-                @click="download"
                 :size="searchSize"
                 class="fr"
+                @click="download"
               >
                 导出
               </el-button>
@@ -85,40 +84,40 @@
   </div>
 </template>
 <script>
-import mixinPage from "@/mixins/elPaginationHandle";
-import resToken from "@/mixins/resToken";
-import urlConfig from "@/apis/url-config";
-import asyncRequest from "@/apis/service/reportQuery/productReport";
-import periodDatePickerActive from "../period-date-picker-month/index.vue";
-import { table1 } from "./columns";
-import { mapGetters } from "vuex";
+import mixinPage from '@/mixins/elPaginationHandle'
+import resToken from '@/mixins/resToken'
+import urlConfig from '@/apis/url-config'
+import asyncRequest from '@/apis/service/reportQuery/productReport'
+import periodDatePickerActive from '../period-date-picker-month/index.vue'
+import { table1 } from './columns'
+import { mapGetters } from 'vuex'
 
 export default {
-  name: "purchaseOrder",
-  mixins: [mixinPage, resToken],
+  name: 'PurchaseOrder',
   components: {
-    periodDatePickerActive,
+    periodDatePickerActive
   },
+  mixins: [mixinPage, resToken],
   computed: {
-    ...mapGetters(["tablebtnSize", "searchSize", "size"]),
+    ...mapGetters(['tablebtnSize', 'searchSize', 'size'])
   },
   data() {
     return {
-      newTime: "",
-      month: "",
-      //选中数组
+      newTime: '',
+      month: '',
+      // 选中数组
       changeList: [],
-      //全局url
+      // 全局url
       fileUrl: urlConfig.baseURL,
-      //loading
+      // loading
       loading: false,
-      //请求参数集合
+      // 请求参数集合
       parmValue: {
-        start_date: "", //起始时间
-        end_date: "", // 结束时间
-        spuCode: "", //商品成本信息
+        start_date: '', // 起始时间
+        end_date: '', // 结束时间
+        spuCode: '', // 商品成本信息
         page: 1, // 页码
-        size: 15, // 每页显示条数
+        size: 15 // 每页显示条数
       },
       // 表格 - 数据集合
       tableData: [],
@@ -126,177 +125,177 @@ export default {
       table: {
         stripe: true,
         border: true,
-        _defaultHeader_: ["setcol"],
+        _defaultHeader_: ['setcol']
       },
       // 表格 - 分页
       pageInfo: {
         size: 15,
         curr: 1,
-        total: 0,
+        total: 0
       },
       // 表格表头 - 列参数
-      table1: table1,
-    };
+      table1: table1
+    }
   },
   mounted() {
-    this.month = this.transformTime();
-    this.getNewTime();
+    this.month = this.transformTime()
+    this.getNewTime()
   },
 
   methods: {
     transformTime() {
-      let time = new Date();
-      let y = time.getFullYear();
-      let M = time.getMonth() + 1;
-      return y + "-" + (M < 10 ? "0" + M : M);
+      const time = new Date()
+      const y = time.getFullYear()
+      const M = time.getMonth() + 1
+      return y + '-' + (M < 10 ? '0' + M : M)
     },
     getNewTime() {
-      this.newTime = new Date().valueOf();
+      this.newTime = new Date().valueOf()
     },
-    //初始化http请求
+    // 初始化http请求
     async searchList() {
-      if (this.loading) return;
+      if (this.loading) return
       if (
-        (this.parmValue.start_date !== "" && this.parmValue.end_date === "") ||
-        (this.parmValue.start_date === "" && this.parmValue.end_date !== "")
+        (this.parmValue.start_date !== '' && this.parmValue.end_date === '') ||
+        (this.parmValue.start_date === '' && this.parmValue.end_date !== '')
       ) {
-        this.$message.warning("请选择时间!");
-        this.tableData = [];
-        this.pageInfo.total = 0;
-        return;
+        this.$message.warning('请选择时间!')
+        this.tableData = []
+        this.pageInfo.total = 0
+        return
       }
-      this.loading = true;
-      const res = await asyncRequest.goodCostZhao(this.parmValue);
+      this.loading = true
+      const res = await asyncRequest.goodCostZhao(this.parmValue)
       if (res && res.code === 0 && res.data) {
-        console.log(res);
-        this.tableData = res.data.list;
-        this.pageInfo.total = Number(res.data.count);
+        console.log(res)
+        this.tableData = res.data.list
+        this.pageInfo.total = Number(res.data.count)
       } else if (res && res.code >= 100 && res.code <= 104) {
-        await this.logout();
+        await this.logout()
       } else {
-        this.tableData = [];
-        this.pageInfo.total = 0;
-        this.$message.warning(res.message);
+        this.tableData = []
+        this.pageInfo.total = 0
+        this.$message.warning(res.message)
       }
-      this.loading = false;
+      this.loading = false
     },
 
-    //重置
+    // 重置
     restSearch() {
-      this.month = this.transformTime();
+      this.month = this.transformTime()
 
-      this.parmValue.page = 1;
-      this.parmValue.sizee = 15;
-      this.parmValue.spuCode = "";
+      this.parmValue.page = 1
+      this.parmValue.sizee = 15
+      this.parmValue.spuCode = ''
       this.pageInfo = {
         size: 15,
         curr: 1,
-        total: 0,
-      };
-      this.getNewTime();
+        total: 0
+      }
+      this.getNewTime()
     },
 
     // 时间函数
     async time(e) {
-      this.parmValue.start_date = e.startTime || "";
-      this.parmValue.end_date = e.endTime || "";
-      this.month = e.value;
+      this.parmValue.start_date = e.startTime || ''
+      this.parmValue.end_date = e.endTime || ''
+      this.month = e.value
       if (
-        (this.parmValue.start_date !== "" && this.parmValue.end_date === "") ||
-        (this.parmValue.start_date === "" && this.parmValue.end_date !== "")
+        (this.parmValue.start_date !== '' && this.parmValue.end_date === '') ||
+        (this.parmValue.start_date === '' && this.parmValue.end_date !== '')
       ) {
-        this.$message.warning("请选择时间!");
-        return;
+        this.$message.warning('请选择时间!')
+        return
       }
 
       // 表格 - 分页
       // this.$set(this.pageInfo)
       // this.$set(this.pageInfo, 'curr', '2');
-      this.pageInfo.curr = 1;
+      this.pageInfo.curr = 1
       // console.log(this.pageInfo.curr)
-      this.parmValue.page = 1;
-      await this.searchList();
+      this.parmValue.page = 1
+      await this.searchList()
     },
 
-    //选中触发函数
+    // 选中触发函数
     selection_change(e) {
-      const { list } = e;
-      //选中的数组集合
-      this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : [];
+      const { list } = e
+      // 选中的数组集合
+      this.changeList = list.length > 0 ? JSON.parse(JSON.stringify(list)) : []
     },
-    //导出文件
+    // 导出文件
     async download() {
       // if(this.changeList.length<=0){
       //   this.$message.warning("请选择有效数据")
       //   return;
       // };
-      let start_date = new Date(this.parmValue.start_date).valueOf();
-      let end_date = new Date(this.parmValue.end_date).valueOf();
-      let flag = end_date - start_date > 30 * 24 * 60 * 60 * 1000;
-      if (this.parmValue.start_date != "" && this.parmValue.end_date != "") {
+      const start_date = new Date(this.parmValue.start_date).valueOf()
+      const end_date = new Date(this.parmValue.end_date).valueOf()
+      const flag = end_date - start_date > 30 * 24 * 60 * 60 * 1000
+      if (this.parmValue.start_date != '' && this.parmValue.end_date != '') {
         if (flag) {
-          this.$message.warning("导出文件的时间区间不能超过30天");
-          return;
+          this.$message.warning('导出文件的时间区间不能超过30天')
+          return
         }
       } else {
-        this.$message.warning("请选择导出文件的时间区间");
-        return;
+        this.$message.warning('请选择导出文件的时间区间')
+        return
       }
-      let model = JSON.parse(JSON.stringify(this.parmValue));
+      const model = JSON.parse(JSON.stringify(this.parmValue))
       // model.is_export = 1;
       if (!this.loading) {
-        this.loading = true;
-        let httpType = `aplication/zip`;
+        this.loading = true
+        const httpType = `aplication/zip`
         axios({
-          method: "post",
-          url: this.fileUrl + "admin/goodCostZhaoExport",
-          responseType: "blob",
+          method: 'post',
+          url: this.fileUrl + 'admin/goodCostZhaoExport',
+          responseType: 'blob',
           data: model,
           headers: {
             // 'Content-Type': 'multipart/form-data',
             // Accept: "application/vnd.ms-excel"
-            Accept: httpType,
-          },
+            Accept: httpType
+          }
         })
           .then((res) => {
             // console.log(res)
             // console.log(this.fileUrl)
             // return;
             if (res && res.status == 200 && res.data) {
-              let url = window.URL.createObjectURL(
+              const url = window.URL.createObjectURL(
                 new Blob([res.data], {
                   // type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8",
-                  type: httpType,
+                  type: httpType
                 })
-              );
-              let link = document.createElement("a");
-              link.style.display = "none";
-              link.href = url;
-              let excelName = "商品成本信息报表.zip";
-              link.setAttribute("download", excelName);
-              document.body.appendChild(link);
-              link.click();
-              link.remove();
-              window.URL.revokeObjectURL(url); //释放掉blob对象
-              this.$message.success(`导出成功!`);
+              )
+              const link = document.createElement('a')
+              link.style.display = 'none'
+              link.href = url
+              const excelName = '商品成本信息报表.zip'
+              link.setAttribute('download', excelName)
+              document.body.appendChild(link)
+              link.click()
+              link.remove()
+              window.URL.revokeObjectURL(url) // 释放掉blob对象
+              this.$message.success(`导出成功!`)
               setTimeout(() => {
-                this.loading = false;
-              }, 500);
+                this.loading = false
+              }, 500)
             } else {
-              this.$message.error(res.data.message);
+              this.$message.error(res.data.message)
               setTimeout(() => {
-                this.loading = false;
-              }, 500);
+                this.loading = false
+              }, 500)
             }
           })
           .catch((error) => {
-            console.log(error);
-            this.loading = false;
-          });
+            console.log(error)
+            this.loading = false
+          })
       }
-    },
-  },
-};
+    }
+  }
+}
 </script>
 <style lang="scss" scoped>
 .purchaseOrder {

+ 1 - 1
src/views/supplierPurchaseIn/supplierPurchaseOrder/components/order-in-table.vue

@@ -57,7 +57,7 @@
                 <i
                   class="el-icon-view tb-icon"
                   @click="
-                    routeGoto('wsmInOrderDetail', {
+                    routeGoto('supplierWsmInOrderDetail', {
                       id: scope.row.wsm_in_code,
                     })
                   "

+ 65 - 65
src/views/supplierPurchaseIn/supplierPurchaseOrder/components/work-diff-table.vue

@@ -30,7 +30,7 @@
                 {}
               ).label || '--'
             "
-          ></el-tag>
+          />
         </template>
       </el-table-column>
 
@@ -44,151 +44,151 @@
 
         <template slot-scope="scope">
           <el-tooltip
+            v-if="!scope.row.edit"
             effect="dark"
             content="查看"
-            v-if="!scope.row.edit"
             placement="top"
           >
             <i
               class="el-icon-view tb-icon"
               @click="
-                routeGoto('purchaseDiffOrderDetail', {
+                routeGoto('supplierPurchaseDiffOrderDetail', {
                   id: scope.row.id,
                 })
               "
-            ></i>
+            />
           </el-tooltip>
         </template>
       </el-table-column>
     </el-table>
   </div>
 </template>
-   <script>
-import resToken from "@/mixins/resToken";
+<script>
+import resToken from '@/mixins/resToken'
 // import asyncRequest from "@/apis/service/sellOut/salesOrder/detail";
 // import outOrderAddModel from "./out-order-add-model";
 // import addEdit from "@/views/sellOut/sellAfterApply/components/addEdit.vue";
 
-import { mapGetters } from "vuex";
+import { mapGetters } from 'vuex'
 
 export default {
-  name: "workDiffTable",
+  name: 'WorkDiffTable',
   mixins: [resToken],
-  props: ["newTime", "id", "sitem"],
+  props: ['newTime', 'id', 'sitem'],
   //   components: { addEdit, outOrderAddModel },
   watch: {
-    newTime: function (val) {
+    newTime: function(val) {
       if (val) {
-        this.initForm();
+        this.initForm()
       }
-    },
+    }
   },
   computed: {
-    ...mapGetters(["tablebtnSize", "searchSize", "size"]),
+    ...mapGetters(['tablebtnSize', 'searchSize', 'size'])
   },
 
   data() {
     return {
-      orderCode: "",
-      outCode: "",
+      orderCode: '',
+      outCode: '',
       // 状态
       statusOptions: [
-        { id: "1", label: "已出库" },
-        { id: "2", label: "验收中" },
-        { id: "3", label: "验收完成" },
+        { id: '1', label: '已出库' },
+        { id: '2', label: '验收中' },
+        { id: '3', label: '验收完成' }
       ],
       showGoodsModel: false,
-      stock_code: "",
+      stock_code: '',
       tableData: [],
       loading: false,
       diffStatusOptions: [
-        { id: "1", label: "待业务部门审核" },
-        { id: "2", label: "工差单审核完成" },
+        { id: '1', label: '待业务部门审核' },
+        { id: '2', label: '工差单审核完成' }
       ],
-      queryId: "",
-      status: "",
+      queryId: '',
+      status: '',
       showModel: null,
-      modelId: "",
+      modelId: '',
       modelItem: null,
-      s_sitem: null,
-    };
+      s_sitem: null
+    }
   },
   mounted() {
     // console.log(this.sitem);
     // console.log(this.sitem.bum);
-    this.initForm();
+    this.initForm()
   },
   methods: {
     refresh() {
-      this.$emit("refresh");
+      this.$emit('refresh')
     },
     async initForm() {
       // console.log("12");
-      this.status = "";
-      this.queryId = this.$route.query.id;
+      this.status = ''
+      this.queryId = this.$route.query.id
       // this.rulesThis = this.rules;
-      this.resetForm();
+      this.resetForm()
     },
     getNewTime() {
-      this.newTime = new Date().valueOf();
+      this.newTime = new Date().valueOf()
     },
     async resetForm() {
       // 重置
       await this.$nextTick(() => {
-        this.tableData = [];
-        const { purcheasediff } = this.sitem;
-        console.log(purcheasediff);
+        this.tableData = []
+        const { purcheasediff } = this.sitem
+        console.log(purcheasediff)
         if (purcheasediff) {
-          this.tableData.push(purcheasediff);
+          this.tableData.push(purcheasediff)
         }
-      });
+      })
     },
 
     editRow(index) {
-      let findex = this.stockForm.good_stock.findIndex((v) => v.edit === true);
+      const findex = this.stockForm.good_stock.findIndex((v) => v.edit === true)
       if (findex !== -1) {
-        this.$message.warning("当前已有发货仓库信息在编辑,请保存后再试!");
-        return;
+        this.$message.warning('当前已有发货仓库信息在编辑,请保存后再试!')
+        return
       } else {
-        this.stockForm.good_stock[index].edit = true;
+        this.stockForm.good_stock[index].edit = true
       }
     },
     checkStockRow(index) {
-      let total = parseInt(this.stockForm.good_stock[index].usable_stock),
-        num = parseInt(this.stockForm.good_stock[index].num);
+      const total = parseInt(this.stockForm.good_stock[index].usable_stock)
+      const num = parseInt(this.stockForm.good_stock[index].num)
       if (total === 0) {
-        this.$message.warning("该仓库已无该商品库存!不能销售!");
-        return;
+        this.$message.warning('该仓库已无该商品库存!不能销售!')
+        return
       } else {
         if (num > total) {
-          this.$message.warning("销售数量不能大于可用库存!");
-          return;
+          this.$message.warning('销售数量不能大于可用库存!')
+          return
         } else {
-          this.stockForm.good_stock[index].edit = false;
+          this.stockForm.good_stock[index].edit = false
         }
       }
     },
 
     openHouseModal() {
-      this.modelId = "add";
-      this.modelItem = this.sitem;
-      this.modelShowModel = true;
+      this.modelId = 'add'
+      this.modelItem = this.sitem
+      this.modelShowModel = true
     },
 
-    //省市区保存某一行
+    // 省市区保存某一行
     checkRow(rowIndex) {
       this.$refs.addrForm.validate((valid) => {
         if (valid) {
-          this.tableData[rowIndex].edit = false;
+          this.tableData[rowIndex].edit = false
         } else {
-          console.log("error submit!!");
-          return false;
+          console.log('error submit!!')
+          return false
         }
-      });
+      })
     },
     // 省市区删除行操作
     deleteRow(index, rows) {
-      rows.splice(index, 1);
+      rows.splice(index, 1)
     },
     // async submitForm() {
     //   await this.$refs.ruleForm.validate(async (valid) => {
@@ -231,13 +231,13 @@ export default {
     //   });
     // },
     openModal(code, sitem, outcode) {
-      console.log(sitem);
-      this.s_sitem = sitem;
-      this.modelId = code;
-      this.showModel = true;
-    },
-  },
-};
+      console.log(sitem)
+      this.s_sitem = sitem
+      this.modelId = code
+      this.showModel = true
+    }
+  }
+}
 </script>
    <style lang="scss" scoped>
-</style>
+</style>

+ 1 - 0
src/views/supplierPurchaseIn/supplierPurchaseOrder/detail.vue

@@ -188,6 +188,7 @@
               >
               </editPrice> -->
             </el-collapse-item>
+
             <el-collapse-item
               title="入库单"
               name="4"

Энэ ялгаанд хэт олон файл өөрчлөгдсөн тул зарим файлыг харуулаагүй болно