fix:禅道51

This commit is contained in:
shijing 2025-08-18 09:42:55 +08:00
parent 38e29148a5
commit da61734445
2 changed files with 20 additions and 3 deletions

View File

@ -389,6 +389,7 @@ export default {
this.params.mio = this.mioId; this.params.mio = this.mioId;
this.apiObj = this.$API.inm.mioitem.list; this.apiObj = this.$API.inm.mioitem.list;
this.getMio(); this.getMio();
sessionStorage.removeItem('mioitemSelecObj');
}, },
methods: { methods: {
printSetting(){ printSetting(){

View File

@ -13,7 +13,7 @@
label-width="120px" label-width="120px"
> >
<el-row> <el-row>
<el-col> <el-col v-if="mTracking==20&&form.type == 'sale_out'&&project_code=='bxerp'">
<el-form-item label="大箱序号" prop="pack_index"> <el-form-item label="大箱序号" prop="pack_index">
<el-input-number precision="0" v-model="form.pack_index"></el-input-number>该小箱放在第几个大箱 <el-input-number precision="0" v-model="form.pack_index"></el-input-number>该小箱放在第几个大箱
</el-form-item> </el-form-item>
@ -289,7 +289,7 @@ export default {
material: [{required: true,message: "请选择所需产品",trigger: "blur"}], material: [{required: true,message: "请选择所需产品",trigger: "blur"}],
warehouse: [{required: true,message: "请选择仓库",trigger: "blur"}], warehouse: [{required: true,message: "请选择仓库",trigger: "blur"}],
}, },
selectObj:{}, selectObj:null,
showDigit:false, showDigit:false,
visible: false, visible: false,
isSaveing: false, isSaveing: false,
@ -322,6 +322,20 @@ export default {
this.url_code = url1.split('/')[3]; this.url_code = url1.split('/')[3];
let config_base = that.$TOOL.data.get("BASE_INFO").base; let config_base = that.$TOOL.data.get("BASE_INFO").base;
that.project_code = config_base.base_code; that.project_code = config_base.base_code;
// console.log('that.type',that.type);
if(that.type=='other_in'||that.type=='do_in'||that.type=='do_out'){
let mioitemSelecObj =JSON.parse(sessionStorage.getItem("mioitemSelecObj"));
// console.log('mioitemSelecObj',mioitemSelecObj);
if(mioitemSelecObj!==null){
that.selectObj = mioitemSelecObj;
that.form.material = that.selectObj.id;
that.form.unit = that.selectObj.unit;
that.form.unit_price = that.selectObj.unit_price;
that.form.batch = that.cate=='helpso'?that.selectObj.bin_number_main:'';
that.mTracking = that.selectObj.tracking;
that.getBatchOptions();
}
}
}, },
methods: { methods: {
init() { init() {
@ -481,7 +495,9 @@ export default {
}, },
selectMaterialChange() { selectMaterialChange() {
var that = this; var that = this;
console.log('that.selectObj',that.selectObj); if(that.selectObj.id!==undefined&&that.selectObj.id!==null){
sessionStorage.setItem("mioitemSelecObj",JSON.stringify(that.selectObj));
}
var type = this.form.type; var type = this.form.type;
that.form.material = that.selectObj.id; that.form.material = that.selectObj.id;
that.form.unit = that.selectObj.unit; that.form.unit = that.selectObj.unit;