Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
semour
/
semour_web
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
45d01d2e
authored
Nov 29, 2022
by
SUDPTDUBLXEROFX\Administrator
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
更新购物车
parent
9a7cb86d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app/Http/Services/CartService.php
app/Http/Services/CartService.php
View file @
45d01d2e
...
@@ -63,11 +63,11 @@ class CartService
...
@@ -63,11 +63,11 @@ class CartService
$temp
[
"buy_price"
]
=
$buy_price
;
$temp
[
"buy_price"
]
=
$buy_price
;
$checkHas
=
CartModel
::
where
([
"user_id"
=>
$user_id
,
"goods_id"
=>
$goods_id
,
"status"
=>
1
])
->
first
();
$checkHas
=
CartModel
::
where
([
"user_id"
=>
$user_id
,
"goods_id"
=>
$goods_id
,
"status"
=>
1
])
->
first
();
if
(
$buy_number
<
\Arr
::
get
(
$skuInfo
,
"moq"
)){
if
(
$buy_number
<
\Arr
::
get
(
$skuInfo
,
"moq"
)
||
$buy_number
<
$skuInfo
[
"stock"
]
){
return
false
;
return
false
;
}
}
$temp
[
"buy_number"
]
=
$
skuInfo
[
"stock"
]
>
$buy_number
?
$buy_number
:
$skuInfo
[
"stock"
]
;
$temp
[
"buy_number"
]
=
$
buy_number
;
if
(
$checkHas
){
if
(
$checkHas
){
$cart_id
=
$checkHas
[
"cart_id"
];
$cart_id
=
$checkHas
[
"cart_id"
];
...
...
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