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
94765a4c
authored
Aug 23, 2023
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
还是精度问题
parent
5844fffa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
30 deletions
pkg/common/function.go
service/service_price.go
pkg/common/function.go
View file @
94765a4c
...
...
@@ -57,14 +57,16 @@ func Sha1(query string, pri_key string) string {
return
query
}
/**
@author wangsong
获取请求过来的参数,并转为字符串,作用:为了有时候需要记录请求参数,压入日志
注意:
1.如果请求的是json,接收是需要读取body,而gin大部分函数只能读取一次body,读第二次会读不到
而此函数需要频繁调用,所以需要在调用此函数之前,使用过ShouldBindBodyWith 方法,不然会读取不到。
具体需了解 ShouldBindBodyWith 源码 和 多次使用shouldbindjsond 的问题
2.表单提交不需要读body,则正常使用
/*
*
@author wangsong
获取请求过来的参数,并转为字符串,作用:为了有时候需要记录请求参数,压入日志
注意:
1.如果请求的是json,接收是需要读取body,而gin大部分函数只能读取一次body,读第二次会读不到
而此函数需要频繁调用,所以需要在调用此函数之前,使用过ShouldBindBodyWith 方法,不然会读取不到。
具体需了解 ShouldBindBodyWith 源码 和 多次使用shouldbindjsond 的问题
2.表单提交不需要读body,则正常使用
*/
func
GetRequestParam
(
ctx
*
gin
.
Context
)
string
{
ct
:=
ctx
.
Request
.
Header
.
Get
(
"Content-Type"
)
...
...
@@ -141,7 +143,8 @@ func CopyStruct(struct1 interface{}, struct2 interface{}, Status ...int) {
}
}
/**
/*
*
@author wangsong
合并map,都有值以map1为主,字段类型以map1为主
*/
...
...
@@ -227,7 +230,7 @@ func Md5(str string) string {
return
hex
.
EncodeToString
(
hash
.
Sum
(
nil
))
}
//非精确匹配,字符串截取向下80%,5个字符以下不截,5-10个截一个,10-20个向下取80%,20个以上向下取70%
//
非精确匹配,字符串截取向下80%,5个字符以下不截,5-10个截一个,10-20个向下取80%,20个以上向下取70%
func
SubKeyWordStr
(
str
string
)
string
{
strLen
:=
len
(
str
)
strLenFloat
:=
float64
(
strLen
)
...
...
@@ -248,7 +251,7 @@ func SubKeyWordStr(str string) string {
return
str
}
//转成字符串的方法
//
转成字符串的方法
func
ToString
(
a
interface
{})
string
{
if
v
,
p
:=
a
.
(
int
);
p
{
return
strconv
.
Itoa
(
v
)
...
...
@@ -271,14 +274,14 @@ func ToString(a interface{}) string {
return
"change to String error"
}
//替换字符串,不区分大小写
//
替换字符串,不区分大小写
func
CaseInsensitiveReplace
(
subject
string
,
search
string
,
replace
string
)
string
{
searchRegex
:=
regexp
.
MustCompile
(
"(?i)"
+
search
)
return
searchRegex
.
ReplaceAllString
(
subject
,
replace
)
}
/*
md5字符串
md5字符串
*/
func
GetKey
(
s
string
)
string
{
return
php2go
.
Md5
(
strings
.
ToLower
(
s
))
...
...
@@ -349,7 +352,7 @@ func StrRandom(lenNum int) string {
return
result
}
//生成范围区间内的随机数
//
生成范围区间内的随机数
func
Rand
(
min
,
max
int
)
int
{
n
,
_
:=
crand
.
Int
(
crand
.
Reader
,
big
.
NewInt
(
int64
(
max
+
1
)))
return
int
(
n
.
Int64
())
+
min
...
...
@@ -363,7 +366,7 @@ func CopyMapString(distmap map[string]string) map[string]string {
return
tmpmap
}
//反爬虫加密验证
//
反爬虫加密验证
func
CheckSignApi
(
ctx
*
gin
.
Context
)
(
resNo
int
)
{
params
:=
make
(
map
[
string
]
string
)
if
ctx
==
nil
{
...
...
@@ -442,7 +445,7 @@ func CheckSignApi(ctx *gin.Context) (resNo int) {
return
3
}
//内部免验证通过
//
内部免验证通过
func
auth
(
ctx
*
gin
.
Context
)
bool
{
if
ctx
==
nil
{
return
false
...
...
@@ -498,7 +501,7 @@ func isSlice(arg interface{}) (val reflect.Value, ok bool) {
return
}
//向左补充字符串
//
向左补充字符串
func
StrPadLeft
(
input
string
,
padLength
int
,
padString
string
)
string
{
output
:=
padString
...
...
@@ -513,7 +516,7 @@ func StrPadLeft(input string, padLength int, padString string) string {
return
output
[
:
padLength
-
len
(
input
)]
+
input
}
//移除字符串切片中某個元素
//
移除字符串切片中某個元素
func
RemoveSliceString
(
s
[]
string
,
i
string
)
[]
string
{
b
:=
make
([]
string
,
0
)
for
_
,
v
:=
range
s
{
...
...
@@ -525,7 +528,7 @@ func RemoveSliceString(s []string, i string) []string {
return
b
}
//map排序
//
map排序
func
MapSort
(
mapList
map
[
int
]
int
)
[]
int
{
var
(
keys
[]
int
...
...
@@ -544,7 +547,7 @@ func MapSort(mapList map[int]int) []int {
return
newList
}
////////////类型转换/////////////////////
//
//////////类型转换/////////////////////
func
MyInt
(
str
string
)
int
{
res
,
_
:=
strconv
.
ParseInt
(
str
,
10
,
64
)
return
int
(
res
)
...
...
@@ -580,7 +583,8 @@ func MyIntToStr(i int) string {
}
/*
四舍五入取多少位
四舍五入取多少位
@param float64 x 目标分析字符串
@param int wei 取小数多少位
*/
...
...
@@ -589,12 +593,16 @@ func MyRound(x float64, wei int) float64 {
return
math
.
Floor
(
x
+
0.5
)
}
weis
:=
map
[
int
]
float64
{
1
:
10
,
2
:
100
,
3
:
1000
,
4
:
10000
,
5
:
100000
,
6
:
1000000
,
1
:
10
,
2
:
100
,
3
:
1000
,
4
:
10000
,
5
:
100000
,
6
:
1000000
,
7
:
10000000
,
8
:
100000000
,
9
:
1000000000
,
10
:
1000000000
,
}
weishu
:=
weis
[
wei
]
a
:=
math
.
Floor
(
x
*
weishu
+
0.5
)
/
weishu
...
...
@@ -603,7 +611,7 @@ func MyRound(x float64, wei int) float64 {
////////////类型转换/////////////////////
//浮点数乘法
//
浮点数乘法
func
MulFloat
(
first
float64
,
args
...
float64
)
float64
{
var
result
float64
result
=
first
...
...
@@ -613,7 +621,7 @@ func MulFloat(first float64, args ...float64) float64 {
return
result
}
//浮点除法
//
浮点除法
func
DivFloat
(
first
float64
,
second
float64
)
float64
{
return
((
first
*
1000000000
)
/
(
second
*
1000000000
))
}
service/service_price.go
View file @
94765a4c
...
...
@@ -661,7 +661,7 @@ func (ps *PriceService) TransformSpecialSupplierPrice(sku model.LySku, priceUs f
//fmt.Println(rmbRatio, usRatio)
//人民币汇率转美金汇率
usRatio
=
c
.
MyRound
(
c
.
DivFloat
(
rmbRatio
,
usRatio
),
6
)
usRatio
=
c
.
MyRound
(
c
.
DivFloat
(
rmbRatio
,
usRatio
),
10
)
priceUs
=
c
.
MyRound
(
c
.
MulFloat
(
priceUs
,
usRatio
),
4
)
}
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