|
|
|
@ -32,10 +32,13 @@
|
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="时  段:" prop="deliveryAddress" label-width="100px"> |
|
|
|
|
<el-radio-group v-model="form.periodOfTime"> |
|
|
|
|
<el-radio v-for="item in this.periodOfTimeData" :label="item.dictValue" |
|
|
|
|
:value="item.dictKey"></el-radio> |
|
|
|
|
<el-radio-group v-model="form.periodOfTime" v-for="item in this.periodOfTimeData"> |
|
|
|
|
<el-radio |
|
|
|
|
|
|
|
|
|
:label="item.dictKey" |
|
|
|
|
:value="item.dictKey">{{item.dictValue}} </el-radio> |
|
|
|
|
</el-radio-group> |
|
|
|
|
<!-- :label="item.dictValue"--> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
|
|
|
|
@ -50,9 +53,10 @@
|
|
|
|
|
|
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="配送类型:" prop="serveType" label-width="100px"> |
|
|
|
|
<el-radio-group v-model="form.deliveryType"> |
|
|
|
|
<el-radio v-for="item in this.deliveryTypeData" :label="item.dictValue" |
|
|
|
|
:value="item.dictKey"></el-radio> |
|
|
|
|
<el-radio-group v-model="form.deliveryType" v-for="item in this.deliveryTypeData"> |
|
|
|
|
<el-radio |
|
|
|
|
:label="item.dictKey" |
|
|
|
|
:value="item.dictKey">{{item.dictValue}} </el-radio> |
|
|
|
|
</el-radio-group> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
@ -66,15 +70,15 @@
|
|
|
|
|
type="textarea" |
|
|
|
|
:rows="2" |
|
|
|
|
placeholder="请输入内容" |
|
|
|
|
v-model="form.textarea"> |
|
|
|
|
v-model="form.remarks"> |
|
|
|
|
</el-input> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="配送方式:" prop="serveType" label-width="100px"> |
|
|
|
|
<el-radio-group v-model="form.deliveryWay"> |
|
|
|
|
<el-radio v-for="item in this.deliveryWayData" :label="item.dictValue" |
|
|
|
|
:value="item.dictKey"></el-radio> |
|
|
|
|
<el-radio-group v-model="form.deliveryWay" v-for="item in this.deliveryWayData" > |
|
|
|
|
<el-radio :label="item.dictKey" |
|
|
|
|
:value="item.dictKey">{{item.dictValue}} </el-radio> |
|
|
|
|
</el-radio-group> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
@ -92,9 +96,9 @@
|
|
|
|
|
<el-col :span="10"> |
|
|
|
|
<el-form-item label="服务类型:" prop="serveType" label-width="100px"> |
|
|
|
|
<!-- <el-input v-model="form.serveType" clearable placeholder="请选择服务类型"/>--> |
|
|
|
|
<el-checkbox-group v-model="serveType"> |
|
|
|
|
<el-checkbox v-for="item in this.addvalueServeTypeData" :label="item.dictValue" |
|
|
|
|
:value="item.dictKey"></el-checkbox> |
|
|
|
|
<el-checkbox-group v-model="serveType" v-for="item in this.addvalueServeTypeData"> |
|
|
|
|
<el-checkbox :label="item.dictKey" |
|
|
|
|
:value="item.dictKey">{{item.dictValue}} </el-checkbox> |
|
|
|
|
</el-checkbox-group> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-col> |
|
|
|
@ -644,7 +648,7 @@
|
|
|
|
|
let inventoryList = []; |
|
|
|
|
let stockArticleList = []; |
|
|
|
|
this.orderData.forEach(item => { |
|
|
|
|
if (item.number > item.handQuantity || !item.number) { |
|
|
|
|
if (item.reservationNum > item.handQuantity || !item.reservationNum) { |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'warning', |
|
|
|
|
message: '请输入' + item.orderSelfNumbering + '正确数量!' |
|
|
|
@ -652,23 +656,21 @@
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
orderIds.push(item.id); |
|
|
|
|
item.reservationNum = item.number; |
|
|
|
|
item.reservationNum = item.reservationNum; |
|
|
|
|
stockArticleList.push(item); |
|
|
|
|
}); |
|
|
|
|
this.inventoryData.forEach(item => { |
|
|
|
|
if (!item.number || item.number > item.quantityStock) { |
|
|
|
|
if (!item.reservationNum || item.reservationNum > item.quantityStock) { |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'warning', |
|
|
|
|
message: '请输入' + item.orderSelfNumbering + '正确数量!' |
|
|
|
|
}); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
item.reservationNum = item.number; |
|
|
|
|
item.reservationNum = item.reservationNum; |
|
|
|
|
inventoryIds.push(item.id); |
|
|
|
|
inventoryList.push(item); |
|
|
|
|
}); |
|
|
|
|
console.log('>>>>>>>>>>>', this.inventoryData); |
|
|
|
|
console.log('>>>>>>>>>>>', this.orderData); |
|
|
|
|
orderIds.join(','); |
|
|
|
|
inventoryIds.join(','); |
|
|
|
|
this.form.stockArticleIds = orderIds.toString(); |
|
|
|
@ -690,20 +692,19 @@
|
|
|
|
|
this.form.periodOfTime = item.dictKey; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
let a = []; |
|
|
|
|
this.addvalueServeTypeData.forEach(item => { |
|
|
|
|
this.serveType.forEach(type => { |
|
|
|
|
if (type === item.dictValue) { |
|
|
|
|
a.push(item.dictKey); |
|
|
|
|
// this.form.serveType=item.dictKey; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
this.form.serveType = a.toString(); |
|
|
|
|
// let a = []; |
|
|
|
|
// this.addvalueServeTypeData.forEach(item => { |
|
|
|
|
// this.form.serveType.forEach(type => { |
|
|
|
|
// if (type === item.dictValue) { |
|
|
|
|
// a.push(item.dictKey); |
|
|
|
|
// // this.form.serveType=item.dictKey; |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }); |
|
|
|
|
this.form.serveType = this.serveType.join(",") |
|
|
|
|
console.log('^^^^^^^^^^', this.form); |
|
|
|
|
add(this.form).then(() => { |
|
|
|
|
this.box = false; |
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.$router.go(-1); |
|
|
|
|
this.$message({ |
|
|
|
|
type: 'success', |
|
|
|
@ -792,7 +793,6 @@
|
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
if (this.orderData.length > 0) { |
|
|
|
|
|
|
|
|
|
this.selectionList.some(i => { |
|
|
|
|
console.log('asdgfasdv', i); |
|
|
|
|
let a = this.orderData.filter((ele) => ele.customerName != i.customerName || ele.customerTelephone != i.customerTelephone || ele.customerAddress != i.customerAddress).length >= 1; |
|
|
|
@ -869,16 +869,23 @@
|
|
|
|
|
} |
|
|
|
|
if (this.reservationId) { |
|
|
|
|
getReservationInfo(this.reservationId).then(res => { |
|
|
|
|
this.form = res.data.data; |
|
|
|
|
this.orderData = res.data.data.stockArticleList; |
|
|
|
|
this.inventoryData = res.data.data.inventoryList; |
|
|
|
|
console.log(res.data.data); |
|
|
|
|
const reservation = res.data.data; |
|
|
|
|
this.orderData = reservation.stockArticleList; |
|
|
|
|
this.inventoryData = reservation.inventoryList; |
|
|
|
|
this.form.deliveryType = reservation.deliveryType; |
|
|
|
|
this.form.periodOfTime = reservation.periodOfTime; |
|
|
|
|
this.form.periodOfTime = reservation.periodOfTime; |
|
|
|
|
if (reservation.serveType){ |
|
|
|
|
this.serveType = Array.from(reservation.serveType) |
|
|
|
|
} |
|
|
|
|
this.form = reservation; |
|
|
|
|
console.log("<<<<<<<<<<<<<<",res.data.data); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
getInventoryList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { |
|
|
|
|
const data = res.data.data; |
|
|
|
|
this.page.total = data.total; |
|
|
|
|
this.inventoryInfo = data.records; |
|
|
|
|
const inventoryList = res.data.data; |
|
|
|
|
this.page.total = inventoryList.total; |
|
|
|
|
this.inventoryInfo = inventoryList.records; |
|
|
|
|
this.loading = false; |
|
|
|
|
this.selectionClear(); |
|
|
|
|
}); |
|
|
|
|