Commit 36c46cf3 authored by youjie's avatar youjie

no message

parent c821d049
......@@ -411,13 +411,21 @@
cancelButtonText: `取消`,
type: 'warning'
}).then(() => {
that.loading = true;
var nMsg = {
TCIDs: that.CurrentOutItem.TCIDs,
PayType: that.PayType,
uid: that.getLocalStorage().EmployeeId,
FinanceType: this.FinanceTypes
};
that.loading = true;
that.apipost("dmcstatistics_post_CheckShopDetailsDMCRate", nMsg, res => {
if (res.data.resultCode == 1) {
if (res.data.result == 0) {
// that.Error("请检查汇率有为0的数据,请先在【操作】里面修改汇率再生成财务单据!");
that.Error(res.data.errorMessage);
that.loading = false;
that.isShowFinaceDailog = false;
} else {
let fileName = "生成[" + that.CurrentOutItem.NewCombinationNum + "]购物店数据.xls";
that.GetLocalFile("dmcstatistics_post_ShopCreateBillAndExport", nMsg, fileName,
res => {
......@@ -426,6 +434,10 @@
that.Success("导入成功!");
that.getList();
});
}
}
})
}).catch(() => {})
this.Confirm('是否生成财务单据?', function () {
......
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