Commit 8e35ce4f authored by Mac's avatar Mac

1

parent c3a19d58
...@@ -31,17 +31,34 @@ ...@@ -31,17 +31,34 @@
.printManage .el-button--small { .printManage .el-button--small {
padding: 9px 25px; padding: 9px 25px;
} }
.printManage .print_item_d{
border: 5px solid #000;
padding: 10px;
cursor: pointer;
margin-bottom: 20px;
}
.printManage .print_item2_d{
border: 5px solid #F56C6C;
padding: 10px;
cursor: pointer;
margin-bottom: 20px;
}
.printManage .print_item{ .printManage .print_item{
border: 5px solid #000; border: 5px solid #000;
padding: 10px; padding: 10px;
cursor: pointer; cursor: pointer;
margin-bottom: 20px; margin-bottom: 20px;
width: 210px;
} }
.printManage .print_item2{ .printManage .print_item2{
border: 5px solid #F56C6C; border: 5px solid #F56C6C;
padding: 10px; padding: 10px;
cursor: pointer; cursor: pointer;
margin-bottom: 20px; margin-bottom: 20px;
width: 210px;
} }
.printManage .print_item_c_r_s{ .printManage .print_item_c_r_s{
display: inline-block; display: inline-block;
...@@ -66,6 +83,7 @@ ...@@ -66,6 +83,7 @@
</div> </div>
<div class="mimitBody" v-loading="loading" <div class="mimitBody" v-loading="loading"
element-loading-text="拼命打印中..." > element-loading-text="拼命打印中..." >
<div style="width: 100%;text-align: center">首次加载耗时较长、请耐心等待....</div>
<div> <div>
<el-checkbox v-model="allchecked" @change="allcheckbtn">全选</el-checkbox> <el-checkbox v-model="allchecked" @change="allcheckbtn">全选</el-checkbox>
<span style='margin-left:10px'>入库批次</span> <span style='margin-left:10px'>入库批次</span>
...@@ -87,7 +105,7 @@ ...@@ -87,7 +105,7 @@
<el-row :gutter="30"> <el-row :gutter="30">
<el-col :span="6" v-for="(item,index) in i.list" :key="index" > <el-col :span="6" v-for="(item,index) in i.list" :key="index" >
<div :class="item.Ischeck ==true? 'print_item2':'print_item'" @click="gocheke(j,index)"> <div :class="item.Ischeck ==true? 'print_item2_d':'print_item_d'" @click="gocheke(j,index)">
<div>{{item.GoodsName}}</div> <div>{{item.GoodsName}}</div>
<div> <div>
<el-row :gutter="10"> <el-row :gutter="10">
...@@ -96,9 +114,12 @@ ...@@ -96,9 +114,12 @@
</el-col> </el-col>
<el-col :span="12" style='font-size:12px;'> <el-col :span="12" style='font-size:12px;'>
<div style='margin-top:20px'> <div style='margin-top:20px'>
<span class="print_item_c_r_s">序号</span> <span class="print_item_c_r_s">序号:</span>
<span>{{item.xuhao}}</span> <span>{{item.xuhao}}</span>
</div> </div>
<div style='margin-top:0px'>
<span>{{item.ExpirationDate}}</span>
</div>
<div style='margin-top:5px'> <div style='margin-top:5px'>
<span class="print_item_c_r_s">仓库名称:</span> <span class="print_item_c_r_s">仓库名称:</span>
<span>{{item.WareHouseName}}</span> <span>{{item.WareHouseName}}</span>
...@@ -128,7 +149,7 @@ ...@@ -128,7 +149,7 @@
</div> </div>
<el-row :gutter="30"> <el-row :gutter="30">
<el-col :span="3" v-for="(item,index) in i.list" :key="index" > <el-col :span="4" v-for="(item,index) in i.list" :key="index" >
<div :class="item.Ischeck ==true? 'print_item2':'print_item'" @click="gocheke(j,index)"> <div :class="item.Ischeck ==true? 'print_item2':'print_item'" @click="gocheke(j,index)">
<!-- <div style=" width:100%; height:20px;text-overflow: ellipsis; display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;overflow: hidden;">{{item.GoodsName}}</div> <!-- <div style=" width:100%; height:20px;text-overflow: ellipsis; display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 1;overflow: hidden;">{{item.GoodsName}}</div>
<div> <div>
...@@ -138,11 +159,14 @@ ...@@ -138,11 +159,14 @@
<el-col :span="12"> <el-col :span="12">
<img :src="domainManager().DomainUrl+item.QRImage" alt="" style="width:100%"> <img :src="domainManager().DomainUrl+item.QRImage" alt="" style="width:100%">
</el-col> </el-col>
<el-col :span="12" style='font-size:12px;'> <el-col :span="12" style='font-size:11px;'>
<div style='margin-top:5px'> <div style='margin-top:5px'>
<span>序号</span> <span>序号:</span>
<span>{{item.xuhao}}</span> <span>{{item.xuhao}}</span>
</div> </div>
<div style='margin-top:0px'>
<span>{{item.ExpirationDate}}</span>
</div>
<div style='margin-top:5px; width:100%; height:32px;text-overflow: ellipsis; display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;'> <div style='margin-top:5px; width:100%; height:32px;text-overflow: ellipsis; display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;'>
<span>{{item.GoodsName}}</span> <span>{{item.GoodsName}}</span>
</div> </div>
......
...@@ -78,12 +78,68 @@ ...@@ -78,12 +78,68 @@
<el-input v-model="scope.row.InStockNum" type="number" :min='0' <el-input v-model="scope.row.InStockNum" type="number" :min='0'
:max="scope.row.Number -(scope.row.StockInNum!=null?scope.row.StockInNum:0)" :max="scope.row.Number -(scope.row.StockInNum!=null?scope.row.StockInNum:0)"
:disabled="(scope.row.Number -(scope.row.StockInNum!=null?scope.row.StockInNum:0))==0? true:false" :disabled="(scope.row.Number -(scope.row.StockInNum!=null?scope.row.StockInNum:0))==0? true:false"
@input='validation(scope.row.Number -(scope.row.StockInNum!=null?scope.row.StockInNum:0),scope.row,$event)' @input='validation(scope.row.Number -(scope.row.StockInNum!=null?scope.row.StockInNum:0),scope.row,$event,scope.$index)'
placeholder="请输入"></el-input> placeholder="请输入"></el-input>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div style="margin-top: 10px">
入库商品 <span style="color: #666666">(如果入库数量改变下列的有效日期会全清空)</span>
</div>
<div v-for="(x,y) in Warehousinglist" :key="y">
<div style="display: flex;align-items: flex-start;justify-content: space-between;margin-top: 15px;" >
<div style="width: 50%;">{{x.name}}</div>
<div style="display: flex;align-items: flex-start;">
<el-date-picker
v-model="x.time"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择日期">
</el-date-picker>
<el-button @click="setupTime(y)" type="primary" size="small" style="margin-left: 15px" >设置日期</el-button>
</div> </div>
</div>
<el-table :data="x.list" border style="width: 100%;margin-Top:20px" @selection-change="handleSelectionChange($event,y)">
<el-table-column
type="selection"
width="55">
</el-table-column>
<el-table-column label="序号" width="60">
<template slot-scope="scope">
{{y+1}}-{{scope.$index+1}}
</template>
</el-table-column>
<el-table-column prop="ImageList" label="封面图" width="80" align='center'>
<template slot-scope="scope">
<img :src="scope.row.MaterialModel.ImageList[0]" alt="" style="width: 50px; height: 50px;">
</template>
</el-table-column>
<el-table-column prop="Name" label="商品名称" >
<template slot-scope="scope">
<span>{{scope.row.MaterialModel.Name}}</span>
</template>
</el-table-column>
<el-table-column prop="GoodsSpecificationList" label="规格" >
<template slot-scope="scope">
<span v-for="(x,y) in scope.row.MaterialModel.GoodsSpecificationList" :key="y">{{x}} <span v-if="scope.row.MaterialModel.GoodsSpecificationList.length !== y+1"> , </span></span>
</template>
</el-table-column>
<el-table-column prop="" label="有效时间" width="200">
<template slot-scope="scope">
<el-date-picker
v-model="scope.row.time"
type="date"
value-format="yyyy-MM-dd"
placeholder="选择日期">
</el-date-picker>
</template>
</el-table-column>
</el-table>
</div>
</div>
<el-button size="small" type="primary" @click="submitForm()" :disabled = 'ISoperation' :loading="rukuloading">入库</el-button <el-button size="small" type="primary" @click="submitForm()" :disabled = 'ISoperation' :loading="rukuloading">入库</el-button
> >
...@@ -97,6 +153,7 @@ export default { ...@@ -97,6 +153,7 @@ export default {
WareHouseId:0, WareHouseId:0,
ISoperation:false, ISoperation:false,
rukuloading:false, rukuloading:false,
Warehousinglist:[],
}; };
}, },
created() {}, created() {},
...@@ -107,8 +164,16 @@ export default { ...@@ -107,8 +164,16 @@ export default {
this.assetsApipost("/api/property/GetProcurementInfo", {ProcurementId:data.ID}, res => { this.assetsApipost("/api/property/GetProcurementInfo", {ProcurementId:data.ID}, res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
let data = res.data.data let data = res.data.data
data.DetailList.forEach(x => { data.DetailList.forEach((x,y) => {
x.InStockNum = 0 x.InStockNum = 0;
let obj = {
Id:y+1,
name:x.MaterialModel.Name,
list:[],
time:'',
multipleSelection:[]
}
this.Warehousinglist.push(obj)
}); });
this.Detaildata = data this.Detaildata = data
} else { } else {
...@@ -141,8 +206,32 @@ export default { ...@@ -141,8 +206,32 @@ export default {
}; };
msg.Id = this.Detaildata.Id; msg.Id = this.Detaildata.Id;
msg.WareHouseId = this.Detaildata.WareHouseId; msg.WareHouseId = this.Detaildata.WareHouseId;
let showtis = false let showtime=false;
this.Detaildata.DetailList.forEach(x=>{ let zonglist = [];
this.Warehousinglist.map((x,xi)=>{
if(x.list.length>0){
let list = [];
x.list.map((j,ji)=>{
if(j.time==''){
showtime= true
}else{
let obj ={ExpirationDate:j.time}
list.push(obj)
}
})
let objlist ={ValidityList:list}
zonglist.push(objlist)
if(showtime==true){
this.Error(x.name+'的有效日期没选择,请选择');
return
}
}
})
if(showtime==true){
return
}
let showtis = false;
this.Detaildata.DetailList.forEach((x,y)=>{
if(x.InStockNum.length== 0){ if(x.InStockNum.length== 0){
showtis=true showtis=true
} }
...@@ -150,6 +239,8 @@ export default { ...@@ -150,6 +239,8 @@ export default {
obj.GoodsId = x.MaterialModel.GoodsId; obj.GoodsId = x.MaterialModel.GoodsId;
obj.SpecificationKey = x.MaterialModel.SpecificationKey; obj.SpecificationKey = x.MaterialModel.SpecificationKey;
obj.InStockNum = x.InStockNum; obj.InStockNum = x.InStockNum;
//2021-4-1加的日期列表
obj.ValidityList = zonglist[y].ValidityList
msg.DetailList.push(obj) msg.DetailList.push(obj)
}) })
if(showtis == true){ if(showtis == true){
...@@ -169,7 +260,7 @@ export default { ...@@ -169,7 +260,7 @@ export default {
}) })
}, },
validation(v,row,value){ validation(v,row,value,index){
let that = this let that = this
if(value>v){ if(value>v){
...@@ -179,7 +270,48 @@ export default { ...@@ -179,7 +270,48 @@ export default {
x.InStockNum=0 x.InStockNum=0
} }
}) })
}else{
this.Warehousinglist[index].list=[]
for(let i= 0;i<value;i++){
let obj ={
CostMoney:row.CostMoney,
Id:row.Id,
InStockNum:row.InStockNum,
MaterialId:row.MaterialId,
MaterialModel:row.MaterialModel,
Number:row.Number,
StockInNum:row.StockInNum,
time:'',
xuhao:i+1,
} }
this.Warehousinglist[index].list.push(obj)
}
}
},
handleSelectionChange(val,y){
this.Warehousinglist[y].multipleSelection= val
},
setupTime(y){//全体设置
if(this.Warehousinglist[y].multipleSelection.length==0){
this.Error('请选择要设置的对象');
return
}
if(this.Warehousinglist[y].time==''){
this.Error('请选择有效日期');
return
}
this.Warehousinglist[y].multipleSelection.map(x=>{
this.Warehousinglist[y].list.map((j,yi)=>{
if(x.xuhao==j.xuhao){
this.Warehousinglist[y].list[yi].time= this.Warehousinglist[y].time;
return
}
})
})
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment