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
6088b62c
authored
Apr 06, 2023
by
SUDPTDUBLXEROFX\Administrator
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
成本
parent
b4b87eda
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
5 deletions
model/ly_sku.go
service/service_ly_common.go
tests/test1.go
model/ly_sku.go
View file @
6088b62c
...
...
@@ -226,11 +226,13 @@ func getLadderPrice(ladderPriceStr string) (ladderPrice []LadderPrice) {
ladderPriceArr
:=
gjson
.
Parse
(
ladderPriceStr
)
.
Array
()
for
_
,
price
:=
range
ladderPriceArr
{
ladderPrice
=
append
(
ladderPrice
,
LadderPrice
{
Purchases
:
price
.
Get
(
"purchases"
)
.
Int
(),
PriceUs
:
price
.
Get
(
"price_us"
)
.
Float
(),
PriceCn
:
price
.
Get
(
"price_cn"
)
.
Float
(),
PriceAc
:
price
.
Get
(
"price_ac"
)
.
Float
(),
CostPrice
:
price
.
Get
(
"cost_price"
)
.
Float
(),
Purchases
:
price
.
Get
(
"purchases"
)
.
Int
(),
PriceUs
:
price
.
Get
(
"price_us"
)
.
Float
(),
PriceCn
:
price
.
Get
(
"price_cn"
)
.
Float
(),
PriceAc
:
price
.
Get
(
"price_ac"
)
.
Float
(),
CostPrice
:
price
.
Get
(
"cost_price"
)
.
Float
(),
PriceCostUs
:
price
.
Get
(
"price_cost_us"
)
.
Float
(),
PriceCostCn
:
price
.
Get
(
"price_cost_cn"
)
.
Float
(),
})
}
if
len
(
ladderPrice
)
==
0
{
...
...
service/service_ly_common.go
View file @
6088b62c
...
...
@@ -203,11 +203,17 @@ func (ls *LyService) GetCoefficientAndPrice(sku model.LySku) model.LySku {
if
price
.
PriceCn
!=
0
{
data
[
key
]
.
PriceCn
=
c
.
MyRound
(
price
.
PriceCn
,
4
)
}
//联营或者专卖 同时 存在活动价格
if
(
sku
.
GoodsType
==
1
||
sku
.
GoodsType
==
2
)
&&
sku
.
AcType
>
1
&&
sku
.
Ratio
>
0
{
tempAcPrice
:=
c
.
MyRound
(
c
.
MulFloat
(
price
.
PriceCn
,
(
sku
.
Ratio
/
100
)),
4
)
data
[
key
]
.
PriceAc
=
tempAcPrice
data
[
key
]
.
PriceAcUs
=
c
.
MyRound
(
c
.
MulFloat
(
price
.
PriceUs
,
(
sku
.
RatioUs
/
100
)),
4
)
//todo 2023.4.6 专卖成本价
data
[
key
]
.
PriceCostUs
=
price
.
PriceCostUs
data
[
key
]
.
PriceCostCn
=
price
.
PriceCostCn
//优惠价后等于0,就代表没有搞活动
if
tempAcPrice
<=
0
{
sku
.
AcType
=
0
...
...
@@ -530,6 +536,7 @@ func (ls *LyService) GetCoefficientAndPrice(sku model.LySku) model.LySku {
RatioUsd
:
1
,
}
}
//美金成本价
priceCostUs
:=
c
.
MulFloat
(
price
.
PriceUs
,
usDiscountRatio
)
priceCostUs
=
c
.
MyRound
(
priceCostUs
,
4
)
...
...
tests/test1.go
0 → 100644
View file @
6088b62c
package
main
import
(
"fmt"
"sync"
)
func
add_num
(
a
,
b
int
,
done
func
())
{
defer
done
()
c
:=
a
+
b
fmt
.
Printf
(
"%d + %d = %d
\n
"
,
a
,
b
,
c
)
}
func
main
()
{
var
wg
sync
.
WaitGroup
for
i
:=
0
;
i
<
10
;
i
++
{
go
add_num
(
i
,
1
,
wg
.
Done
)
}
wg
.
Add
(
10
)
wg
.
Wait
()
println
(
"nnni"
)
}
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