|
@@ -23,7 +23,7 @@
|
|
|
审核处理<i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
</el-button>
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
- <el-dropdown-item :disabled="browse" @click.native="pleaseCheck">请核数据</el-dropdown-item>
|
|
|
+ <el-dropdown-item :disabled="browse || detailData.seeDisabled" @click.native="pleaseCheck">请核数据</el-dropdown-item>
|
|
|
<el-dropdown-item v-if="form.status > 0" @click.native="checkScheduleDialog = true,checkId=form.id">审核进度</el-dropdown-item>
|
|
|
<el-dropdown-item v-if="form.status == 1" @click.native="repealCancel">撤销请核</el-dropdown-item>
|
|
|
<el-dropdown-item v-if="checkDisabled" @click.native="changeApproveOpen">特殊审批</el-dropdown-item>
|
|
@@ -2403,6 +2403,7 @@ export default {
|
|
|
this.$set(this.goodsListSave[item], 'invoiceWeight', this.goodsListSave[item].cartonWeight)
|
|
|
this.$set(this.goodsListSave[item], 'shopQuality', 0)
|
|
|
this.$set(this.goodsListSave[item], 'inputMold', 0) // 判断是商品还是政策 商品 0 特价 1 买赠2
|
|
|
+ this.$set(this.goodsListSave[item], 'priceType', this.goodsListSave[item].policyName)
|
|
|
this.goodsListSave[item].amount = 0
|
|
|
if (this.goodsActives == "goods") {
|
|
|
this.$set(this.goodsListSave[item], 'goodType', 0)
|
|
@@ -2456,18 +2457,19 @@ export default {
|
|
|
itemType: this.tableData[item].typeno,
|
|
|
tradeType: 'GN'
|
|
|
}).then(res => {
|
|
|
- this.tableData[item].priceCategory = this.tableData[item].goodsTypeName
|
|
|
- this.tableData[item].storageQuantity = res.data.data
|
|
|
- delete this.tableData[item].goodsTypeName
|
|
|
- this.tableData[item].itemId = this.tableData[item].id
|
|
|
- this.$set(this.tableData[item], 'corpName', this.tableData[item].corpName)
|
|
|
- this.$set(this.tableData[item], 'itemType', this.tableData[item].typeno)
|
|
|
- // this.$set(this.tableData[item], 'orderQuantity', 1)
|
|
|
- this.$set(this.tableData[item], 'actualQuantity', 0)
|
|
|
- this.$set(this.tableData[item], 'shopQuality', 0)
|
|
|
- this.$set(this.tableData[item], 'invoiceWeight', this.tableData[item].cartonWeight)
|
|
|
- this.$set(this.tableData[item], 'inputMold', 0)
|
|
|
- this.tableData[item].amount = 0
|
|
|
+ this.tableData[item].priceCategory = this.tableData[item].goodsTypeName;
|
|
|
+ this.tableData[item].storageQuantity = res.data.data;
|
|
|
+ delete this.tableData[item].goodsTypeName;
|
|
|
+ this.tableData[item].itemId = this.tableData[item].id;
|
|
|
+ this.$set(this.tableData[item], 'corpName', this.tableData[item].corpName);
|
|
|
+ this.$set(this.tableData[item], 'itemType', this.tableData[item].typeno);
|
|
|
+ // this.$set(this.tableData[item], 'orderQuantity', 1);
|
|
|
+ this.$set(this.tableData[item], 'actualQuantity', 0);
|
|
|
+ this.$set(this.tableData[item], 'shopQuality', 0);
|
|
|
+ this.$set(this.tableData[item], 'invoiceWeight', this.tableData[item].cartonWeight);
|
|
|
+ this.$set(this.tableData[item], 'inputMold', 0);
|
|
|
+ this.$set(this.tableData[item], 'priceType', this.tableData[item].policyName);
|
|
|
+ this.tableData[item].amount = 0;
|
|
|
if (this.goodsActives == "goods") {
|
|
|
this.$set(this.tableData[item], 'goodType', 0)
|
|
|
} else {
|