Commit 3f2761bd by 王昆

gsb

parent aaa393d8
......@@ -18,6 +18,49 @@ class LaoActionApi extends APIBase {
this.vcodePrev = "lwb_vcode_";
this.testPhones = ['13691046554', '13333333333'];
this.restClient = system.getObject("util.restClient");
this.companyConfig = {
yd: {
signCompanyIds: [10173],
payCompanyIds: ['1152185172836229121', '1152186076306087937', '1165922409285480450', '1169516233595670529', '1174219506669584386', '1197064800073707522', '1199605424102690818'],
compantInfo: {
companyName: "上海韵达货运有限公司",
taxType: "一般纳税人",
contactName: "陈梁",
contactEmail: "chenliang8725@yundasys.com",
contactAddr: "上海市青浦区赵巷镇盈港东路6679号",
bankAccount: "上海韵达货运有限公司",
openBank: "邮政储蓄银行青浦支行",
bankno: "100360752790012735",
sign_body: "舟山兰和科技有限公司",
signBeginTime: "2019-08-26",
signEndTime: "2020-08-26",
}
},
tfb: {
signCompanyIds: [11410],
payCompanyIds: ['1187270470698082306', '1187272600083308546', '1187274198010056705', '1202100969987661826'],
compantInfo: {
companyName: "杭州淘粉吧网络技术股份有限公司",
taxType: "一般纳税人",
contactName: "王萍",
contactEmail: "wangping@taofen8.com",
contactAddr: "浙江省杭州市西湖区西斗门路9号福地创业园1号楼2楼",
bankAccount: "杭州淘粉吧网络技术股份有限公司",
openBank: "杭州银行学院路支行",
bankno: "3301040160000822687",
sign_body: "舟山兰和科技有限公司",
signBeginTime: "2019-10-24",
signEndTime: "2020-10-24",
}
}
}
this.userConfig = {
29: this.companyConfig.yd,
30: this.companyConfig.tfb
}
}
async test(pobj, query) {
......@@ -800,6 +843,9 @@ class LaoActionApi extends APIBase {
// 工作量确认单
async paramXlsx(obj) {
if(!obj.userId) {
return system.getResult(null, "用户未登录");
}
try {
var rs = await this.workloadSve.paramXlsx(obj.userId, obj.ossUrl);
if (rs.code == 0) {
......@@ -814,6 +860,10 @@ class LaoActionApi extends APIBase {
// 列表
async workLoadPage(obj) {
if(!obj.userId) {
return system.getResult(null, "用户未登录");
}
try {
obj.status = 0;
var rs = await this.workloadSve.pageByCondition(obj);
......@@ -825,6 +875,10 @@ class LaoActionApi extends APIBase {
}
async workLoadHistoryInfo(obj) {
if(!obj.userId) {
return system.getResult(null, "用户未登录");
}
try {
var rs = await this.workloadSve.historyInfo(obj);
return system.getResultSuccess(rs);
......@@ -836,6 +890,10 @@ class LaoActionApi extends APIBase {
// 确认/全部
async workloadConfirm(obj) {
if(!obj.userId) {
return system.getResult(null, "用户未登录");
}
try {
var rs = await this.workloadSve.workloadConfirm(obj);
return system.getResultSuccess(rs);
......@@ -846,6 +904,10 @@ class LaoActionApi extends APIBase {
}
async workloadTotal(obj) {
if(!obj.userId) {
return system.getResult(null, "用户未登录");
}
try {
obj.pageSize = 1;
obj.status = 1;
......@@ -863,6 +925,10 @@ class LaoActionApi extends APIBase {
// 确认列表
async workloadHistory(obj) {
if(!obj.userId) {
return system.getResult(null, "用户未登录");
}
try {
obj.status = 0;
var rs = await this.workloadSve.historyPage(obj);
......@@ -874,22 +940,13 @@ class LaoActionApi extends APIBase {
}
// 企业信息,家属拒
async companyInfo() {
async companyInfo(qobj) {
try {
let companyInfo = {
companyName: "上海韵达货运有限公司",
taxType: "一般纳税人",
contactName: "陈梁",
contactEmail: "chenliang8725@yundasys.com",
contactAddr: "上海市青浦区赵巷镇盈港东路6679号",
bankAccount: "上海韵达货运有限公司",
openBank: "邮政储蓄银行青浦支行",
bankno: "100360752790012735",
sign_body: "舟山兰和科技有限公司",
signBeginTime: "2019-08-26",
signEndTime: "2020-08-26",
};
return system.getResultSuccess(companyInfo);
let config = this.userConfig[qobj.userId];
if(!config) {
return system.getResultSuccess({});
}
return system.getResultSuccess(config.companyInfo);
} catch (e) {
console.log(e);
return system.getErrResult2("您的网络不稳, 请稍后重试")
......
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