Commit 78844909 authored by 黄奎's avatar 黄奎

新增酒店统计全部下载

parent a203a272
...@@ -258,7 +258,9 @@ ...@@ -258,7 +258,9 @@
</li> </li>
<li style="margin-right:50px;"> <li style="margin-right:50px;">
<button class="normalBtn" type="button" @click="GetHoltelInventory()">{{$t('pub.searchBtn')}}</button> <button class="normalBtn" type="button" @click="GetHoltelInventory()">{{$t('pub.searchBtn')}}</button>
<input type="button" class="normalBtn" value="下载" @click="DownLoadHotelSalesBoard()" /> <input type="button" class="normalBtn" value="下载(单个酒店)" @click="DownLoadHotelSalesBoard()" />
<input type="button" class="normalBtn" value="下载(全部)" @click="DownLoadAllHotelSalesBoard()" />
</li> </li>
</ul> </ul>
</div> </div>
...@@ -335,7 +337,7 @@ ...@@ -335,7 +337,7 @@
loading: false, loading: false,
OutBranchId: -1, OutBranchId: -1,
//供应商编号 //供应商编号
Supplier:0, Supplier: 0,
}, },
//分公司列表 //分公司列表
companyList: [], companyList: [],
...@@ -358,7 +360,7 @@ ...@@ -358,7 +360,7 @@
cityList: [], cityList: [],
district: [], district: [],
//供应商列表 //供应商列表
SupplierList:[] SupplierList: []
}; };
}, },
methods: { methods: {
...@@ -546,7 +548,20 @@ ...@@ -546,7 +548,20 @@
this.Info("请选择要下载的酒店!"); this.Info("请选择要下载的酒店!");
} }
}, },
// 获取供应商 //全部下载
DownLoadAllHotelSalesBoard() {
this.msg.loading = true;
let qMsg = {
queryMsg: this.msg,
uid: this.getLocalStorage().EmployeeId
};
let fileName = "酒店统计" + this.$commonUtils.getCurrentDate() + ".xls";
this.GetLocalFile("hotel_get_downloadAllHotel", qMsg, fileName,
res => {
this.msg.loading = false;
});
},
// 获取供应商
initSupplier() { initSupplier() {
this.apipost("supplier_post_GetAllList", { this.apipost("supplier_post_GetAllList", {
Type: 1 Type: 1
......
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