Browse Source

Merge remote-tracking branch 'origin/dev' into dev

fix_bug_pro20231227
caoyizhong 2 years ago
parent
commit
2ec8ef2ee3
  1. 22
      src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue
  2. 3
      src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView.vue

22
src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelf.vue

@ -768,6 +768,8 @@ export default {
getGoodsAreaoptionList().then(res=>{ getGoodsAreaoptionList().then(res=>{
const data = res.data.data; const data = res.data.data;
this.areaoption = data this.areaoption = data
console.log("this.areaoption>>>>>>>>>>>>>",this.areaoption
);
}) })
getTemplateData("9").then(res=>{ getTemplateData("9").then(res=>{
console.log(res.data.data); console.log(res.data.data);
@ -925,16 +927,16 @@ export default {
if (!this.form.id) { if (!this.form.id) {
console.log("this.form>>>>>>>", this.form); console.log("this.form>>>>>>>", this.form);
console.log("this.optioner>>>>>>>", this.optioner); console.log("this.optioner>>>>>>>", this.optioner);
if (!!this.form.goodsAreaId && this.form.goodsAreaId.length > 1){ // if (!!this.form.goodsAreaId && this.form.goodsAreaId.length > 1){
//ID // //ID
let a = this.form.goodsAreaId; // let a = this.form.goodsAreaId;
this.form.goodsAreaId = a[a.length - 1]; // this.form.goodsAreaId = a[a.length - 1];
} // }
this.optioner.map(item => { // this.optioner.map(item => {
if (item.id == this.form.goodsAreaId) { // if (item.id == this.form.goodsAreaId) {
this.form.goodsAreaName = item.headline // this.form.goodsAreaName = item.headline
} // }
}) // })
add(this.form).then(() => { add(this.form).then(() => {
this.box = false; this.box = false;
this.onLoad(this.page); this.onLoad(this.page);

3
src/views/basicdata/warehouse/goodsShelf/basicdataGoodsShelfView.vue

@ -524,6 +524,7 @@ function initpage() {
} }
function handleExportArea() { function handleExportArea() {
let id=details.arrlist[details.checkselect]?.id||0 let id=details.arrlist[details.checkselect]?.id||0
let name=details.arrlist[details.checkselect]?.name||''
if (id ===0){ if (id ===0){
proxy.$message({ proxy.$message({
type: "success", type: "success",
@ -543,7 +544,7 @@ function handleExportArea() {
}).then(() => { }).then(() => {
NProgress.start(); NProgress.start();
exportBlob(downloadUrl, values).then(res => { exportBlob(downloadUrl, values).then(res => {
downloadXls(res.data, `仓库${dateNow()}.xlsx`); downloadXls(res.data, name+`${dateNow()}.xlsx`);
NProgress.done(); NProgress.done();
}) })
}); });

Loading…
Cancel
Save