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
02a1f75c
Commit
02a1f75c
authored
Sep 06, 2021
by
兰国旗
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
易名补充及优化
parent
eefec278
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
9 deletions
+28
-9
center-channel/app/base/service/impl/common/centerorderSve.js
+13
-2
center-channel/app/base/service/impl/utilsSve/utilsNeedSve.js
+15
-7
No files found.
center-channel/app/base/service/impl/common/centerorderSve.js
View file @
02a1f75c
...
@@ -654,11 +654,21 @@ class CenterorderService extends AppServiceBase {
...
@@ -654,11 +654,21 @@ class CenterorderService extends AppServiceBase {
}
else
if
(
pobj
.
actionBody
.
channelItemCode
==
'7'
)
{
}
else
if
(
pobj
.
actionBody
.
channelItemCode
==
'7'
)
{
pobj
.
actionBody
.
regType
=
"yiming.edi"
;
pobj
.
actionBody
.
regType
=
"yiming.edi"
;
}
}
else
if
(
pobj
.
actionBody
.
channelItemCode
==
'icpnb'
)
{
else
if
(
pobj
.
actionBody
.
channelItemCode
==
'ICPXQ'
)
{
pobj
.
actionBody
.
regType
=
"yiming.icpxq"
;
}
else
if
(
pobj
.
actionBody
.
channelItemCode
==
'EDIXQ'
)
{
pobj
.
actionBody
.
regType
=
"yiming.edixq"
;
}
else
if
(
pobj
.
actionBody
.
channelItemCode
==
'ICPNB'
)
{
pobj
.
actionBody
.
regType
=
"yiming.icpnb"
;
pobj
.
actionBody
.
regType
=
"yiming.icpnb"
;
}
else
if
(
pobj
.
actionBody
.
channelItemCode
==
'
edinb
'
)
{
}
else
if
(
pobj
.
actionBody
.
channelItemCode
==
'
EDINB
'
)
{
pobj
.
actionBody
.
regType
=
"yiming.edinb"
;
pobj
.
actionBody
.
regType
=
"yiming.edinb"
;
}
}
else
if
(
pobj
.
actionBody
.
channelItemCode
==
'ICPWZ'
)
{
pobj
.
actionBody
.
regType
=
"yiming.icpwz"
;
}
else
if
(
pobj
.
actionBody
.
channelItemCode
==
'EDIWZ'
)
{
pobj
.
actionBody
.
regType
=
"yiming.ediwz"
;
}
}
}
var
fqobj
=
{
var
fqobj
=
{
actionBody
:
{
actionBody
:
{
...
@@ -724,6 +734,7 @@ class CenterorderService extends AppServiceBase {
...
@@ -724,6 +734,7 @@ class CenterorderService extends AppServiceBase {
//获取易名的icp产品信息
//获取易名的icp产品信息
async
getymicpProduce
(
pobj
)
{
async
getymicpProduce
(
pobj
)
{
console
.
log
(
'pobj.actionBody.channelItemCode--'
,
pobj
.
actionBody
.
channelItemCode
)
pobj
.
actionType
=
'getymicpProduce'
pobj
.
actionType
=
'getymicpProduce'
let
url
=
settings
.
centerAppUrl
()
+
"action/opProduct/springBoard"
;
let
url
=
settings
.
centerAppUrl
()
+
"action/opProduct/springBoard"
;
return
await
this
.
restPostUrl
(
pobj
,
url
);
return
await
this
.
restPostUrl
(
pobj
,
url
);
...
...
center-channel/app/base/service/impl/utilsSve/utilsNeedSve.js
View file @
02a1f75c
...
@@ -1505,25 +1505,33 @@ class UtilsNeedService extends AppServiceBase {
...
@@ -1505,25 +1505,33 @@ class UtilsNeedService extends AppServiceBase {
if
(
pobj
.
actionBody
.
channel_type_code
==
5
)
{
if
(
pobj
.
actionBody
.
channel_type_code
==
5
)
{
pobj
.
actionBody
.
type
=
"yiming.icp"
;
pobj
.
actionBody
.
type
=
"yiming.icp"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.icp"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.icp"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
7
)
{
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
7
)
{
pobj
.
actionBody
.
type
=
"yiming.edi"
;
pobj
.
actionBody
.
type
=
"yiming.edi"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.edi"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.edi"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"icpnb"
)
{
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"ICPNB"
)
{
pobj
.
actionBody
.
type
=
"yiming.icpnb"
;
pobj
.
actionBody
.
type
=
"yiming.icpnb"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.icpnb"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.icpnb"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"edinb"
)
{
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"EDINB"
)
{
pobj
.
actionBody
.
type
=
"yiming.edinb"
;
pobj
.
actionBody
.
type
=
"yiming.edinb"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.edinb"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.edinb"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"ICPXQ"
){
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"ICPXQ"
){
pobj
.
actionBody
.
type
=
"yiming.icpxq"
;
pobj
.
actionBody
.
type
=
"yiming.icpxq"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.icpxq"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.icpxq"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"EDIXQ"
){
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"EDIXQ"
){
pobj
.
actionBody
.
type
=
"yiming.edixq"
;
pobj
.
actionBody
.
type
=
"yiming.edixq"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.edixq"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.edixq"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"ICPWZ"
){
}
//外资暂时产品库未上架
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"ICPWZ"
){
pobj
.
actionBody
.
type
=
"yiming.icpwz"
;
pobj
.
actionBody
.
type
=
"yiming.icpwz"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.icpwz"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.icpwz"
;
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"EDIWZ"
){
}
else
if
(
pobj
.
actionBody
.
channel_type_code
==
"EDIWZ"
){
pobj
.
actionBody
.
type
=
"yiming.ediwz"
;
pobj
.
actionBody
.
type
=
"yiming.ediwz"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.ediwz"
;
pobj
.
actionBody
.
idempotentSource
=
"yiming.ediwz"
;
}
}
...
...
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