Commit e414aaa3 by 王勇飞

gyq

parent cad6fd9d
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three two values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
...@@ -144,135 +144,135 @@ class DeliverybillCtl extends CtlBase { ...@@ -144,135 +144,135 @@ class DeliverybillCtl extends CtlBase {
} }
} }
// // 创建融易算服务实例 // 创建融易算服务实例
// async insertInfo(obj, qobj, req) { async insertInfo(obj, qobj, req) {
// console.log("GGGGGGG----------------------------------------------" + JSON.stringify(obj)); console.log("GGGGGGG----------------------------------------------" + JSON.stringify(obj));
// try { try {
// var pobj = obj.actionBody.messageBody; var pobj = obj.actionBody.messageBody;
// var cachestr = sha235(JSON.stringify(pobj)); var cachestr = sha235(JSON.stringify(pobj));
// var cacheInfo = await this.cacheManager["TxCache"].getCache(cachestr); var cacheInfo = await this.cacheManager["TxCache"].getCache(cachestr);
// if (cacheInfo && cacheInfo != 'undefined') { if (cacheInfo && cacheInfo != 'undefined') {
// return { return {
// "status": 1, //1代表成功,否则失败 "status": 1, //1代表成功,否则失败
// "msg": "已处理成功!", "msg": "已处理成功!",
// "data": "", "data": "",
// "requestId": "" "requestId": ""
// } }
// } }
// else { else {
// pobj.orderId = pobj.orderId + "_book"; pobj.orderId = pobj.orderId + "_book";
// pobj.contactsPhone = pobj.contactsMobile; pobj.contactsPhone = pobj.contactsMobile;
// pobj.product_code = "bookkeeping"; pobj.product_code = "bookkeeping";
// pobj.product_name = "代帐服务"; pobj.product_name = "代帐服务";
// pobj.delivery_status = "received"; pobj.delivery_status = "received";
// pobj.facilitator_id = "10"; pobj.facilitator_id = "10";
// pobj.facilitator_name = "公司宝"; pobj.facilitator_name = "公司宝";
// pobj.source_number = "tx"; pobj.source_number = "tx";
// pobj.source_name = "tencentCloud"; pobj.source_name = "tencentCloud";
// pobj.taxpayerName = pobj.taxpayerType; pobj.taxpayerName = pobj.taxpayerType;
// if (pobj.taxpayerType == 1){ if (pobj.taxpayerType == 1){
// pobj.taxpayerType = "generalTaxpayer"; pobj.taxpayerType = "generalTaxpayer";
// } }
// else if (pobj.taxpayerType == 2){ else if (pobj.taxpayerType == 2){
// pobj.taxpayerType = "smallScaleTaxpayer"; pobj.taxpayerType = "smallScaleTaxpayer";
// } }
// if (pobj.solutionBizId){ if (pobj.solutionBizId){
// var scheme = await this.fitaxschemeService.findInfoByBizid({"bizId":pobj.solutionBizId}); var scheme = await this.fitaxschemeService.findInfoByBizid({"bizId":pobj.solutionBizId});
// if (scheme){ if (scheme){
// pobj.demand_code = scheme.demand_code; pobj.demand_code = scheme.demand_code;
// } }
// } }
// var buInfo = await this.service.insertInfo(pobj); var buInfo = await this.service.insertInfo(pobj);
// if (buInfo) { if (buInfo) {
// await this.cacheManager["TxCache"].cache(cachestr, JSON.stringify({ cachestr: cachestr }), 180);//插入redis缓存 await this.cacheManager["TxCache"].cache(cachestr, JSON.stringify({ cachestr: cachestr }), 180);//插入redis缓存
// return { return {
// "status": 1, //1代表成功,否则失败 "status": 1, //1代表成功,否则失败
// "msg": "处理成功!", "msg": "处理成功!",
// "data": buInfo, "data": buInfo,
// "requestId": "" "requestId": ""
// } }
// } }
// else { else {
// return system.getResultFail(buInfo); return system.getResultFail(buInfo);
// } }
// } }
// } }
// catch (err) { catch (err) {
// return system.getResult(null, err.message) return system.getResult(null, err.message)
// } }
// } }
// 更新融易算服务实例 //更新融易算服务实例
// async updateServer(obj, qobj, req) { async updateServer(obj, qobj, req) {
// try { try {
// var pobj = obj.actionBody.messageBody; var pobj = obj.actionBody.messageBody;
// var cachestr = sha235(JSON.stringify(pobj)); var cachestr = sha235(JSON.stringify(pobj));
// var cacheInfo = await this.cacheManager["TxCache"].getCache(cachestr); var cacheInfo = await this.cacheManager["TxCache"].getCache(cachestr);
// var cacheInfo; var cacheInfo;
// if (cacheInfo && cacheInfo != 'undefined') { if (cacheInfo && cacheInfo != 'undefined') {
// return { return {
// "status": 1, //1代表成功,否则失败 "status": 1, //1代表成功,否则失败
// "msg": "已处理成功!", "msg": "已处理成功!",
// "data": "", "data": "",
// "requestId": "" "requestId": ""
// } }
// } else { } else {
// if (!pobj.requestId || pobj.requestId == 'undefined') { if (!pobj.requestId || pobj.requestId == 'undefined') {
// throw new Error("requestId 不能为空"); throw new Error("requestId 不能为空");
// } }
// if (!pobj.bizId || pobj.bizId == 'undefined') { if (!pobj.bizId || pobj.bizId == 'undefined') {
// throw new Error("bizId 不能为空"); throw new Error("bizId 不能为空");
// } }
// if (!pobj.orderId || pobj.orderId == 'undefined') { if (!pobj.orderId || pobj.orderId == 'undefined') {
// throw new Error("orderId 不能为空"); throw new Error("orderId 不能为空");
// } }
// if (!pobj.topOrgCode || pobj.topOrgCode == 'undefined') { if (!pobj.topOrgCode || pobj.topOrgCode == 'undefined') {
// throw new Error("topOrgCode 不能为空"); throw new Error("topOrgCode 不能为空");
// } }
// if (!pobj.companyName || pobj.companyName == 'undefined') { if (!pobj.companyName || pobj.companyName == 'undefined') {
// throw new Error("companyName 不能为空"); throw new Error("companyName 不能为空");
// } }
// if (!pobj.contactName || pobj.contactName == 'undefined') { if (!pobj.contactName || pobj.contactName == 'undefined') {
// throw new Error("contactName 不能为空"); throw new Error("contactName 不能为空");
// } }
// if (!pobj.companyBizType || pobj.companyBizType == 'undefined') { if (!pobj.companyBizType || pobj.companyBizType == 'undefined') {
// throw new Error("companyBizType 不能为空"); throw new Error("companyBizType 不能为空");
// } }
// if (!pobj.uscc || pobj.uscc == 'undefined') { if (!pobj.uscc || pobj.uscc == 'undefined') {
// throw new Error("uscc 不能为空"); throw new Error("uscc 不能为空");
// } }
// const rs = await this.service.updateServer(pobj); const rs = await this.service.updateServer(pobj);
// if (rs) { if (rs) {
// await this.cacheManager["TxCache"].cache(cachestr, JSON.stringify({ cachestr: cachestr }), 180);//插入redis缓存 await this.cacheManager["TxCache"].cache(cachestr, JSON.stringify({ cachestr: cachestr }), 180);//插入redis缓存
// return { return {
// "status": 1, //1代表成功,否则失败 "status": 1, //1代表成功,否则失败
// "msg": "处理成功!", "msg": "处理成功!",
// "data": rs, "data": rs,
// "requestId": "" "requestId": ""
// } }
// } else { } else {
// return system.getResultFail(rs); return system.getResultFail(rs);
// } }
// } }
// } }
// catch (err) { catch (err) {
// return system.getResult(null, err.message) return system.getResult(null, err.message)
// } }
// } }
// //根据bizId查询deliverybill表中的所有信息 //根据bizId查询deliverybill表中的所有信息
// async getInfo(pobj, qobj, req) { async getInfo(pobj, qobj, req) {
// try { try {
// if (!pobj.bizId) { if (!pobj.bizId) {
// throw new Error("bizId 不能为空"); throw new Error("bizId 不能为空");
// } }
// const rs = await this.service.getInfo(pobj); const rs = await this.service.getInfo(pobj);
// //console.log("got message"); //console.log("got message");
// return system.getResult(rs); return system.getResult(rs);
// } catch (err) { } catch (err) {
// return system.getResult(null, err.message) return system.getResult(null, err.message)
// } }
// } }
} }
module.exports = DeliverybillCtl; module.exports = DeliverybillCtl;
......
...@@ -24,20 +24,20 @@ class FitaxschemeCtl extends CtlBase { ...@@ -24,20 +24,20 @@ class FitaxschemeCtl extends CtlBase {
} }
} }
// async findInfoByBizid(pobj,qobj,req){//方案 async findInfoByBizid(pobj,qobj,req){//方案
// try{ try{
// if (pobj.bizId){ if (pobj.bizId){
// var res = await this.service.findInfoByBizid(pobj); var res = await this.service.findInfoByBizid(pobj);
// return system.getResult(res); return system.getResult(res);
// } }
// else{ else{
// return system.getResultError("缺少方案编号"); return system.getResultError("缺少方案编号");
// } }
// } }
// catch(error){ catch(error){
// return system.getResultError(error); return system.getResultError(error);
// } }
// } }
} }
module.exports = FitaxschemeCtl; module.exports = FitaxschemeCtl;
......
...@@ -94,120 +94,120 @@ class DeliverybillDao extends Dao { ...@@ -94,120 +94,120 @@ class DeliverybillDao extends Dao {
return qw; return qw;
} }
// async insertInfo(qobj, t) { async insertInfo(qobj, t) {
// var obj = { var obj = {
// "delivery_code": qobj.orderId, "delivery_code": qobj.orderId,
// "product_code": qobj.product_code, "product_code": qobj.product_code,
// "product_name": qobj.product_name, "product_name": qobj.product_name,
// "service_address": qobj.area, "service_address": qobj.area,
// "delivery_status": qobj.delivery_status, "delivery_status": qobj.delivery_status,
// "facilitator_id": qobj.facilitator_id, "facilitator_id": qobj.facilitator_id,
// "biz_id": qobj.bizId "biz_id": qobj.bizId
// }; };
// // source_number // source_number
// if (qobj.source_number && qobj.source_number != 'undefined') { if (qobj.source_number && qobj.source_number != 'undefined') {
// obj.source_number = qobj.source_number; obj.source_number = qobj.source_number;
// delete qobj.source_number; delete qobj.source_number;
// } }
// // demand_code // demand_code
// if (qobj.demand_code && qobj.demand_code != 'undefined') { if (qobj.demand_code && qobj.demand_code != 'undefined') {
// obj.demand_code = qobj.demand_code; obj.demand_code = qobj.demand_code;
// delete qobj.demand_code; delete qobj.demand_code;
// } }
// // sku_code // sku_code
// if (qobj.sku_code && qobj.sku_code != 'undefined') { if (qobj.sku_code && qobj.sku_code != 'undefined') {
// obj.sku_code = qobj.sku_code; obj.sku_code = qobj.sku_code;
// delete qobj.sku_code; delete qobj.sku_code;
// } }
// // scheme_number // scheme_number
// if (qobj.solutionBizId && qobj.solutionBizId != 'undefined') { if (qobj.solutionBizId && qobj.solutionBizId != 'undefined') {
// obj.scheme_number = qobj.solutionBizId; obj.scheme_number = qobj.solutionBizId;
// delete qobj.solutionBizId; delete qobj.solutionBizId;
// } }
// // selling_price // selling_price
// if (qobj.selling_price && qobj.selling_price != 'undefined') { if (qobj.selling_price && qobj.selling_price != 'undefined') {
// obj.selling_price = qobj.selling_price; obj.selling_price = qobj.selling_price;
// delete qobj.selling_price; delete qobj.selling_price;
// } }
// // cost_price // cost_price
// if (qobj.cost_price && qobj.cost_price != 'undefined') { if (qobj.cost_price && qobj.cost_price != 'undefined') {
// obj.cost_price = qobj.cost_price; obj.cost_price = qobj.cost_price;
// delete qobj.cost_price; delete qobj.cost_price;
// } }
// // close_reason // close_reason
// if (qobj.close_reason && qobj.close_reason != 'undefined') { if (qobj.close_reason && qobj.close_reason != 'undefined') {
// obj.close_reason = qobj.close_reason; obj.close_reason = qobj.close_reason;
// delete qobj.close_reason; delete qobj.close_reason;
// } }
// // facilitator_name // facilitator_name
// if (qobj.facilitator_name && qobj.facilitator_name != 'undefined') { if (qobj.facilitator_name && qobj.facilitator_name != 'undefined') {
// obj.facilitator_name = qobj.facilitator_name; obj.facilitator_name = qobj.facilitator_name;
// delete qobj.facilitator_name; delete qobj.facilitator_name;
// } }
// // salesman_opcode // salesman_opcode
// if (qobj.salesman_opcode && qobj.salesman_opcode != 'undefined') { if (qobj.salesman_opcode && qobj.salesman_opcode != 'undefined') {
// obj.salesman_opcode = qobj.salesman_opcode; obj.salesman_opcode = qobj.salesman_opcode;
// delete qobj.salesman_opcode; delete qobj.salesman_opcode;
// } }
// // salesman_id // salesman_id
// if (qobj.salesman_id && qobj.salesman_id != 'undefined') { if (qobj.salesman_id && qobj.salesman_id != 'undefined') {
// obj.salesman_id = qobj.salesman_id; obj.salesman_id = qobj.salesman_id;
// delete qobj.salesman_id; delete qobj.salesman_id;
// } }
// // salesman_name // salesman_name
// if (qobj.salesman_name && qobj.salesman_name != 'undefined') { if (qobj.salesman_name && qobj.salesman_name != 'undefined') {
// obj.salesman_name = qobj.salesman_name; obj.salesman_name = qobj.salesman_name;
// delete qobj.salesman_name; delete qobj.salesman_name;
// } }
// // salesman_phone // salesman_phone
// if (qobj.salesman_phone && qobj.salesman_phone != 'undefined') { if (qobj.salesman_phone && qobj.salesman_phone != 'undefined') {
// obj.salesman_phone = qobj.salesman_phone; obj.salesman_phone = qobj.salesman_phone;
// delete qobj.salesman_phone; delete qobj.salesman_phone;
// } }
// // source_name // source_name
// if (qobj.source_name && qobj.source_name != 'undefined') { if (qobj.source_name && qobj.source_name != 'undefined') {
// obj.source_name = qobj.source_name; obj.source_name = qobj.source_name;
// delete qobj.source_name; delete qobj.source_name;
// } }
// // master_source_number // master_source_number
// if (qobj.master_source_number && qobj.master_source_number != 'undefined') { if (qobj.master_source_number && qobj.master_source_number != 'undefined') {
// obj.master_source_number = qobj.master_source_number; obj.master_source_number = qobj.master_source_number;
// delete qobj.master_source_number; delete qobj.master_source_number;
// } }
// // settle_status // settle_status
// if (qobj.settle_status && qobj.settle_status != 'undefined') { if (qobj.settle_status && qobj.settle_status != 'undefined') {
// obj.settle_status = qobj.settle_status; obj.settle_status = qobj.settle_status;
// delete qobj.settle_status; delete qobj.settle_status;
// } }
// // settlebill_id // settlebill_id
// if (qobj.settlebill_id && qobj.settlebill_id != 'undefined') { if (qobj.settlebill_id && qobj.settlebill_id != 'undefined') {
// obj.settlebill_id = qobj.settlebill_id; obj.settlebill_id = qobj.settlebill_id;
// delete qobj.settlebill_id; delete qobj.settlebill_id;
// } }
// // delivery_man_id // delivery_man_id
// if (qobj.delivery_man_id && qobj.delivery_man_id != 'undefined') { if (qobj.delivery_man_id && qobj.delivery_man_id != 'undefined') {
// obj.delivery_man_id = qobj.delivery_man_id; obj.delivery_man_id = qobj.delivery_man_id;
// delete qobj.delivery_man_id; delete qobj.delivery_man_id;
// } }
// // delivery_man_name // delivery_man_name
// if (qobj.delivery_man_name && qobj.delivery_man_name != 'undefined') { if (qobj.delivery_man_name && qobj.delivery_man_name != 'undefined') {
// obj.delivery_man_name = qobj.delivery_man_name; obj.delivery_man_name = qobj.delivery_man_name;
// delete qobj.delivery_man_name; delete qobj.delivery_man_name;
// } }
// // delivery_man_opcode // delivery_man_opcode
// if (qobj.delivery_man_opcode && qobj.delivery_man_opcode != 'undefined') { if (qobj.delivery_man_opcode && qobj.delivery_man_opcode != 'undefined') {
// obj.delivery_man_opcode = qobj.delivery_man_opcode; obj.delivery_man_opcode = qobj.delivery_man_opcode;
// delete qobj.delivery_man_opcode; delete qobj.delivery_man_opcode;
// } }
// delete qobj.orderId; delete qobj.orderId;
// delete qobj.product_code; delete qobj.product_code;
// delete qobj.product_name; delete qobj.product_name;
// delete qobj.service_address; delete qobj.service_address;
// delete qobj.delivery_status; delete qobj.delivery_status;
// delete qobj.facilitator_id; delete qobj.facilitator_id;
// obj.delivery_info = qobj; obj.delivery_info = qobj;
// return await this.create(obj, t); return await this.create(obj, t);
// } }
async updateServer(qobj, whereobj, t) { async updateServer(qobj, whereobj, t) {
return await this.updateByWhere(qobj, whereobj, t); return await this.updateByWhere(qobj, whereobj, t);
......
...@@ -68,11 +68,11 @@ class FitaxschemeDao extends Dao { ...@@ -68,11 +68,11 @@ class FitaxschemeDao extends Dao {
return obj; return obj;
} }
// async findInfoByBizid(qobj){ async findInfoByBizid(qobj){
// let obj = { let obj = {
// "solution_bizid": qobj.bizId "solution_bizid": qobj.bizId
// } }
// return await this.findOne(obj); return await this.findOne(obj);
// } }
} }
module.exports = FitaxschemeDao; module.exports = FitaxschemeDao;
...@@ -27,7 +27,7 @@ class DeliverybillService extends ServiceBase { ...@@ -27,7 +27,7 @@ class DeliverybillService extends ServiceBase {
if (pobj.orderStaus === true) { if (pobj.orderStaus === true) {
updateResult = { updateResult = {
delivery_info: { delivery_info: {
...delivery_info, delivery_info,
setupAt: pobj.setupAt//建账时间 setupAt: pobj.setupAt//建账时间
}, },
delivery_status: system.SERVERSESTATUS.WAITUSERCONFIRM delivery_status: system.SERVERSESTATUS.WAITUSERCONFIRM
...@@ -235,12 +235,12 @@ class DeliverybillService extends ServiceBase { ...@@ -235,12 +235,12 @@ 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 updateServer(qobj) { async updateServer(qobj) {
var self = this; var self = this;
......
...@@ -19,8 +19,8 @@ class FitaxschemeService extends ServiceBase { ...@@ -19,8 +19,8 @@ class FitaxschemeService extends ServiceBase {
return await self.dao.findInfo(qobj); return await self.dao.findInfo(qobj);
} }
// async findInfoByBizid(qobj){ async findInfoByBizid(qobj){
// return await this.dao.findInfoByBizid(qobj); return await this.dao.findInfoByBizid(qobj);
// } }
} }
module.exports = FitaxschemeService; module.exports = FitaxschemeService;
\ No newline at end of file
...@@ -307,6 +307,7 @@ ...@@ -307,6 +307,7 @@
"aproba": { "aproba": {
"version": "1.2.0", "version": "1.2.0",
"resolved": "https://registry.npm.taobao.org/aproba/download/aproba-1.2.0.tgz", "resolved": "https://registry.npm.taobao.org/aproba/download/aproba-1.2.0.tgz",
"integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
"optional": true "optional": true
}, },
"arch": { "arch": {
...@@ -381,6 +382,7 @@ ...@@ -381,6 +382,7 @@
"are-we-there-yet": { "are-we-there-yet": {
"version": "1.1.5", "version": "1.1.5",
"resolved": "https://registry.npm.taobao.org/are-we-there-yet/download/are-we-there-yet-1.1.5.tgz", "resolved": "https://registry.npm.taobao.org/are-we-there-yet/download/are-we-there-yet-1.1.5.tgz",
"integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==",
"optional": true, "optional": true,
"requires": { "requires": {
"delegates": "^1.0.0", "delegates": "^1.0.0",
...@@ -1620,7 +1622,8 @@ ...@@ -1620,7 +1622,8 @@
}, },
"connect-history-api-fallback": { "connect-history-api-fallback": {
"version": "1.6.0", "version": "1.6.0",
"resolved": "https://registry.npm.taobao.org/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz" "resolved": "https://registry.npm.taobao.org/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz",
"integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg=="
}, },
"connect-redis": { "connect-redis": {
"version": "3.4.2", "version": "3.4.2",
...@@ -1644,6 +1647,7 @@ ...@@ -1644,6 +1647,7 @@
"console-control-strings": { "console-control-strings": {
"version": "1.1.0", "version": "1.1.0",
"resolved": "https://registry.npm.taobao.org/console-control-strings/download/console-control-strings-1.1.0.tgz", "resolved": "https://registry.npm.taobao.org/console-control-strings/download/console-control-strings-1.1.0.tgz",
"integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
"optional": true "optional": true
}, },
"console-stream": { "console-stream": {
...@@ -1675,6 +1679,16 @@ ...@@ -1675,6 +1679,16 @@
"emitter-listener": "^1.1.1" "emitter-listener": "^1.1.1"
} }
}, },
"convert-hex": {
"version": "0.1.0",
"resolved": "https://registry.npm.taobao.org/convert-hex/download/convert-hex-0.1.0.tgz",
"integrity": "sha1-CMBFaJIsJ3drii6BqV05M2LqC2U="
},
"convert-string": {
"version": "0.1.0",
"resolved": "https://registry.npm.taobao.org/convert-string/download/convert-string-0.1.0.tgz",
"integrity": "sha1-ec5BqbsNA7z3LNxqjzxW+7xkQQo="
},
"cookie": { "cookie": {
"version": "0.4.0", "version": "0.4.0",
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
...@@ -2109,6 +2123,7 @@ ...@@ -2109,6 +2123,7 @@
"deep-extend": { "deep-extend": {
"version": "0.6.0", "version": "0.6.0",
"resolved": "https://registry.npm.taobao.org/deep-extend/download/deep-extend-0.6.0.tgz", "resolved": "https://registry.npm.taobao.org/deep-extend/download/deep-extend-0.6.0.tgz",
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
"optional": true "optional": true
}, },
"deep-is": { "deep-is": {
...@@ -2200,6 +2215,7 @@ ...@@ -2200,6 +2215,7 @@
"detect-libc": { "detect-libc": {
"version": "1.0.3", "version": "1.0.3",
"resolved": "https://registry.npm.taobao.org/detect-libc/download/detect-libc-1.0.3.tgz", "resolved": "https://registry.npm.taobao.org/detect-libc/download/detect-libc-1.0.3.tgz",
"integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
"optional": true "optional": true
}, },
"dicer": { "dicer": {
...@@ -3447,6 +3463,7 @@ ...@@ -3447,6 +3463,7 @@
"gifsicle": { "gifsicle": {
"version": "4.0.1", "version": "4.0.1",
"resolved": "https://registry.npm.taobao.org/gifsicle/download/gifsicle-4.0.1.tgz", "resolved": "https://registry.npm.taobao.org/gifsicle/download/gifsicle-4.0.1.tgz",
"integrity": "sha512-A/kiCLfDdV+ERV/UB+2O41mifd+RxH8jlRG8DMxZO84Bma/Fw0htqZ+hY2iaalLRNyUu7tYZQslqUBJxBggxbg==",
"dev": true, "dev": true,
"optional": true, "optional": true,
"requires": { "requires": {
...@@ -3882,6 +3899,7 @@ ...@@ -3882,6 +3899,7 @@
"has-unicode": { "has-unicode": {
"version": "2.0.1", "version": "2.0.1",
"resolved": "https://registry.npm.taobao.org/has-unicode/download/has-unicode-2.0.1.tgz", "resolved": "https://registry.npm.taobao.org/has-unicode/download/has-unicode-2.0.1.tgz",
"integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
"optional": true "optional": true
}, },
"hawk": { "hawk": {
...@@ -4052,6 +4070,7 @@ ...@@ -4052,6 +4070,7 @@
"ignore-walk": { "ignore-walk": {
"version": "3.0.3", "version": "3.0.3",
"resolved": "https://registry.npm.taobao.org/ignore-walk/download/ignore-walk-3.0.3.tgz", "resolved": "https://registry.npm.taobao.org/ignore-walk/download/ignore-walk-3.0.3.tgz",
"integrity": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==",
"optional": true, "optional": true,
"requires": { "requires": {
"minimatch": "^3.0.4" "minimatch": "^3.0.4"
...@@ -4075,6 +4094,7 @@ ...@@ -4075,6 +4094,7 @@
"imagemin-gifsicle": { "imagemin-gifsicle": {
"version": "6.0.1", "version": "6.0.1",
"resolved": "https://registry.npm.taobao.org/imagemin-gifsicle/download/imagemin-gifsicle-6.0.1.tgz", "resolved": "https://registry.npm.taobao.org/imagemin-gifsicle/download/imagemin-gifsicle-6.0.1.tgz",
"integrity": "sha512-kuu47c6iKDQ6R9J10xCwL0lgs0+sMz3LRHqRcJ2CRBWdcNmo3T5hUaM8hSZfksptZXJLGKk8heSAvwtSdB1Fng==",
"dev": true, "dev": true,
"optional": true, "optional": true,
"requires": { "requires": {
...@@ -5558,6 +5578,7 @@ ...@@ -5558,6 +5578,7 @@
"minizlib": { "minizlib": {
"version": "1.3.3", "version": "1.3.3",
"resolved": "https://registry.npm.taobao.org/minizlib/download/minizlib-1.3.3.tgz", "resolved": "https://registry.npm.taobao.org/minizlib/download/minizlib-1.3.3.tgz",
"integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==",
"optional": true, "optional": true,
"requires": { "requires": {
"minipass": "^2.9.0" "minipass": "^2.9.0"
...@@ -5742,6 +5763,7 @@ ...@@ -5742,6 +5763,7 @@
"nan": { "nan": {
"version": "2.14.1", "version": "2.14.1",
"resolved": "https://registry.npm.taobao.org/nan/download/nan-2.14.1.tgz", "resolved": "https://registry.npm.taobao.org/nan/download/nan-2.14.1.tgz",
"integrity": "sha512-isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==",
"optional": true "optional": true
}, },
"nanoid": { "nanoid": {
...@@ -5817,6 +5839,7 @@ ...@@ -5817,6 +5839,7 @@
"nodejieba": { "nodejieba": {
"version": "2.4.1", "version": "2.4.1",
"resolved": "https://registry.npm.taobao.org/nodejieba/download/nodejieba-2.4.1.tgz", "resolved": "https://registry.npm.taobao.org/nodejieba/download/nodejieba-2.4.1.tgz",
"integrity": "sha512-fxlVloaO5baDBmpnQ2egDCe6FT9SJdfbFak7tK7dKH16d7SxA5bLdv47EdTwtKS9DRbnXnMlyX5Wc33XAnaQuA==",
"optional": true, "optional": true,
"requires": { "requires": {
"nan": "^2.14.0", "nan": "^2.14.0",
...@@ -5968,6 +5991,7 @@ ...@@ -5968,6 +5991,7 @@
"npm-bundled": { "npm-bundled": {
"version": "1.1.1", "version": "1.1.1",
"resolved": "https://registry.npm.taobao.org/npm-bundled/download/npm-bundled-1.1.1.tgz", "resolved": "https://registry.npm.taobao.org/npm-bundled/download/npm-bundled-1.1.1.tgz",
"integrity": "sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==",
"optional": true, "optional": true,
"requires": { "requires": {
"npm-normalize-package-bin": "^1.0.1" "npm-normalize-package-bin": "^1.0.1"
...@@ -6021,6 +6045,7 @@ ...@@ -6021,6 +6045,7 @@
"npmlog": { "npmlog": {
"version": "4.1.2", "version": "4.1.2",
"resolved": "https://registry.npm.taobao.org/npmlog/download/npmlog-4.1.2.tgz", "resolved": "https://registry.npm.taobao.org/npmlog/download/npmlog-4.1.2.tgz",
"integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==",
"optional": true, "optional": true,
"requires": { "requires": {
"are-we-there-yet": "~1.1.2", "are-we-there-yet": "~1.1.2",
...@@ -6739,6 +6764,7 @@ ...@@ -6739,6 +6764,7 @@
"rc": { "rc": {
"version": "1.2.8", "version": "1.2.8",
"resolved": "https://registry.npm.taobao.org/rc/download/rc-1.2.8.tgz", "resolved": "https://registry.npm.taobao.org/rc/download/rc-1.2.8.tgz",
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
"optional": true, "optional": true,
"requires": { "requires": {
"deep-extend": "^0.6.0", "deep-extend": "^0.6.0",
...@@ -7193,6 +7219,15 @@ ...@@ -7193,6 +7219,15 @@
"crypt": ">= 0.0.1" "crypt": ">= 0.0.1"
} }
}, },
"sha256": {
"version": "0.2.0",
"resolved": "https://registry.npm.taobao.org/sha256/download/sha256-0.2.0.tgz",
"integrity": "sha1-c6C0GNqrcDW/+G6EkeNjQS/CqwU=",
"requires": {
"convert-hex": "~0.1.0",
"convert-string": "~0.1.0"
}
},
"shebang-command": { "shebang-command": {
"version": "1.2.0", "version": "1.2.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
...@@ -8347,6 +8382,7 @@ ...@@ -8347,6 +8382,7 @@
"wide-align": { "wide-align": {
"version": "1.1.3", "version": "1.1.3",
"resolved": "https://registry.npm.taobao.org/wide-align/download/wide-align-1.1.3.tgz", "resolved": "https://registry.npm.taobao.org/wide-align/download/wide-align-1.1.3.tgz",
"integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==",
"optional": true, "optional": true,
"requires": { "requires": {
"string-width": "^1.0.2 || 2" "string-width": "^1.0.2 || 2"
......
...@@ -51,6 +51,7 @@ ...@@ -51,6 +51,7 @@
"sequelize-cli": "^4.1.1", "sequelize-cli": "^4.1.1",
"serve-favicon": "^2.4.5", "serve-favicon": "^2.4.5",
"sha1": "^1.1.1", "sha1": "^1.1.1",
"sha256": "^0.2.0",
"socket.io": "^2.1.1", "socket.io": "^2.1.1",
"uuid": "^3.2.1", "uuid": "^3.2.1",
"xml2js": "^0.4.19" "xml2js": "^0.4.19"
......
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