|
|
@@ -153,7 +153,7 @@
|
|
|
|
|
|
<div style="margin-top: 20px">
|
|
|
<add
|
|
|
- v-if="taskDefinitionKey == 'warehouseManager'&&form.id"
|
|
|
+ v-if="taskDefinitionKey == 'warehouseManager' && form.id"
|
|
|
ref="add"
|
|
|
:form="form"
|
|
|
:sourceBizNo="form.returnNo"
|
|
|
@@ -179,7 +179,7 @@
|
|
|
} from '@/api/bpm/components/saleManage/saleorder';
|
|
|
import { getFile } from '@/api/system/file';
|
|
|
import dictMixins from '@/mixins/dictMixins';
|
|
|
- import { reviewStatusEnum } from '@/enum/dict';
|
|
|
+ import { reviewStatusEnum ,pricingWayList} from '@/enum/dict';
|
|
|
import inventoryTabledetail from '@/BIZComponents/inventoryTableDetails.vue';
|
|
|
import inventoryTable from '@/BIZComponents/inventoryTable.vue';
|
|
|
// import fileMain from '@/components/addDoc/index.vue';
|
|
|
@@ -246,6 +246,17 @@
|
|
|
slot: 'productCategoryName',
|
|
|
align: 'center'
|
|
|
},
|
|
|
+ {
|
|
|
+ width: 140,
|
|
|
+ prop: 'pricingWay',
|
|
|
+ label: '计价方式',
|
|
|
+ align: 'center',
|
|
|
+ fixed: 'left',
|
|
|
+ formatter: (row, column) => {
|
|
|
+ return pricingWayList.find((item) => item.id == row.pricingWay)
|
|
|
+ ?.name;
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
width: 160,
|
|
|
prop: 'batchNo',
|
|
|
@@ -301,8 +312,7 @@
|
|
|
label: '图号/件号',
|
|
|
showOverflowTooltip: true
|
|
|
},
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
{
|
|
|
width: 120,
|
|
|
prop: 'customerMark',
|
|
|
@@ -459,7 +469,7 @@
|
|
|
slot: 'discountTotalPrice',
|
|
|
align: 'center'
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
{
|
|
|
width: 200,
|
|
|
prop: 'guaranteePeriod',
|
|
|
@@ -547,6 +557,17 @@
|
|
|
showOverflowTooltip: true,
|
|
|
align: 'center'
|
|
|
},
|
|
|
+ {
|
|
|
+ width: 140,
|
|
|
+ prop: 'pricingWay',
|
|
|
+ label: '计价方式',
|
|
|
+ align: 'center',
|
|
|
+ fixed: 'left',
|
|
|
+ formatter: (row, column) => {
|
|
|
+ return pricingWayList.find((item) => item.id == row.pricingWay)
|
|
|
+ ?.name;
|
|
|
+ }
|
|
|
+ },
|
|
|
{
|
|
|
minWidth: 120,
|
|
|
prop: 'productName',
|
|
|
@@ -758,13 +779,14 @@
|
|
|
}
|
|
|
|
|
|
if (this.taskDefinitionKey == 'warehouseManager') {
|
|
|
- this.form.returnStorageData = await this.$refs.add.getReturnStorage();
|
|
|
+ this.form.returnStorageData =
|
|
|
+ await this.$refs.add.getReturnStorage();
|
|
|
}
|
|
|
|
|
|
let commitData = Object.assign({}, this.form, {
|
|
|
redressProductList
|
|
|
});
|
|
|
-
|
|
|
+
|
|
|
return commitData;
|
|
|
} catch (error) {
|
|
|
console.log(error);
|