Commit 0934675b by v_vjyjiang

d

parent 1245482f
var system = require("../../../system");
let dS = system.getObject("service.bizchance.deliverybillSve");
dS.updateCostBySkuCode().then(r => {
console.log(r)
})
\ No newline at end of file
...@@ -10,7 +10,23 @@ class DeliverybillService extends ServiceBase { ...@@ -10,7 +10,23 @@ class DeliverybillService extends ServiceBase {
this.cacheDao = system.getObject("db.bizchance.cacheinfoDao"); this.cacheDao = system.getObject("db.bizchance.cacheinfoDao");
} }
async statBizDeliverySettleAmountBySp(settleStatus) { async updateCostBySkuCode () {
let bills = await this.dao.model.findAll()
bills.forEach(async b => {
//远程调用去查询成本按照skucode
let costqueryobj = await system.postJsonTypeReq("http://paas-service/api/common/product/findCostBySkuCode", {
"skucode": b.sku_code
}, "POST", { xappkey: "647a68c9- da01 - 40d3-9763 - 1ffa0f64cf3f" })
let rtn = costqueryobj.data
let cn = rtn.data.cost
console.log(cn, "....................................................................", b.sku_code)
b.cost_price = cn
await b.save()
})
return "ok"
}
async statBizDeliverySettleAmountBySp (settleStatus) {
let params = {} let params = {}
let where = settleStatus != "" ? `where settle_status='${settleStatus}'` : '' let where = settleStatus != "" ? `where settle_status='${settleStatus}'` : ''
...@@ -26,7 +42,7 @@ class DeliverybillService extends ServiceBase { ...@@ -26,7 +42,7 @@ class DeliverybillService extends ServiceBase {
let s = await this.dao.statGroupBy(params, null) let s = await this.dao.statGroupBy(params, null)
return s return s
} }
async statBizDeliveryCountBySp(deliverStatus, betweenTime) { async statBizDeliveryCountBySp (deliverStatus, betweenTime) {
let params = {} let params = {}
let where = deliverStatus != "" ? `where delivery_status='${deliverStatus}'` : '' let where = deliverStatus != "" ? `where delivery_status='${deliverStatus}'` : ''
if (deliverStatus == "handling") { if (deliverStatus == "handling") {
...@@ -47,7 +63,7 @@ class DeliverybillService extends ServiceBase { ...@@ -47,7 +63,7 @@ class DeliverybillService extends ServiceBase {
let s = await this.dao.statGroupBy(params, null) let s = await this.dao.statGroupBy(params, null)
return s return s
} }
async statBizDelivery(companyId, opath, username, userid, betweenTime) { async statBizDelivery (companyId, opath, username, userid, betweenTime) {
// 时间 筛选 // 时间 筛选
let andWhere = []; let andWhere = [];
if (betweenTime.length > 0) { if (betweenTime.length > 0) {
...@@ -125,7 +141,7 @@ class DeliverybillService extends ServiceBase { ...@@ -125,7 +141,7 @@ class DeliverybillService extends ServiceBase {
} }
//为租户自己给交付打标记,表示中台已经给予结算,自己记账用 //为租户自己给交付打标记,表示中台已经给予结算,自己记账用
//租户自己临时记录结算情况 //租户自己临时记录结算情况
async settleApplyForTacent(ids, uid, uname, spname, spid) { async settleApplyForTacent (ids, uid, uname, spname, spid) {
var self = this var self = this
return this.db.transaction(async function (t) { return this.db.transaction(async function (t) {
//先按照ids查询出交付单的合计服务成本 //先按照ids查询出交付单的合计服务成本
...@@ -161,7 +177,7 @@ class DeliverybillService extends ServiceBase { ...@@ -161,7 +177,7 @@ class DeliverybillService extends ServiceBase {
}); });
} }
async settleApply(ids, uid, uname, spname, spid) { async settleApply (ids, uid, uname, spname, spid) {
var self = this var self = this
return this.db.transaction(async function (t) { return this.db.transaction(async function (t) {
//先按照ids查询出交付单的合计服务成本 //先按照ids查询出交付单的合计服务成本
...@@ -190,30 +206,30 @@ class DeliverybillService extends ServiceBase { ...@@ -190,30 +206,30 @@ class DeliverybillService extends ServiceBase {
return newentity return newentity
}); });
} }
async findAndCountAll(obj) { async findAndCountAll (obj) {
var self = this; var self = this;
const apps = await self.dao.findAndCountAll(obj); const apps = await self.dao.findAndCountAll(obj);
return apps; return apps;
} }
async findInfoByDeliverCode(qobj) {//*根据交付单编号获取交付单详情*/ async findInfoByDeliverCode (qobj) {//*根据交付单编号获取交付单详情*/
return await this.dao.findInfoByDeliverCode(qobj); return await this.dao.findInfoByDeliverCode(qobj);
} }
async updateStatusByDeliverCode(qobj) {//* 根据交付单编号更新交付单状态 */ async updateStatusByDeliverCode (qobj) {//* 根据交付单编号更新交付单状态 */
var self = this; var self = this;
return self.db.transaction(async function (t) { return self.db.transaction(async function (t) {
return await self.dao.updateStatusByDeliverCode(qobj, t); return await self.dao.updateStatusByDeliverCode(qobj, t);
}); });
} }
/*更新业务员/交付员信息*/ /*更新业务员/交付员信息*/
async updateSalesmanInfoByDeliverCode(qobj){ async updateSalesmanInfoByDeliverCode (qobj) {
var self = this; var self = this;
return self.db.transaction(async function (t) { return self.db.transaction(async function (t) {
return await self.dao.updateSalesmanInfoByDeliverCode(qobj, t); return await self.dao.updateSalesmanInfoByDeliverCode(qobj, t);
}); });
} }
async updateInfoByDeliverCode(qobj) {//*更新交付单信息 */ async updateInfoByDeliverCode (qobj) {//*更新交付单信息 */
console.log("--------------------------------------------------------------------------------------------------------------------------------------"); console.log("--------------------------------------------------------------------------------------------------------------------------------------");
var self = this; var self = this;
return self.db.transaction(async function (t) { return self.db.transaction(async function (t) {
...@@ -221,14 +237,14 @@ class DeliverybillService extends ServiceBase { ...@@ -221,14 +237,14 @@ class DeliverybillService extends ServiceBase {
}); });
} }
async insertInfo(qobj) {//*插入交付单信息*/从队列取数据的时候用 async insertInfo (qobj) {//*插入交付单信息*/从队列取数据的时候用
var self = this; var self = this;
return self.db.transaction(async function (t) { return self.db.transaction(async function (t) {
return await self.dao.insertInfo(qobj, t); return await self.dao.insertInfo(qobj, t);
}); });
} }
async insertInfoall(pobj) {//*插入交付单信息,大事务*/从队列取数据的时候用 async insertInfoall (pobj) {//*插入交付单信息,大事务*/从队列取数据的时候用
var self = this; var self = this;
return await self.db.transaction(async function (t) { return await self.db.transaction(async function (t) {
var res = await self.dao.insertInfo(pobj);//插入交付单列表 var res = await self.dao.insertInfo(pobj);//插入交付单列表
......
...@@ -5,7 +5,7 @@ const request = require('request'); ...@@ -5,7 +5,7 @@ const request = require('request');
const cryptoJS = require('crypto-js'); const cryptoJS = require('crypto-js');
class System { class System {
static declare(ns) { static declare (ns) {
var ar = ns.split('.'); var ar = ns.split('.');
var root = System; var root = System;
for (var i = 0, len = ar.length; i < len; ++i) { for (var i = 0, len = ar.length; i < len; ++i) {
...@@ -18,7 +18,7 @@ class System { ...@@ -18,7 +18,7 @@ class System {
} }
} }
} }
static async delReq(url, qdata) { static async delReq (url, qdata) {
let rtn = {} let rtn = {}
let promise = new Promise(function (resv, rej) { let promise = new Promise(function (resv, rej) {
request.del({ request.del({
...@@ -41,7 +41,7 @@ class System { ...@@ -41,7 +41,7 @@ class System {
}) })
return promise; return promise;
} }
static async getReq(url, qdata) { static async getReq (url, qdata) {
let rtn = {} let rtn = {}
let promise = new Promise(function (resv, rej) { let promise = new Promise(function (resv, rej) {
request.get({ request.get({
...@@ -64,7 +64,7 @@ class System { ...@@ -64,7 +64,7 @@ class System {
}) })
return promise; return promise;
} }
static async postJsonTypeReq(url, data, md = "POST") { static async postJsonTypeReq (url, data, md = "POST", otherHeaders) {
let rtn = {} let rtn = {}
let promise = new Promise(function (resv, rej) { let promise = new Promise(function (resv, rej) {
request({ request({
...@@ -73,6 +73,7 @@ class System { ...@@ -73,6 +73,7 @@ class System {
json: true, json: true,
headers: { headers: {
"content-type": "application/json", "content-type": "application/json",
...otherHeaders
}, },
body: data body: data
}, function (error, response, body) { }, function (error, response, body) {
...@@ -92,7 +93,7 @@ class System { ...@@ -92,7 +93,7 @@ class System {
}) })
return promise; return promise;
} }
static async post3wFormTypeReq(url, data) { static async post3wFormTypeReq (url, data) {
let rtn = {} let rtn = {}
let promise = new Promise(function (resv, rej) { let promise = new Promise(function (resv, rej) {
request.post({ request.post({
...@@ -111,7 +112,7 @@ class System { ...@@ -111,7 +112,7 @@ class System {
}) })
return promise; return promise;
} }
static async postMpFormTypeReq(url, formdata) { static async postMpFormTypeReq (url, formdata) {
let promise = new Promise(function (resv, rej) { let promise = new Promise(function (resv, rej) {
request.post({ request.post({
url: url, url: url,
...@@ -133,7 +134,7 @@ class System { ...@@ -133,7 +134,7 @@ class System {
* @param {*} okmsg 操作成功的描述 * @param {*} okmsg 操作成功的描述
* @param {*} req 请求头信息 * @param {*} req 请求头信息
*/ */
static getResult(data, opmsg = "操作成功", req) { static getResult (data, opmsg = "操作成功", req) {
return { return {
status: !data ? -1 : 0, status: !data ? -1 : 0,
msg: opmsg, msg: opmsg,
...@@ -146,7 +147,7 @@ class System { ...@@ -146,7 +147,7 @@ class System {
* @param {*} data 操作成功返回的数据 * @param {*} data 操作成功返回的数据
* @param {*} okmsg 操作成功的描述 * @param {*} okmsg 操作成功的描述
*/ */
static getResultSuccess(data, okmsg = "success") { static getResultSuccess (data, okmsg = "success") {
return { return {
status: 0, status: 0,
msg: okmsg, msg: okmsg,
...@@ -159,7 +160,7 @@ class System { ...@@ -159,7 +160,7 @@ class System {
* @param {*} errmsg 操作失败的描述,默认为fail * @param {*} errmsg 操作失败的描述,默认为fail
* @param {*} data 操作失败返回的数据 * @param {*} data 操作失败返回的数据
*/ */
static getResultFail(status = -1, errmsg = "fail", data = null) { static getResultFail (status = -1, errmsg = "fail", data = null) {
return { return {
status: status, status: status,
msg: errmsg, msg: errmsg,
...@@ -171,14 +172,14 @@ class System { ...@@ -171,14 +172,14 @@ class System {
* @param {*} errmsg 操作失败的描述,默认为fail * @param {*} errmsg 操作失败的描述,默认为fail
* @param {*} data 操作失败返回的数据 * @param {*} data 操作失败返回的数据
*/ */
static getResultError(errmsg = "fail", data = null) { static getResultError (errmsg = "fail", data = null) {
return { return {
status: -200, status: -200,
msg: errmsg, msg: errmsg,
data: data, data: data,
}; };
} }
static register(key, ClassObj, groupName, filename) { static register (key, ClassObj, groupName, filename) {
if (System.objTable[key] != null) { if (System.objTable[key] != null) {
throw new Error("相同key的对象已经存在"); throw new Error("相同key的对象已经存在");
} else { } else {
...@@ -193,7 +194,7 @@ class System { ...@@ -193,7 +194,7 @@ class System {
return System.objTable[key]; return System.objTable[key];
} }
static getObject(objpath) { static getObject (objpath) {
var pathArray = objpath.split("."); var pathArray = objpath.split(".");
var packageName = pathArray[0]; var packageName = pathArray[0];
var groupName = pathArray[1]; var groupName = pathArray[1];
...@@ -234,7 +235,7 @@ class System { ...@@ -234,7 +235,7 @@ class System {
} }
} }
static getSysConfig() { static getSysConfig () {
var configPath = settings.basepath + "/app/base/db/metadata/index.js"; var configPath = settings.basepath + "/app/base/db/metadata/index.js";
// if(settings.env=="dev"){ // if(settings.env=="dev"){
// console.log("delete "+configPath+"cache config"); // console.log("delete "+configPath+"cache config");
...@@ -244,7 +245,7 @@ class System { ...@@ -244,7 +245,7 @@ class System {
var configValue = require(configPath); var configValue = require(configPath);
return configValue.config; return configValue.config;
} }
static get_client_ip(req) { static get_client_ip (req) {
var ip = req.headers['x-forwarded-for'] || var ip = req.headers['x-forwarded-for'] ||
req.ip || req.ip ||
req.connection.remoteAddress || req.connection.remoteAddress ||
...@@ -267,7 +268,7 @@ class System { ...@@ -267,7 +268,7 @@ class System {
* @param {*} resultInfo 返回结果 * @param {*} resultInfo 返回结果
* @param {*} errorInfo 错误信息 * @param {*} errorInfo 错误信息
*/ */
static execLogs(opTitle, params, identifyCode, resultInfo, errorInfo) { static execLogs (opTitle, params, identifyCode, resultInfo, errorInfo) {
var reqUrl = settings.logUrl(); var reqUrl = settings.logUrl();
let isLogData = true let isLogData = true
if (params.method && (params.method.indexOf("find") >= 0 || params.method.indexOf("get") >= 0)) { if (params.method && (params.method.indexOf("find") >= 0 || params.method.indexOf("get") >= 0)) {
...@@ -304,7 +305,7 @@ class System { ...@@ -304,7 +305,7 @@ class System {
* 加密信息 * 加密信息
* @param {*} opStr * @param {*} opStr
*/ */
static encryptStr(opStr) { static encryptStr (opStr) {
if (!opStr) { if (!opStr) {
return "opStr is empty"; return "opStr is empty";
} }
...@@ -317,7 +318,7 @@ class System { ...@@ -317,7 +318,7 @@ class System {
* 解密信息 * 解密信息
* @param {*} opStr * @param {*} opStr
*/ */
static decryptStr(opStr) { static decryptStr (opStr) {
if (!opStr) { if (!opStr) {
return "opStr is empty"; return "opStr is empty";
} }
...@@ -388,4 +389,14 @@ module.exports = System; ...@@ -388,4 +389,14 @@ module.exports = System;
// }catch(e){ // }catch(e){
// console.log(e); // console.log(e);
// } // }
// })() // })()
\ No newline at end of file // let otherHeaders = {
// xappkey: "647a68c9- da01 - 40d3-9763 - 1ffa0f64cf3f",
// }
// let header = {
// "content-type": "application/json",
// ...otherHeaders
// }
// console.log(JSON.stringify(header))
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