Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
daa8b886
Commit
daa8b886
authored
Dec 07, 2019
by
王昆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gsb
parent
abe11dc5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
139 additions
and
8 deletions
+139
-8
xggsve-order/app/base/db/impl/order/channelDao.js
+10
-0
xggsve-order/app/base/db/models/order/iborder.js
+1
-0
xggsve-order/app/base/service/impl/order/channelSve.js
+19
-0
xggsve-order/app/base/service/impl/order/iborderSve.js
+81
-1
xggsve-order/app/base/service/impl/order/iborderbaseSve.js
+28
-7
No files found.
xggsve-order/app/base/db/impl/order/channelDao.js
0 → 100644
View file @
daa8b886
const
system
=
require
(
"../../../system"
);
const
Dao
=
require
(
"../../dao.base"
);
class
ChannelDao
extends
Dao
{
constructor
()
{
super
(
Dao
.
getModelName
(
ChannelDao
));
this
.
statusMap
=
{};
}
}
module
.
exports
=
ChannelDao
;
\ No newline at end of file
xggsve-order/app/base/db/models/order/iborder.js
View file @
daa8b886
...
...
@@ -55,6 +55,7 @@ module.exports = (db, DataTypes) => {
deliverType
:
DataTypes
.
STRING
,
deliverNo
:
DataTypes
.
STRING
,
deliverImg
:
DataTypes
.
STRING
,
productItems
:
DataTypes
.
STRING
,
},
{
paranoid
:
true
,
//假的删除
underscored
:
true
,
...
...
xggsve-order/app/base/service/impl/order/channelSve.js
0 → 100644
View file @
daa8b886
const
system
=
require
(
"../../../system"
);
const
ServiceBase
=
require
(
"../../sve.base"
)
const
settings
=
require
(
"../../../../config/settings"
)
const
moment
=
require
(
"moment"
);
class
ChannelService
extends
ServiceBase
{
constructor
()
{
super
(
"order"
,
ServiceBase
.
getDaoName
(
ChannelService
));
}
}
module
.
exports
=
ChannelService
;
// var task=new UserService();
// task.getUserStatisticGroupByApp().then(function(result){
// console.log((result));
// }).catch(function(e){
// console.log(e);
// });
\ No newline at end of file
xggsve-order/app/base/service/impl/order/iborderSve.js
View file @
daa8b886
...
...
@@ -171,7 +171,87 @@ class IborderService extends ServiceBase {
// -----------------------以此间隔,上面为API下面为service---------------------------------
async
createOrder
(
params
,
t
)
{
// 处理注册订单
// 产品项
params
.
productItems
=
(
params
.
productItems
||
[]).
join
(
""
);
var
order
=
{};
order
.
price
=
Number
(
params
.
price
||
0
);
order
.
status
=
"1000"
;
var
merchantId
=
params
.
merchantId
||
params
.
merchant_id
;
if
(
merchantId
)
{
var
exists
=
await
this
.
dao
.
findOne
({
merchant_id
:
this
.
trim
(
merchantId
),
channelOrderNo
:
this
.
trim
(
params
.
channelOrderNo
),
});
if
(
exists
)
{
return
system
.
getResult
(
null
,
"订单号【"
+
params
.
channelOrderNo
+
"】重复"
);
}
var
merchantData
=
await
this
.
microsveClient
.
call
(
"merchant"
,
"getById"
,
{
"id"
:
merchantId
});
if
(
merchantData
.
status
!=
0
)
{
return
merchantData
;
}
var
merchant
=
merchantData
.
data
;
if
(
!
merchant
.
mustPay
)
{
order
.
price
=
0
;
order
.
status
=
"1020"
;
}
}
var
busiStatus
=
await
this
.
orderBusinessStatus
.
findOrderBusinessStatus
(
order
.
status
);
if
(
busiStatus
)
{
order
.
ostatus
=
busiStatus
.
ostatus
;
}
// 商户id
order
.
merchant_id
=
this
.
trim
(
merchantId
);
// 三方渠道号
order
.
channelOrderNo
=
this
.
trim
(
params
.
channelOrderNo
);
// 订单资料信息
order
.
legalName
=
this
.
trim
(
params
.
legalName
);
order
.
legalMobile
=
this
.
trim
(
params
.
legalMobile
);
order
.
legalImg
=
this
.
trim
(
params
.
legalImg
);
order
.
idcard
=
this
.
trim
(
params
.
idcard
);
order
.
idcardFront
=
this
.
trim
(
params
.
idcardFront
);
order
.
idcardBack
=
this
.
trim
(
params
.
idcardBack
);
order
.
bankNo
=
this
.
trim
(
params
.
bankNo
);
order
.
bank
=
this
.
trim
(
params
.
bank
);
order
.
bankImg
=
this
.
trim
(
params
.
bankImg
);
order
.
names
=
this
.
trim
(
params
.
names
);
order
.
capital
=
this
.
trim
(
params
.
capital
);
order
.
domicile_id
=
this
.
trim
(
params
.
domicileId
);
order
.
domicileName
=
this
.
trim
(
params
.
domicileName
);
// 个体户经营范围
order
.
businessScope_id
=
this
.
trim
(
params
.
businessScopeId
);
order
.
businessType
=
this
.
trim
(
params
.
businessType
);
order
.
businessScope
=
this
.
trim
(
params
.
businessScope
);
order
.
bdId
=
this
.
trim
(
params
.
bdId
);
order
.
bdPath
=
this
.
trim
(
params
.
bdId
);
// 邮寄地址
order
.
mailAddr
=
this
.
trim
(
params
.
mailAddr
);
order
.
mailTo
=
this
.
trim
(
params
.
mailTo
);
order
.
mailMobile
=
this
.
trim
(
params
.
mailMobile
);
order
.
userId
=
this
.
trim
(
params
.
userId
);
// var baseOrder = {};
// baseOrder = await this.baseorderDao.create(baseOrder);
// order.id = baseOrder.id;
order
=
await
this
.
dao
.
create
(
order
);
return
system
.
getResultSuccess
({
orderNo
:
order
.
id
});
}
...
...
xggsve-order/app/base/service/impl/order/iborderbaseSve.js
View file @
daa8b886
...
...
@@ -9,6 +9,8 @@ class IborderbaseService extends ServiceBase {
this
.
iborderSve
=
system
.
getObject
(
"service.order.iborderSve"
);
this
.
iborderdkSve
=
system
.
getObject
(
"service.order.iborderdkSve"
);
this
.
iborderdzSve
=
system
.
getObject
(
"service.order.iborderdzSve"
);
this
.
channelSve
=
system
.
getObject
(
"service.order.channelSve"
);
this
.
paymentSve
=
system
.
getObject
(
"service.order.paymentSve"
);
this
.
services
=
{
"1000"
:
this
.
iborderSve
,
// 注册订单
...
...
@@ -59,7 +61,7 @@ class IborderbaseService extends ServiceBase {
let
productType
=
this
.
trim
(
params
.
productTypes
);
let
childSve
=
this
.
getService
(
productType
);
if
(
!
childSve
)
{
if
(
!
childSve
)
{
return
system
.
getResult
(
null
,
`暂不支持此种产品类型:
${
productType
}
`
);
}
...
...
@@ -71,8 +73,9 @@ class IborderbaseService extends ServiceBase {
params
.
legalMobile
=
this
.
trim
(
params
.
legalMobile
);
params
.
legalEmail
=
this
.
trim
(
params
.
legalEmail
);
params
.
payType
=
Number
(
params
.
payType
||
1
);
params
.
productType
=
Number
(
params
.
productType
||
1
)
;
params
.
productType
=
productType
;
params
.
price
=
Number
(
params
.
price
||
0
);
params
.
status
=
"1000"
;
// 待处理
let
self
=
this
;
//1 保存基类的信息
await
this
.
db
.
transaction
(
async
t
=>
{
...
...
@@ -81,6 +84,14 @@ class IborderbaseService extends ServiceBase {
//将id 赋值
params
.
id
=
_baseOrder
.
id
;
await
childSve
.
createOrder
(
params
,
t
);
// 处理payment
if
(
payType
!=
2
)
{
var
payment
=
{
};
this
.
paymentSve
.
create
();
}
});
return
system
.
getResultSuccess
();
}
catch
(
error
)
{
...
...
@@ -101,11 +112,21 @@ class IborderbaseService extends ServiceBase {
async
completedOrder
(
params
)
{
//1 检查个体户是否存在 (根据统一社会信用代码查个体工商户是否存在)
this
.
trimObject
(
params
);
if
(
!
params
.
legalName
){
return
system
.
getResult
(
null
,
`参数错误 法人姓名不能为空`
);}
if
(
!
params
.
legalMobile
){
return
system
.
getResult
(
null
,
`参数错误 法人电话不能为空`
);}
if
(
!
params
.
creditCode
){
return
system
.
getResult
(
null
,
`参数错误 法人统一社会信用代码不能为空`
);}
if
(
!
params
.
names
){
return
system
.
getResult
(
null
,
`参数错误 个体户名称不能为空`
);}
if
(
!
params
.
businessScope
){
return
system
.
getResult
(
null
,
`参数错误 经营范围不能为空`
);}
if
(
!
params
.
legalName
)
{
return
system
.
getResult
(
null
,
`参数错误 法人姓名不能为空`
);
}
if
(
!
params
.
legalMobile
)
{
return
system
.
getResult
(
null
,
`参数错误 法人电话不能为空`
);
}
if
(
!
params
.
creditCode
)
{
return
system
.
getResult
(
null
,
`参数错误 法人统一社会信用代码不能为空`
);
}
if
(
!
params
.
names
)
{
return
system
.
getResult
(
null
,
`参数错误 个体户名称不能为空`
);
}
if
(
!
params
.
businessScope
)
{
return
system
.
getResult
(
null
,
`参数错误 经营范围不能为空`
);
}
//2 如果不存在添加保存个体户
//3 完善信息
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment