Browse Source

修复已知bug

dev-xx
马远东 6 months ago
parent
commit
b68d573cd7
  1. 36
      src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue
  2. 8
      src/views/distribution/turndelivery/deliveryDiscuss.vue

36
src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue

@ -390,10 +390,16 @@
</div> </div>
<div> <div>
<el-icon @click="Isfullscreen"><FullScreen /></el-icon> <el-icon @click="Isfullscreen"><FullScreen /></el-icon>
<el-icon @click="dialogExpandconfiguration=false"><Close /></el-icon> <el-icon @click="dialogExpandconfiguration = false"><Close /></el-icon>
</div> </div>
</div> </div>
</template> </template>
<div>
<span
>当前仓库:<b>{{ dataRwo.name }}</b></span
>
</div>
<hr />
<el-form <el-form
v-loading="Expandconfigurationloading" v-loading="Expandconfigurationloading"
element-loading-text="Loading..." element-loading-text="Loading..."
@ -414,6 +420,19 @@
/> />
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="是否自动释放">
<el-select
v-model="Expandconfigurationform.isAutoRelease"
placeholder="请选择是否自动释放"
>
<el-option
v-for="item in Compulsoryoptions"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
</el-form> </el-form>
<template #footer> <template #footer>
<div class="dialog-footer"> <div class="dialog-footer">
@ -1025,24 +1044,30 @@ const Expandconfiguration = async row => {
}); });
return; return;
} }
dataRwo.value = row;
console.log(dataRwo.value, ' dataRwo.value');
console.log('扩展配置'); console.log('扩展配置');
try { try {
let data = { let data = {
warehouseId: row.id, warehouseId: row.id,
}; };
details.loadingObj.list = true; //
let _res = await $_warehouseConfig(data); let _res = await $_warehouseConfig(data);
if (_res.data.code == 200) { if (_res.data.code == 200) {
const { id, isStrictLoading } = _res.data.data; const { id, isStrictLoading, isAutoRelease } = _res.data.data;
dialogExpandconfiguration.value = true; dialogExpandconfiguration.value = true;
Expandconfigurationform.value.id = id; //id let form = Expandconfigurationform.value;
Expandconfigurationform.value.isStrictLoading = isStrictLoading; // form.id = id; //id
form.isStrictLoading = isStrictLoading; //
form.isAutoRelease = isAutoRelease; //
} }
console.log(_res, '_res'); console.log(_res, '_res');
} catch (err) { } catch (err) {
console.log(err); console.log(err);
} finally { } finally {
details.loadingObj.list = false;
} }
}; };
// //
@ -1255,6 +1280,7 @@ const newlyaddSubmit = () => {
} }
} }
.el_Expandconfiguration { .el_Expandconfiguration {
display: flex;
.el-form-item { .el-form-item {
flex-direction: column; flex-direction: column;
width: 20%; width: 20%;

8
src/views/distribution/turndelivery/deliveryDiscuss.vue

@ -555,6 +555,7 @@
v-if="!QuantityEntryStatus" v-if="!QuantityEntryStatus"
size="small" size="small"
v-model="scope.row.number" v-model="scope.row.number"
:value-on-clear="0"
@change="isZeroNumber(scope.row)" @change="isZeroNumber(scope.row)"
/> />
<el-input-number <el-input-number
@ -564,6 +565,7 @@
:min="0" :min="0"
v-model="scope.row.reservationNum" v-model="scope.row.reservationNum"
@change="isZeroNumber(scope.row)" @change="isZeroNumber(scope.row)"
:value-on-clear="0"
/> />
</template> </template>
</el-table-column> </el-table-column>
@ -1375,6 +1377,9 @@ const submit = () => {
// //
dataInfo.value = removeDuplicates(dataInfo.value); dataInfo.value = removeDuplicates(dataInfo.value);
dataInfo.value.forEach(item=>{
item.Plannedquantity = item.reservationNum
})
console.log(dataInfo.value, ' dataInfo.value'); console.log(dataInfo.value, ' dataInfo.value');
// //
@ -1532,7 +1537,7 @@ const MaxSUM = computed(() => {
// let max = dataInfo.value[dataId.value].handQuantity - sum; // let max = dataInfo.value[dataId.value].handQuantity - sum;
console.log(dataId.value, 'dataId.value'); console.log(dataId.value, 'dataId.value');
console.log(dataInfo.value, ' dataInfo.value['); console.log(dataInfo.value, ' dataInfo.value[');
let max = dataInfo.value[dataId.value].reservationNum; let max = dataInfo.value[dataId.value].Plannedquantity;
return max; return max;
}); });
const toggleSelection = options => { const toggleSelection = options => {
@ -1713,7 +1718,6 @@ const Entering = val => {
// //
const QuantityEntry = async val => { const QuantityEntry = async val => {
console.log(dataInfo.value, 'dataInfo.value'); console.log(dataInfo.value, 'dataInfo.value');
dataId.value = findIndexById(val.id); // dataId.value = findIndexById(val.id); //
editLoading.value = true; editLoading.value = true;
// //

Loading…
Cancel
Save