linwenxin 7 mesi fa
parent
commit
bd94e35186

+ 5 - 5
src/api/material-system/center/center-shop-refund-record.js

@@ -1,17 +1,17 @@
-import request, { postBlob } from "@/utils/request";
+import request, { postBlob } from '@/utils/request'
 
 export function partsRefundRecordList(data) {
   return request({
     url: `/parts/refund-record/list?moduleId=${data.moduleId}`,
-    method: "post",
+    method: 'post',
     data
-  });
+  })
 }
 
 export function partsRefundRecordListExport(data, name) {
   return postBlob({
-    url: "/parts/refund-record/list/export",
+    url: '/parts/refund-record/list/export',
     data,
     name
-  });
+  })
 }

+ 33 - 0
src/api/material-system/website/website-new-parts-to-sales.js

@@ -0,0 +1,33 @@
+import request, { postBlob } from '@/utils/request'
+
+export function partsChangeSalesList(data) {
+  return request({
+    url: `/parts/change-sales/list?moduleId=${data.moduleId}`,
+    method: 'post',
+    data
+  })
+}
+
+export function partsChangeSalesExport(data, name) {
+  return postBlob({
+    url: '/parts/change-sales/list/export',
+    data,
+    name
+  })
+}
+
+export function partsChangeSalesExamine(params) {
+  return request({
+    url: `/parts/change-sales/examine`,
+    method: 'post',
+    params
+  })
+}
+
+export function partsChangeSalesDetail(params) {
+  return request({
+    url: '/parts/change-sales/detail',
+    method: 'get',
+    params
+  })
+}

+ 29 - 29
src/api/material-system/website/website-parts-worker-refund-manage.js

@@ -1,105 +1,105 @@
-import request, { postBlob, getBlob } from "@/utils/request";
+import request, { postBlob, getBlob } from '@/utils/request'
 
 export function workerOldRefundExamine(params) {
   return request({
     url: `/worker/old-refund/examine`,
-    method: "post",
+    method: 'post',
     params
-  });
+  })
 }
 
 export function workerOldRefundReview(params) {
   return request({
     url: `/worker/old-refund/review`,
-    method: "post",
+    method: 'post',
     params
-  });
+  })
 }
 
 export function workerNewRefundList(data) {
   return request({
     url: `/worker/new-refund/list?moduleId=${data.moduleId}`,
-    method: "post",
+    method: 'post',
     data
-  });
+  })
 }
 
 export function workerNewRefundRefund(params) {
   return request({
     url: `/worker/new-refund/refund`,
-    method: "post",
+    method: 'post',
     params
-  });
+  })
 }
 
 export function workerNewRefundExamine(params) {
   return request({
     url: `/worker/new-refund/examine`,
-    method: "post",
+    method: 'post',
     params
-  });
+  })
 }
 
 export function workerNewRefundDetail(params) {
   return request({
-    url: "/worker/new-refund/detail",
-    method: "get",
+    url: '/worker/new-refund/detail',
+    method: 'get',
     params
-  });
+  })
 }
 
 export function workerOldRefundList(data) {
   return request({
     url: `/worker/old-refund/list?moduleId=${data.moduleId}`,
-    method: "post",
+    method: 'post',
     data
-  });
+  })
 }
 
 export function workerOldRefundRefund(params) {
   return request({
     url: `/worker/old-refund/refund`,
-    method: "post",
+    method: 'post',
     params
-  });
+  })
 }
 
 export function workerOldRefundDetail(params) {
   return request({
-    url: "/worker/old-refund/detail",
-    method: "get",
+    url: '/worker/old-refund/detail',
+    method: 'get',
     params
-  });
+  })
 }
 
 // 下载模板
 export function workerTemplateExcel(data, name) {
   return getBlob({
-    url: "/worker/old-refund/template/excel",
+    url: '/worker/old-refund/template/excel',
     data,
     name
-  });
+  })
 }
 
 export function WorkerNewRefundListExport(data, name) {
   return postBlob({
-    url: "/worker/new-refund/list/export",
+    url: '/worker/new-refund/list/export',
     data,
     name
-  });
+  })
 }
 
 export function WorkerOldRefundListExport(data, name) {
   return postBlob({
-    url: "/worker/old-refund/list/export",
+    url: '/worker/old-refund/list/export',
     data,
     name
-  });
+  })
 }
 export function workerOldRefundTransferFlag(params) {
   return request({
     url: `/worker/old-refund/transfer/flag`,
-    method: "post",
+    method: 'post',
     params
-  });
+  })
 }

+ 266 - 0
src/views/partsManagement/accessoryWebsite/website-parts-to-sales/website-new-parts-to-sales/components/website-new-parts-to-sales-information.vue

@@ -0,0 +1,266 @@
+<template>
+  <div class="sales-order-information">
+    <div class="sales-order-information-sl">
+      <el-page-header @back="goBack" content="销售单信息"></el-page-header>
+      <br />
+      <el-descriptions :column="2" size="small" border labelClassName="labelClassName">
+        <el-descriptions-item>
+          <template slot="label"> 转销单 </template>
+          <el-input disabled size="small" v-model="form.changeSalesNo"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item>
+          <template slot="label"> 转单类型 </template>
+          <el-input disabled size="small" v-model="form.changeType"></el-input>
+        </el-descriptions-item>
+
+        <el-descriptions-item>
+          <template slot="label"> 申请单位 </template>
+          <el-input disabled size="small" v-model="form.websitName"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item>
+          <template slot="label"> 总金额 </template>
+          <el-input disabled size="small" v-model="form.totalAmount"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item>
+          <template slot="label"> 创建日期 </template>
+          <el-input disabled size="small" v-model="form.createTime"></el-input>
+        </el-descriptions-item>
+      </el-descriptions>
+      <div style="margin-top: -1px">
+        <el-table
+          :data="form.partsChangeSalesItemList || []"
+          size="mini"
+          border
+          style="width: 100%"
+          header-cell-class-name="headerRowColor"
+        >
+          <el-table-column label="序号" width="60">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.$index + 1 }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="配件编码">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.partsNumber }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="配件名称">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.partsName }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="单位">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.unitName }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="购买单价">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.salesPrice }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="数量">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.qty }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="总金额">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.totalAmount }}</div>
+            </template>
+          </el-table-column>
+        </el-table>
+      </div>
+      <div style="margin-top: -1px">
+        <el-descriptions :column="2" size="small" border labelClassName="labelClassName">
+          <el-descriptions-item>
+            <template slot="label"> 审批人 </template>
+            <el-input disabled size="small" v-model="form.examineBy"></el-input>
+          </el-descriptions-item>
+          <el-descriptions-item>
+            <template slot="label"> *审批结果 </template>
+            <el-select placeholder="" :disabled="disabled" size="small" v-model="form.flag" style="width: 100%">
+              <el-option
+                v-for="item in type == 1 ? t1options : t2options"
+                :key="item.value"
+                :label="item.label"
+                :value="item.value"
+              >
+              </el-option>
+            </el-select>
+          </el-descriptions-item>
+        </el-descriptions>
+      </div>
+      <div style="margin-top: -1px">
+        <el-descriptions size="small" border labelClassName="labelClassName">
+          <el-descriptions-item labelStyle="width:15.45%">
+            <template slot="label"> 审批备注 </template>
+            <el-input
+              :disabled="disabled"
+              type="textarea"
+              :rows="1"
+              size="small"
+              v-model="form.examineRemark"
+            ></el-input>
+          </el-descriptions-item>
+        </el-descriptions>
+      </div>
+      <br />
+      <el-row>
+        <el-button v-if="!disabled" size="small" type="primary" @click="determine">通过</el-button>
+        <el-button v-if="!disabled" size="small" @click="reset">重置</el-button>
+      </el-row>
+    </div>
+  </div>
+</template>
+
+<script>
+import {
+  partsChangeSalesDetail,
+  partsChangeSalesExamine
+} from '@/api/material-system/website/website-new-parts-to-sales'
+export default {
+  props: {
+    type: {
+      type: Number
+    },
+    item: {
+      type: Object,
+      default: () => {}
+    }
+  },
+  data() {
+    return {
+      form: {},
+      disabled: false,
+      t1options: [
+        { label: '通过', value: 'AGREE' },
+        { label: '驳回', value: 'REJECT' }
+      ],
+      t2options: [
+        { label: '保存', value: 'SAVE' },
+        { label: '提交', value: 'SUBMIT' },
+        { label: '通过', value: 'AGREE' },
+        { label: '驳回', value: 'REJECT' },
+        { label: '已返还', value: 'REFUNDED' },
+        { label: '未返还', value: 'NOTREFUND' }
+      ]
+    }
+  },
+  mounted() {
+    if (~[1, 2].indexOf(this.type) && this.item && this.item.changeSalesNo) {
+      if (this.type === 2) {
+        this.disabled = true
+      }
+      partsChangeSalesDetail({
+        changeSalesNo: this.item.changeSalesNo
+      })
+        .then(res => {
+          this.form = res.data
+          if (this.type === 1) {
+            this.form.examineBy = this.$store.getters.name
+            this.form.flag = this.t1options.find(item => item.value === this.form.flag) ? this.form.flag : ''
+          }
+        })
+        .catch(err => {
+          console.log(err)
+        })
+    }
+  },
+  methods: {
+    goBack() {
+      this.$emit('goBack')
+    },
+    reset() {
+      this.form.examineRemark = ''
+      this.form.flag = ''
+    },
+    determine() {
+      var { changeSalesNo, examineRemark, flag } = this.form
+      if (!changeSalesNo || !flag) {
+        this.$message({
+          type: 'info',
+          message: `必填信息不完整!`
+        })
+        return
+      }
+      partsChangeSalesExamine({
+        changeSalesNo,
+        examineRemark,
+        flag
+      }).then(res => {
+        this.$message({
+          type: 'success',
+          message: `提交成功!`
+        })
+        this.$emit('goBack', true)
+      })
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.sales-order-information {
+  min-width: 860px;
+  position: absolute;
+  top: 0;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  z-index: 999;
+  background: #fff;
+  overflow: hidden;
+  ::v-deep .labelClassName {
+    width: 200px !important;
+  }
+  .sales-order-information-sl {
+    padding: 20px;
+    width: 100%;
+    height: 100%;
+    overflow: auto;
+  }
+  .serial_number {
+    width: 100%;
+    height: 100%;
+    box-sizing: border-box;
+    text-align: center;
+    padding: 6px !important;
+  }
+  ::v-deep .is-disabled {
+    .el-textarea__inner,
+    .el-input__inner {
+      background-color: #fff;
+      color: #606266;
+      border-color: #fff;
+    }
+    .el-input__suffix {
+      display: none;
+    }
+  }
+  ::v-deep th .cell {
+    width: 100%;
+    height: 100%;
+    text-align: center;
+  }
+  ::v-deep .el-table__cell {
+    .el-select,
+    .el-input,
+    .el-textarea__inner,
+    .el-input__inner {
+      height: 100%;
+      border: none !important;
+    }
+  }
+  ::v-deep .cell {
+    height: 100%;
+    padding: 0 !important;
+  }
+  ::v-deep .headerRowColor {
+    .cell {
+      height: 100%;
+      padding: 6px !important;
+    }
+  }
+}
+</style>

+ 87 - 0
src/views/partsManagement/accessoryWebsite/website-parts-to-sales/website-new-parts-to-sales/index.vue

@@ -0,0 +1,87 @@
+<template>
+  <template-page
+    ref="pageRef"
+    :getList="getList"
+    :exportList="exportList"
+    :columnParsing="columnParsing"
+    :optionsEvensGroup="optionsEvensGroup"
+    :tableAttributes="tableAttributes"
+    :tableEvents="tableEvents"
+    :operation="operation()"
+    :operationColumnWidth="180"
+  >
+    <website-new-parts-to-sales-information
+      v-if="showFromBool"
+      v-bind="fromPm"
+      @success="$refs.pageRef.refreshList"
+      @goBack="
+        bool => {
+          showFromBool = false
+          if (bool === true) {
+            this.$refs.pageRef.refreshList()
+          }
+        }
+      "
+    />
+  </template-page>
+</template>
+
+<script>
+import TemplatePage from '@/components/template/template-page-1.vue'
+import operation_mixin from '@/components/template/operation_mixin.js'
+import { partsChangeSalesList, partsChangeSalesExport } from '@/api/material-system/website/website-new-parts-to-sales'
+import WebsiteNewPartsToSalesInformation from './components/website-new-parts-to-sales-information.vue'
+export default {
+  components: { TemplatePage, WebsiteNewPartsToSalesInformation },
+  mixins: [operation_mixin],
+  data() {
+    return {
+      // 事件组合
+      optionsEvensGroup: [],
+      // 表格属性
+      tableAttributes: {},
+      // 表格事件
+      tableEvents: {},
+      showFromBool: false,
+      fromPm: {}
+    }
+  },
+  methods: {
+    // 列表请求函数
+    getList: partsChangeSalesList,
+    // 列表导出函数
+    exportList: partsChangeSalesExport,
+    // 表格列解析渲染数据更改
+    columnParsing(item, defaultData) {
+      return defaultData
+    },
+    operation() {
+      return this.operationBtn({
+        view: {
+          click: ({ row, index, column }) => {
+            this.fromPm = {
+              type: 2,
+              item: { ...row }
+            }
+            this.showFromBool = true
+          }
+        },
+        examine: {
+          conditions: ({ row, index, column }) => {
+            return row.flag == 'SUBMIT'
+          },
+          click: ({ row, index, column }) => {
+            this.fromPm = {
+              type: 1,
+              item: { ...row }
+            }
+            this.showFromBool = true
+          }
+        }
+      })
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped></style>

+ 439 - 0
src/views/partsManagement/accessoryWebsite/website-parts-to-sales/website-outside-new-parts-to-sales/components/website-outside-new-parts-to-sales-information.vue

@@ -0,0 +1,439 @@
+<template>
+  <div class="sales-order-information">
+    <div class="sales-order-information-sl">
+      <el-page-header @back="goBack" content="销售单信息"></el-page-header>
+      <br />
+      <el-descriptions :column="2" size="small" border labelClassName="labelClassName">
+        <el-descriptions-item>
+          <template slot="label"> 申请单号 </template>
+          <el-input disabled size="small" v-model="form.applyNo"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item v-if="form.applyCategoryName">
+          <template slot="label"> 申请类别 </template>
+          <el-input disabled size="small" v-model="form.applyCategoryName"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item v-if="form.applyTypeName">
+          <template slot="label"> 申请类型 </template>
+          <el-input disabled size="small" v-model="form.applyTypeName"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item>
+          <template slot="label"> 申请人 </template>
+          <el-input disabled size="small" v-model="form.createBy"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item>
+          <template slot="label"> 申请单位 </template>
+          <el-input disabled size="small" v-model="form.receiveWebsitName"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item>
+          <template slot="label"> 申请日期 </template>
+          <el-input disabled size="small" v-model="form.createTime"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item>
+          <template slot="label"> 退款金额 </template>
+          <el-input disabled size="small" v-model="form.refundAmount"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item v-if="form.refundModeName">
+          <template slot="label"> 退件方式 </template>
+          <el-input disabled size="small" v-model="form.refundModeName"></el-input>
+        </el-descriptions-item>
+        <el-descriptions-item>
+          <template slot="label"> 收货地址 </template>
+          <div>{{ form.receiveAddress }}</div>
+        </el-descriptions-item>
+        <el-descriptions-item>
+          <template slot="label"> 发货单位 </template>
+          <el-input disabled size="small" v-model="form.createBy"></el-input>
+        </el-descriptions-item>
+      </el-descriptions>
+      <div style="margin-top: -1px">
+        <el-descriptions size="small" border labelClassName="labelClassName">
+          <el-descriptions-item labelStyle="width:15.45%">
+            <template slot="label"> 备注 </template>
+            <el-input disabled type="textarea" :rows="1" size="small" v-model="form.remark"></el-input>
+          </el-descriptions-item>
+        </el-descriptions>
+      </div>
+      <div style="margin-top: -1px">
+        <el-table
+          :data="form.oldRefundManageItemBeanList || []"
+          size="mini"
+          border
+          header-cell-class-name="headerRowColor"
+          style="width: 100%"
+        >
+          <el-table-column label="序号" width="60">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.$index + 1 }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="旧件编码">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.oldPartsNumber }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="旧件名称">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.oldPartsName }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="数量">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.qty }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="审批数量">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.confirmQty }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="旧件图片">
+            <template slot-scope="scope">
+              <div v-if="scope.row.oldImage" class="serial_number">
+                <el-image
+                  style="width: 100px; height: 100px"
+                  :src="$showImgUrl(scope.row.oldImage)"
+                  :preview-src-list="[$showImgUrl(scope.row.oldImage)]"
+                >
+                </el-image>
+              </div>
+            </template>
+          </el-table-column>
+          <el-table-column label="铭牌">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.tab }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="新件编码">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.newPartsNumber }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="新件名称">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.newPartsName }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="维修记录编号">
+            <template slot-scope="scope">
+              <div class="serial_number">
+                {{ scope.row.repairRecordNumber }}
+              </div>
+            </template>
+          </el-table-column>
+          <el-table-column label="机器条形码">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.partsBarcode }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="修复时间">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.repairTime }}</div>
+            </template>
+          </el-table-column>
+        </el-table>
+      </div>
+      <div style="margin-top: -1px">
+        <el-table
+          :data="form.partsOldRefundManageRecordList || []"
+          size="mini"
+          border
+          header-cell-class-name="headerRowColor"
+          style="width: 100%"
+        >
+          <el-table-column label="序号" width="60">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.$index + 1 }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="市场价">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.marketPrice }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="配件名称">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.partsName }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="配件编码">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.partsNumber }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="数量">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.qty }}</div>
+            </template>
+          </el-table-column>
+
+          <el-table-column label="退款金额">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.refundAmount }}</div>
+            </template>
+          </el-table-column>
+
+          <el-table-column label="销售单号">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.salesOrderNo }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="销售价">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.salesPrice }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="优惠价2">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.secondPrice }}</div>
+            </template>
+          </el-table-column>
+          <el-table-column label="总金额">
+            <template slot-scope="scope">
+              <div class="serial_number">{{ scope.row.totalAmount }}</div>
+            </template>
+          </el-table-column>
+        </el-table>
+      </div>
+      <p>网点审批信息</p>
+      <div style="margin-top: -1px">
+        <el-descriptions :column="2" size="small" border labelClassName="labelClassName">
+          <el-descriptions-item>
+            <template slot="label"> 审批人 </template>
+            <el-input disabled size="small" v-model="form.examineBy"></el-input>
+          </el-descriptions-item>
+          <el-descriptions-item>
+            <template slot="label"> *是否优惠价格结算 </template>
+            <div>
+              <el-radio
+                :disabled="~['WAIT_REVIEW', 'REVIEWED', 'AGREE'].indexOf(form.flag) ? true : false"
+                v-model="form.isDisc"
+                :label="true"
+                >有优惠价</el-radio
+              >
+              <el-radio
+                :disabled="~['WAIT_REVIEW', 'REVIEWED', 'AGREE'].indexOf(form.flag) ? true : false"
+                v-model="form.isDisc"
+                :label="false"
+                >无优惠价</el-radio
+              >
+            </div>
+          </el-descriptions-item>
+        </el-descriptions>
+      </div>
+      <div style="margin-top: -1px">
+        <el-descriptions size="small" border labelClassName="labelClassName">
+          <el-descriptions-item labelStyle="width:15.45%">
+            <template slot="label"> 备注 </template>
+            <el-input
+              :disabled="~['WAIT_REVIEW', 'REVIEWED', 'AGREE'].indexOf(form.flag) ? true : false"
+              type="textarea"
+              :rows="1"
+              size="small"
+              v-model="form.examineRemark"
+            ></el-input>
+          </el-descriptions-item>
+        </el-descriptions>
+      </div>
+      <p v-if="~['WAIT_REVIEW', 'REVIEWED'].indexOf(form.flag)">中心审批信息</p>
+      <div v-if="~['WAIT_REVIEW', 'REVIEWED'].indexOf(form.flag)" style="margin-top: -1px">
+        <el-descriptions :column="2" size="small" border labelClassName="labelClassName">
+          <el-descriptions-item>
+            <template slot="label"> 审批人 </template>
+            <el-input disabled size="small" v-model="form.reviewBy"></el-input>
+          </el-descriptions-item>
+          <el-descriptions-item>
+            <template slot="label"> *审批结果 </template>
+            <div>
+              <el-radio
+                :disabled="~['REVIEWED'].indexOf(form.flag) ? true : false"
+                v-model="form.reviewResult"
+                :label="true"
+                >可以返还差价</el-radio
+              >
+              <el-radio
+                :disabled="~['REVIEWED'].indexOf(form.flag) ? true : false"
+                v-model="form.reviewResult"
+                :label="false"
+                >无需返还差价</el-radio
+              >
+            </div>
+          </el-descriptions-item>
+        </el-descriptions>
+      </div>
+      <div v-if="~['WAIT_REVIEW', 'REVIEWED'].indexOf(form.flag)" style="margin-top: -1px">
+        <el-descriptions size="small" border labelClassName="labelClassName">
+          <el-descriptions-item labelStyle="width:15.45%">
+            <template slot="label"> 备注 </template>
+            <el-input
+              :disabled="~['REVIEWED'].indexOf(form.flag) ? true : false"
+              type="textarea"
+              :rows="1"
+              size="small"
+              v-model="form.reviewRemark"
+            ></el-input>
+          </el-descriptions-item>
+        </el-descriptions>
+      </div>
+      <br />
+      <el-row>
+        <el-button v-if="apiType" size="small" type="primary" @click="determine">提交</el-button>
+        <el-button v-if="apiType" size="small" @click="reset">重置</el-button>
+      </el-row>
+    </div>
+  </div>
+</template>
+
+<script>
+import {
+  workerOldRefundDetail,
+  workerOldRefundExamine,
+  workerOldRefundReview
+} from '@/api/material-system/website/website-parts-worker-refund-manage'
+export default {
+  props: {
+    type: {
+      type: Number
+    },
+    apiType: {
+      type: Number
+    },
+    item: {
+      type: Object,
+      default: () => {}
+    }
+  },
+  data() {
+    return {
+      form: '',
+      disabled: false,
+      statest: '',
+      t1options: [
+        { label: '通过', value: 'AGREE' },
+        { label: '驳回', value: 'REJECT' }
+      ]
+    }
+  },
+  mounted() {
+    if (~[1, 2].indexOf(this.type) && this.item && this.item.applyNo) {
+      if (this.type === 2) {
+        this.disabled = true
+      }
+      workerOldRefundDetail({
+        applyNo: this.item.applyNo
+      })
+        .then(res => {
+          this.form = res.data
+          if (this.type === 1) {
+            this.form.refundedBy = this.$store.getters.name
+            this.statest = this.form.flag
+          }
+        })
+        .catch(err => {
+          console.log(err)
+        })
+    }
+  },
+  methods: {
+    goBack() {
+      this.$emit('goBack')
+    },
+    reset() {
+      this.form.examineRemark = ''
+    },
+    determine() {
+      var { applyNo, flag, examineRemark, isDisc, reviewResult, reviewRemark } = this.form
+      if (!applyNo || !flag) {
+        this.$message({
+          type: 'info',
+          message: `必填信息不完整!`
+        })
+        return
+      }
+      if (!this.apiType || this.apiType <= 0) {
+        return
+      }
+      ;[workerOldRefundExamine, workerOldRefundReview]
+        [this.apiType - 1]({
+          isDisc,
+          reviewResult,
+          applyNo,
+          flag,
+          examineRemark,
+          reviewRemark
+        })
+        .then(res => {
+          this.$message({
+            type: 'success',
+            message: `提交成功!`
+          })
+          this.$emit('goBack', true)
+        })
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.sales-order-information {
+  min-width: 860px;
+  position: absolute;
+  top: 0;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  z-index: 999;
+  background: #fff;
+  overflow: hidden;
+  ::v-deep .labelClassName {
+    width: 200px !important;
+  }
+  .sales-order-information-sl {
+    padding: 20px;
+    width: 100%;
+    height: 100%;
+    overflow: auto;
+  }
+  .serial_number {
+    width: 100%;
+    height: 100%;
+    box-sizing: border-box;
+    padding: 6px !important;
+    text-align: center;
+  }
+  ::v-deep .is-disabled {
+    .el-textarea__inner,
+    .el-input__inner {
+      background-color: #fff;
+      color: #606266;
+      border-color: #fff;
+    }
+    .el-input__suffix {
+      display: none;
+    }
+  }
+  ::v-deep th .cell {
+    width: 100%;
+    height: 100%;
+    text-align: center;
+  }
+  ::v-deep .el-table__cell {
+    .el-select,
+    .el-input,
+    .el-textarea__inner,
+    .el-input__inner {
+      height: 100%;
+      border: none !important;
+    }
+  }
+  ::v-deep .cell {
+    height: 100%;
+    padding: 0 !important;
+  }
+  ::v-deep .headerRowColor {
+    .cell {
+      height: 100%;
+      padding: 6px !important;
+    }
+  }
+}
+</style>

+ 186 - 0
src/views/partsManagement/accessoryWebsite/website-parts-to-sales/website-outside-new-parts-to-sales/index.vue

@@ -0,0 +1,186 @@
+<template>
+  <template-page
+    ref="pageRef"
+    :getList="getList"
+    :exportList="exportList"
+    :columnParsing="columnParsing"
+    :optionsEvensGroup="optionsEvensGroup"
+    :tableAttributes="tableAttributes"
+    :tableEvents="tableEvents"
+    :operation="operation()"
+    :operationColumnWidth="140"
+  >
+    <website-outside-new-parts-to-sales-information
+      v-if="showFromBool"
+      v-bind="fromPm"
+      @success="$refs.pageRef.refreshList"
+      @goBack="
+        bool => {
+          showFromBool = false
+          if (bool === true) {
+            this.$refs.pageRef.refreshList()
+          }
+        }
+      "
+    />
+  </template-page>
+</template>
+
+<script>
+import TemplatePage from '@/components/template/template-page-1.vue'
+import WebsiteOutsideNewPartsToSalesInformation from './components/website-outside-new-parts-to-sales-information.vue'
+import {
+  workerOldRefundList,
+  workerOldRefundRefund,
+  WorkerOldRefundListExport,
+  workerOldRefundTransferFlag
+} from '@/api/material-system/website/website-parts-worker-refund-manage'
+import { importSettlementStateImport } from '@/api/material-system/center/center-shop-settlement-record'
+import { commonTemplateDownload } from '@/api/common.js'
+import import_mixin from '@/components/template/import_mixin.js'
+import operation_mixin from '@/components/template/operation_mixin.js'
+export default {
+  components: { TemplatePage, WebsiteOutsideNewPartsToSalesInformation },
+  mixins: [import_mixin, operation_mixin],
+  data() {
+    return {
+      // 表格属性
+      tableAttributes: {},
+      // 表格事件
+      tableEvents: {},
+      showFromBool: false,
+      fromPm: {}
+    }
+  },
+  computed: {
+    optionsEvensGroup() {
+      return [
+        [
+          [
+            this.optionsEvensAuth('add', ({ moduleName }) => {
+              return {
+                name: moduleName,
+                render: () => {
+                  return this.importButton(importSettlementStateImport, moduleName)
+                }
+              }
+            })
+          ],
+          [
+            this.optionsEvensAuth('daorude', {
+              click: () => {
+                commonTemplateDownload({ name: '更新配件结算状态模板.xlsx' }, `更新配件结算状态模板`)
+                  .then(res => {
+                    this.$message({
+                      message: '下载成功',
+                      type: 'success'
+                    })
+                  })
+                  .catch(err => {
+                    this.$message.error('下载失败')
+                  })
+              }
+            })
+          ]
+        ]
+      ]
+    }
+  },
+  methods: {
+    // 列表请求函数
+    getList(data) {
+      var p = JSON.parse(JSON.stringify(data))
+      p.params.push({
+        compare: '=',
+        param: 'a.repair_flag',
+        value: 'OUTSIDE'
+      })
+      return workerOldRefundList(p)
+    },
+    // 列表导出函数
+    exportList(data, name) {
+      var p = JSON.parse(JSON.stringify(data))
+      p.params.push({
+        compare: '=',
+        param: 'a.repair_flag',
+        value: 'OUTSIDE'
+      })
+      return WorkerOldRefundListExport(p, name)
+    },
+    // 表格列解析渲染数据更改
+    columnParsing(item, defaultData) {
+      return defaultData
+    },
+
+    operation() {
+      return this.operationBtn({
+        view: {
+          click: ({ row, index, column }) => {
+            this.fromPm = {
+              type: 2,
+              item: { ...row }
+            }
+            this.showFromBool = true
+          }
+        },
+        convert: {
+          conditions: ({ row, index, column }) => {
+            return ~['SAVE'].indexOf(row.flag)
+          },
+          click: ({ row, index, column }) => {
+            this.transferFlag(row)
+          }
+        },
+        edit: {
+          conditions: ({ row, index, column }) => {
+            return ~['SUBMIT', 'WAIT_REVIEW'].indexOf(row.flag)
+          },
+          click: ({ row, index, column }) => {
+            this.fromPm = {
+              type: 1,
+              apiType: ~['SUBMIT'].indexOf(row.flag) ? 1 : ~['WAIT_REVIEW'].indexOf(row.flag) ? 2 : null,
+              item: { ...row }
+            }
+            this.showFromBool = true
+          }
+        }
+      })
+    },
+
+    // 确认返还
+    confirmBack(row) {
+      workerOldRefundRefund({
+        applyNo: row.applyNo,
+        flag: 'AGREE'
+      })
+        .then(res => {
+          this.$message({
+            type: 'success',
+            message: `设置成功!`
+          })
+          this.$refs.pageRef.refreshList()
+        })
+        .catch(err => {
+          console.log(err)
+        })
+    },
+    transferFlag(row) {
+      workerOldRefundTransferFlag({
+        applyNo: row.applyNo
+      })
+        .then(res => {
+          this.$message({
+            type: 'success',
+            message: `转换成功,请到“旧件返还管理”检查差价!`
+          })
+          this.$refs.pageRef.refreshList()
+        })
+        .catch(err => {
+          console.log(err)
+        })
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped></style>

+ 44 - 0
src/views/partsManagement/accessoryWebsite/website-refund-record/index.vue

@@ -0,0 +1,44 @@
+<template>
+  <template-page
+    :getList="getList"
+    :exportList="exportList"
+    :columnParsing="columnParsing"
+    :optionsEvensGroup="optionsEvensGroup"
+    :tableAttributes="tableAttributes"
+    :tableEvents="tableEvents"
+  >
+  </template-page>
+</template>
+
+<script>
+import TemplatePage from '@/components/template/template-page-1.vue'
+import {
+  partsRefundRecordList,
+  partsRefundRecordListExport
+} from '@/api/material-system/center/center-shop-refund-record'
+export default {
+  components: { TemplatePage },
+  data() {
+    return {
+      // 事件组合
+      optionsEvensGroup: [],
+      // 表格属性
+      tableAttributes: {},
+      // 表格事件
+      tableEvents: {}
+    }
+  },
+  methods: {
+    // 列表请求函数
+    getList: partsRefundRecordList,
+    // 列表导出函数
+    exportList: partsRefundRecordListExport,
+    // 表格列解析渲染数据更改
+    columnParsing(item, defaultData) {
+      return defaultData
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped></style>