Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
黄成意
/
go_sku_server
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
5bab8b4d
authored
Apr 07, 2023
by
mushishixian
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
rs价格
parent
be38dbb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
7 deletions
service/service_price.go
service/service_price.go
View file @
5bab8b4d
package
service
import
(
"fmt"
"go_sku_server/model"
c
"go_sku_server/pkg/common"
"go_sku_server/pkg/gredis"
...
...
@@ -235,22 +234,17 @@ func getMouserActivityPrice(sku model.LySku) model.LySku {
func
(
ls
*
LyService
)
TransformSpecialSupplierPrice
(
supplierId
int64
,
priceUs
float64
,
usRatio
float64
)
float64
{
switch
supplierId
{
case
6
:
fmt
.
Println
(
"特殊处理,原始美金价为 : "
,
priceUs
)
customRate
:=
7.85
//港币转美金
priceUs
=
c
.
MyRound
(
c
.
DivFloat
(
priceUs
,
customRate
),
4
)
fmt
.
Println
(
"特殊处理后的美金价为 : "
,
priceUs
)
break
case
21
:
fmt
.
Println
(
"特殊处理,原始美金价为 : "
,
priceUs
)
customRate
:=
usRatio
//人民币转美金
priceUs
=
c
.
MyRound
(
c
.
DivFloat
(
priceUs
,
customRate
),
4
)
fmt
.
Println
(
"特殊处理后的美金价为 : "
,
priceUs
)
priceUs
=
c
.
MyRound
(
c
.
DivFloat
(
priceUs
,
1.13
),
4
)
break
case
1676
:
fmt
.
Println
(
"特殊处理,原始美金价为 : "
,
priceUs
)
customRate
:=
0.93
//欧元转美金
priceUs
=
c
.
MyRound
(
c
.
DivFloat
(
priceUs
,
customRate
),
4
)
fmt
.
Println
(
"特殊处理后的美金价为 : "
,
priceUs
)
break
}
return
priceUs
...
...
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