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>
<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>
</template>
<div>
<span
>当前仓库:<b>{{ dataRwo.name }}</b></span
>
</div>
<hr />
<el-form
v-loading="Expandconfigurationloading"
element-loading-text="Loading..."
@ -414,6 +420,19 @@
/>
</el-select>
</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>
<template #footer>
<div class="dialog-footer">
@ -1025,24 +1044,30 @@ const Expandconfiguration = async row => {
});
return;
}
dataRwo.value = row;
console.log(dataRwo.value, ' dataRwo.value');
console.log('扩展配置');
try {
let data = {
warehouseId: row.id,
};
details.loadingObj.list = true; //
let _res = await $_warehouseConfig(data);
if (_res.data.code == 200) {
const { id, isStrictLoading } = _res.data.data;
const { id, isStrictLoading, isAutoRelease } = _res.data.data;
dialogExpandconfiguration.value = true;
Expandconfigurationform.value.id = id; //id
Expandconfigurationform.value.isStrictLoading = isStrictLoading; //
let form = Expandconfigurationform.value;
form.id = id; //id
form.isStrictLoading = isStrictLoading; //
form.isAutoRelease = isAutoRelease; //
}
console.log(_res, '_res');
} catch (err) {
console.log(err);
} finally {
details.loadingObj.list = false;
}
};
//
@ -1255,6 +1280,7 @@ const newlyaddSubmit = () => {
}
}
.el_Expandconfiguration {
display: flex;
.el-form-item {
flex-direction: column;
width: 20%;

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

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

Loading…
Cancel
Save