123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- <template>
- <div class="detail-container">
- <el-page-header @back="goBack" content="审批"></el-page-header>
- <div class="main-title">
- <div class="title">基本信息</div>
- </div>
- <div class="diy-table-1">
- <el-row>
- <el-col :span="8" class="item">
- <div class="label">直接调拨单号</div>
- <div class="value">{{detailData.id}}</div>
- </el-col>
- <el-col :span="8" class="item">
- <div class="label">申请日期</div>
- <div class="value">{{detailData.orderTime}}</div>
- </el-col>
- <el-col :span="8" class="item">
- <div class="label">单据状态</div>
- <div class="value">{{detailData.examineStatus | statusFilter}}</div>
- </el-col>
- <el-col :span="8" class="item">
- <div class="label">经销商编号</div>
- <div class="value">{{detailData.customerNumber}}</div>
- </el-col>
- <el-col :span="16" class="item">
- <div class="label">经销商名称</div>
- <div class="value">{{detailData.customerName}}</div>
- </el-col>
- <el-col :span="8" class="item">
- <div class="label">销售订单号</div>
- <div class="value">{{detailData.orderNo}}</div>
- </el-col>
- <el-col :span="8" class="item">
- <div class="label">销售单类型</div>
- <div class="value">{{detailData.orderType | orderTypeFilter}}</div>
- </el-col>
- <el-col :span="8" class="item">
- <div class="label">调拨类型</div>
- <div class="value">{{detailData.type | typeFilter}}</div>
- </el-col>
- <el-col :span="8" class="item">
- <div class="label">调出库存组织</div>
- <div class="value">{{detailData.requsitionOut}}</div>
- </el-col>
- <el-col :span="8" class="item">
- <div class="label">调入库存组织</div>
- <div class="value">{{detailData.requsitionIn}}</div>
- </el-col>
- <el-col :span="8" class="item">
- <div class="label">调拨方向</div>
- <div class="value">{{detailData.direction}}</div>
- </el-col>
- <el-col :span="24" class="item">
- <div class="label">备注</div>
- <div class="value">{{detailData.remark}}</div>
- </el-col>
- </el-row>
- </div>
- <div class="main-title">
- <div class="title">货品信息</div>
- </div>
- <div class="table" style="margin-top: 20px">
- <el-table :data="detailData.results" element-loading-text="Loading" border fit highlight-current-row stripe max-height="400">
- <el-table-column align="center" label="序号" type="index" width="50"></el-table-column>
- <el-table-column align="center" label="销售类型" prop="saleTypeName" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="产品编码" prop="materialCode" min-width="120" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="产品名称" prop="materialName" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="规格型号" prop="specification" min-width="160" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="单位" prop="unit" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="调拨数量" prop="qty" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="总成本" prop="totalAmount" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column align="center" label="调出仓库" min-width="100" show-overflow-tooltip>
- <template slot-scope="">{{detailData.correspondName}}</template>
- </el-table-column>
- <el-table-column align="center" label="调出仓位" min-width="100" show-overflow-tooltip>
- <template slot-scope="">{{detailData.stockName}}</template>
- </el-table-column>
- <el-table-column align="center" label="调入仓库" min-width="100" show-overflow-tooltip>
- <template slot-scope="">{{detailData.inCorrespondName}}</template>
- </el-table-column>
- <el-table-column align="center" label="调入仓位" min-width="100" show-overflow-tooltip>
- <template slot-scope="">{{detailData.inStockName}}</template>
- </el-table-column>
- <el-table-column align="center" label="调出库存状态" min-width="110" show-overflow-tooltip>
- <template slot-scope="">{{detailData.stockStatusType}}</template>
- </el-table-column>
- <el-table-column align="center" label="调入库存状态" min-width="110" show-overflow-tooltip>
- <template slot-scope="">{{detailData.inStockStatusType}}</template>
- </el-table-column>
- <el-table-column align="center" label="调出库主" min-width="100" show-overflow-tooltip>
- <template slot-scope="">{{detailData.requsitionOut}}</template>
- </el-table-column>
- <el-table-column align="center" label="调入库主" min-width="100" show-overflow-tooltip>
- <template slot-scope="">{{detailData.requsitionIn}}</template>
- </el-table-column>
- <el-table-column align="center" label="备注" prop="remark" min-width="160" show-overflow-tooltip></el-table-column>
- </el-table>
- </div>
- <div class="main-title">
- <div class="title">审批信息</div>
- </div>
- <div class="diy-table-1">
- <el-row :gutter="0">
- <el-col :span="12" class="item">
- <div class="label">审批人</div>
- <div class="value">{{userName}}</div>
- </el-col>
- <el-col :span="12" class="item">
- <div class="label">审批日期</div>
- <div class="value">{{getDate()}}</div>
- </el-col>
- <el-col :span="24" class="item">
- <div class="label">审批说明</div>
- <div class="value"><el-input v-model="examineForm.remark" placeholder="请输入内容"></el-input></div>
- </el-col>
- </el-row>
- </div>
-
- <div class="page-footer">
- <div class="footer" :class="classObj">
- <el-button type="primary" @click="clickSubmitForm('OK')">审批通过</el-button>
- <el-button type="warning" @click="clickSubmitForm('SAVE')">审批驳回</el-button>
- <el-popconfirm title="确定关闭吗?" @onConfirm="goBack" style="margin-left: 10px;">
- <el-button slot="reference">关 闭</el-button>
- </el-popconfirm>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { getDetail, examineData } from "@/api/supply/direct";
- export default {
- name: 'DirectExamine',
- componentName: 'DirectExamine',
- props: ['listItem'],
- filters: {
- statusFilter(val) {
- const MAP = [
- { label: '已保存', value: 'SAVE' },
- { label: '待审核', value: 'WAIT' },
- { label: '审核通过', value: 'OK' },
- { label: '审核驳回', value: 'FAIL' },
- { label: '已关闭', value: 'CLOSE' },
- ];
- let obj = MAP.find(o => o.value == val);
- return obj ? obj.label : ''
- },
- orderTypeFilter(val) {
- const MAP = [
- { label: '商用工程订单', value: 'TRADE' },
- { label: '家用工程订单', value: 'HOME' },
- { label: '零售单', value: 'RETAIL' },
- { label: '销售政策单', value: 'RETAIL_POLICY' },
- ];
- let obj = MAP.find(o => o.value == val);
- return obj ? obj.label : ''
- },
- typeFilter(val) {
- const MAP = {
- 1: '组织内调拨',
- }
- return MAP[val];
- }
- },
- data() {
- return {
- detailData: {},
- userName: JSON.parse(localStorage.getItem("supply_user")).nickName,
- formLoading: false,
- examineForm: {
- remark: '',
- },
- }
- },
- computed: {
- sidebar() {
- return this.$store.state.app.sidebar
- },
- classObj() {
- return {
- hideSidebar: !this.sidebar.opened,
- openSidebar: this.sidebar.opened
- }
- },
- },
- created() {
- this.getDetail();
- },
- methods: {
- getDate() {
- var date = new Date();
- var seperator1 = "-";
- var year = date.getFullYear();
- var month = date.getMonth() + 1;
- var strDate = date.getDate();
- if (month >= 1 && month <= 9) {
- month = "0" + month;
- }
- if (strDate >= 0 && strDate <= 9) {
- strDate = "0" + strDate;
- }
- var currentdate = year + seperator1 + month + seperator1 + strDate;
- return currentdate;
- },
- // 返回列表
- goBack() {
- this.$emit('backListFormDetail');
- },
- // 获取详情
- getDetail() {
- getDetail({id: this.listItem.id}).then(res => {
- this.detailData = res.data;
- })
- },
-
- // 提交审批
- clickSubmitForm(val) {
- this.$confirm('此操作将审批订单, 是否继续?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- let params = {
- id: this.detailData.id,
- examineStatus: val,
- approvalRemark: this.examineForm.remark
- };
- examineData(params).then(res => {
- this.$successMsg();
- this.goBack();
- this.$parent.getList();
- })
- }).catch(() => {});
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .detail-container {
- width: 100%;
- height: 100%;
- }
- .main-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 20px;
- height: 60px;
- border-bottom: 1px solid #DCDFE6;
- margin-bottom: 20px;
- .title {
- font-size: 16px;
- font-weight: 600;
- padding-left: 10px;
- }
- }
- ::v-deep input::-webkit-outer-spin-button,
- ::v-deep input::-webkit-inner-spin-button {
- -webkit-appearance: none;
- }
- ::v-deep input[type='number'] {
- -moz-appearance: textfield;
- }
- </style>
|