登记卡打印

dev-scheduling
jinna 1 month ago
parent b96e37ac7c
commit aa82ddc2a8
  1. 6
      src/views/statisticalAnalysis/warehouseAnalysis/inventorySummary.vue

@ -623,7 +623,11 @@ export default {
this.$message.error('请先选择数据')
return
}
window.open(window.WARE_MATERIAL_STOCK+'?id='+this.selectionList.map(item => item.id).join(','));
if(this.selectionList.length > 1){
this.$message.error('请选择一条数据')
return
}
window.open(window.WARE_MATERIAL_STOCK+'?id='+this.selectionList[0].id);
// getPrint({id:this.selectionList[0].id}).then(res =>{
// console.log('res--------------',res)

Loading…
Cancel
Save