Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
goods
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bp
goods
Commits
bc3e64b8
Commit
bc3e64b8
authored
Sep 14, 2021
by
suntengda
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into tuancan
parents
644155a2
824b111a
Changes
13
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
409 additions
and
54 deletions
+409
-54
GoodsException.php
application/exception/custom/GoodsException.php
+1
-0
UserException.php
application/exception/custom/UserException.php
+3
-0
GoodsOnlineSiteValidate.php
application/library/Validate/GoodsOnlineSiteValidate.php
+23
-0
UserWechatBind.php
application/models/user/mysql/UserWechatBind.php
+9
-1
Goods.php
application/modules/Goods/controllers/Goods.php
+15
-0
GoodsService.php
application/services/goods/GoodsService.php
+224
-16
MarketingPindanGoodsService.php
application/services/goods/MarketingPindanGoodsService.php
+0
-11
MarketingGoodsService.php
application/services/marketing/MarketingGoodsService.php
+7
-3
MarketingService.php
application/services/marketing/MarketingService.php
+3
-0
UserService.php
application/services/user/UserService.php
+58
-20
application.ini
conf/application.ini
+1
-1
cli.ini
conf/cli.ini
+1
-1
Goods.php
daemon/Goods.php
+64
-1
No files found.
application/exception/custom/GoodsException.php
View file @
bc3e64b8
...
...
@@ -70,5 +70,6 @@ class GoodsException extends BaseException
49
=>
'库存不得小于已售库存'
,
self
::
RULE_LIMIT_ERROR
=>
'单人可买上限填写错误'
,
self
::
NOT_FIND_MARKETING
=>
'找不到活动'
,
52
=>
'过期时间不得小于等于上架开始时间'
,
];
}
\ No newline at end of file
application/exception/custom/UserException.php
View file @
bc3e64b8
...
...
@@ -22,5 +22,8 @@ class UserException extends BaseException
8
=>
'绑定手机号失败'
,
9
=>
'该手机号已绑定其他用户不能重复绑定'
,
10
=>
'mysql 异常'
,
11
=>
'头像昵称更新失败'
,
12
=>
'绑定手机号保存失败'
,
13
=>
'请求太频繁,稍后重试'
,
];
}
\ No newline at end of file
application/library/Validate/GoodsOnlineSiteValidate.php
0 → 100644
View file @
bc3e64b8
<?php
namespace
Validate
;
/**
* Class GoodsAuditValidate
*
* @package Validate
*/
class
GoodsOnlineSiteValidate
extends
BaseValidate
{
protected
$rule
=
[
'goods_spu_id'
=>
'require'
,
'online_type'
=>
'require'
,
];
protected
$message
=
[
"goods_spu_id"
=>
"商品id不能为空"
,
"online_type"
=>
"设置类型不能为空"
,
];
}
\ No newline at end of file
application/models/user/mysql/UserWechatBind.php
View file @
bc3e64b8
...
...
@@ -26,6 +26,14 @@ class UserWechatBind extends MysqlBase
return
self
::
get
(
$columns
,
$where
);
}
public
static
function
getRecordMaster
(
$where
,
$columns
=
[])
{
if
(
empty
(
$columns
))
{
$columns
=
'*'
;
}
return
self
::
getMaster
(
$columns
,
$where
);
}
public
static
function
getRecords
(
$where
,
$columns
=
[])
{
if
(
empty
(
$columns
))
{
...
...
@@ -34,7 +42,7 @@ class UserWechatBind extends MysqlBase
return
self
::
select
(
$columns
,
$where
);
}
public
static
function
getRecord
Master
(
$where
,
$columns
=
[])
public
static
function
getRecord
sMaster
(
$where
,
$columns
=
[])
{
if
(
empty
(
$columns
))
{
$columns
=
'*'
;
...
...
application/modules/Goods/controllers/Goods.php
View file @
bc3e64b8
...
...
@@ -16,6 +16,7 @@ use \Validate\GoodsOnlineOfflineValidate;
use
\Validate\PaySuccessGoodsCallbackValidate
;
use
\Validate\GoodsInitShopValidate
;
use
\Validate\PindanGoodsAddValidate
;
use
\Validate\GoodsOnlineSiteValidate
;
use
\App\Services\goods\ElasticGoodService
;
use
\App\Services\goods\MarketingPindanGoodsService
;
use
\App\Models\marketing\mysql\Marketing
;
...
...
@@ -118,6 +119,20 @@ class GoodsController extends Base
$this
->
success
();
}
/**
* 修改商品定点上架设置
* @date 2021-08-25
* @license [license]
* @version [version]
*/
public
function
online_siteAction
()
{
$params
=
$this
->
params
;
(
new
GoodsOnlineSiteValidate
())
->
validate
();
GoodsService
::
onlineSite
(
$params
);
$this
->
success
();
}
/**
* 审核通过/驳回
*/
...
...
application/services/goods/GoodsService.php
View file @
bc3e64b8
This diff is collapsed.
Click to expand it.
application/services/goods/MarketingPindanGoodsService.php
View file @
bc3e64b8
...
...
@@ -165,12 +165,6 @@ class MarketingPindanGoodsService
*/
private
static
function
addGoodsSku
(
$spuData
,
$shopId
,
$skuData
=
[])
{
$pindanSku
=
PindanGoodsSku
::
get
(
"goods_sku_id"
,
[
"goods_name"
=>
$skuData
[
"goods_name"
]
,
"life_account_id"
=>
$skuData
[
"life_account_id"
]]);
if
(
!
empty
(
$pindanSku
))
{
throw
new
GoodsException
([
'cus'
=>
17
]);
}
$res
=
GoodsService
::
getIdgenId
(
substr
(
$shopId
,
-
2
),
"goods"
);
if
(
empty
(
$res
))
{
throw
new
GoodsException
([
'cus'
=>
2
]);
...
...
@@ -267,11 +261,6 @@ class MarketingPindanGoodsService
*/
private
static
function
editGoodsSpu
(
$goodsSpu
,
$params
=
[])
{
$checkName
=
GoodsService
::
checkGoodsName
(
$params
[
"goods_name"
],
$goodsSpu
[
"life_account_id"
],
$goodsSpu
[
"goods_spu_id"
]);
if
(
!
$checkName
[
"can_use"
])
{
throw
new
GoodsException
([
'cus'
=>
17
]);
}
return
GoodsSpu
::
save
([
"desc_pic_url"
=>
$params
[
"desc_pic_url"
],
"desc"
=>
$params
[
"desc"
],
...
...
application/services/marketing/MarketingGoodsService.php
View file @
bc3e64b8
...
...
@@ -150,12 +150,12 @@ class MarketingGoodsService
//比例
if
(
!
empty
(
$secondCommission
)
&&
$commissionMode
==
1
)
{
$price
=
!
empty
(
$list
[
$i
][
'price'
])
?
$list
[
$i
][
'price'
]
:
0
;
$list
[
$i
][
'share_price'
]
=
substr
(
sprintf
(
"%.4f"
,
$secondCommission
*
$price
/
100
),
0
,
-
2
);
$list
[
$i
][
'share_price'
]
=
(
float
)
substr
(
sprintf
(
"%.4f"
,
$secondCommission
*
$price
/
100
),
0
,
-
2
);
}
//固定
if
(
!
empty
(
$commissionMode
)
&&
$commissionMode
==
2
)
{
$list
[
$i
][
'share_price'
]
=
substr
(
sprintf
(
"%.4f"
,
$secondCommission
/
100
),
0
,
-
2
);
$list
[
$i
][
'share_price'
]
=
(
float
)
substr
(
sprintf
(
"%.4f"
,
$secondCommission
),
0
,
-
2
);
}
$content
=
$userId
.
'_'
.
$value
[
'marketing_id'
];
...
...
@@ -195,9 +195,13 @@ class MarketingGoodsService
$data
=
[];
foreach
(
$marketingInfoIds
as
$goodsSkuId
=>
$marketingId
)
{
if
(
!
empty
(
$marketingList
[
$marketingId
][
"second_commission_value"
]))
{
if
(
!
empty
(
$marketingList
[
$marketingId
][
"second_commission_value"
])
&&
$marketingList
[
$marketingId
][
"commission_mode"
]
==
1
)
{
$data
[
$goodsSkuId
]
=
substr
(
sprintf
(
"%.4f"
,
$marketingList
[
$marketingId
][
"second_commission_value"
]
/
10000
),
0
,
-
2
);
}
if
(
!
empty
(
$marketingList
[
$marketingId
][
"second_commission_value"
])
&&
$marketingList
[
$marketingId
][
"commission_mode"
]
==
2
)
{
$data
[
$goodsSkuId
]
=
substr
(
sprintf
(
"%.4f"
,
$marketingList
[
$marketingId
][
"second_commission_value"
]
/
100
),
0
,
-
2
);
}
}
return
$data
;
}
...
...
application/services/marketing/MarketingService.php
View file @
bc3e64b8
...
...
@@ -518,6 +518,9 @@ class MarketingService
$clearPrice
=
!
empty
(
$value
[
"clear_price"
])
?
$value
[
"clear_price"
]
:
0
;
$price
=
!
empty
(
$value
[
"price"
])
?
$value
[
"price"
]
:
0
;
$chargeFee
=
!
empty
(
$price
)
?
(
float
)
bcmul
(
$price
,
self
::
CHARGEFEE
,
2
)
:
0
;
//手续费 (分)
if
(
$chargeFee
<
1
)
{
$chargeFee
=
0
;
}
if
(
!
empty
(
$clearPrice
)
&&
$clearPrice
>
0
)
{
if
(
$commissionMode
==
Marketing
::
COMMISSION_MODE_RATE
)
{
$commissionTotal
=
(
$firstCommissionRate
+
$secondCommissionRate
)
/
10000
*
$price
;
...
...
application/services/user/UserService.php
View file @
bc3e64b8
...
...
@@ -14,6 +14,8 @@ use Api\PhpServices\Idgen\Idgen;
use
Api\PhpUtils\Redis\RedisUtil
;
use
Api\PhpServices\JwUser\JwUser
;
use
App\Services\common\CommonService
;
use
Api\PhpUtils\Log\FileLog
;
use
Api\PhpUtils\Lock\FrequencyLockUtil
;
class
UserService
{
...
...
@@ -26,9 +28,24 @@ class UserService
$code
=
!
empty
(
$params
[
'code'
])
?
$params
[
'code'
]
:
''
;
//小程序授权code
$openid
=
!
empty
(
$params
[
'openid'
])
?
$params
[
'openid'
]
:
''
;
//小程序授权code
if
(
empty
(
$code
)
&&
empty
(
$openid
))
{
FileLog
::
error
(
"wechatLogin:获取参数为空"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
0
]);
}
$redis
=
RedisUtil
::
getInstance
(
'cache'
);
$key
=
"wx_wechat_login_"
.
$code
;
$keyCode
=
"wx_wechat_login_code_"
.
$code
;
$lock
=
FrequencyLockUtil
::
isLocked
(
$key
,
1
,
120
);
if
(
$lock
)
{
sleep
(
1
);
$user
=
$redis
->
get
(
$keyCode
);
if
(
!
empty
(
$user
))
{
$user
=
json_decode
(
$user
,
true
);
}
FileLog
::
error
(
"wechatLogin: lock"
,
json_encode
(
$user
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
FileLog
::
error
(
"wechatLogin: lock--params"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
return
$user
;
}
//需要授权微信
//if (empty($openid)) {
...
...
@@ -51,6 +68,7 @@ class UserService
if
(
empty
(
$response
)
||
array_key_exists
(
'errcode'
,
$response
))
{
//throw new \Exception('获取openid失败:' . $response['errcode']);
FileLog
::
error
(
"wechatLogin:获取openid失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
1
]);
}
//检查系统是已注册
...
...
@@ -58,7 +76,7 @@ class UserService
//}
$user
=
UserWechatBind
::
getRecord
([
'openid'
=>
$openid
]);
$user
=
UserWechatBind
::
getRecord
Master
([
'openid'
=>
$openid
]);
//如果系统不存在,用户信息,则注册新用户
if
(
empty
(
$user
)
&&
!
empty
(
$response
))
{
$insert
=
[
...
...
@@ -68,8 +86,13 @@ class UserService
'create_time'
=>
date
(
"Y-m-d H:i:s"
)
];
$newWechatId
=
UserWechatBind
::
save
(
$insert
);
$sessionKey
=
!
empty
(
$response
[
'session_key'
])
?
$response
[
'session_key'
]
:
''
;
//$newWechatId = UserWechatBind::save($insert);
$newWechatId
=
UserWechatBind
::
insertDuplicate
(
$insert
,
[
'session_key'
=>
$sessionKey
,
'create_time'
=>
date
(
"Y-m-d H:i:s"
)]);
if
(
!
$newWechatId
)
{
FileLog
::
error
(
"wechatLogin:登陆创建用户失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
FileLog
::
error
(
"wechatLogin:登陆创建用户失败--insert"
,
json_encode
(
$insert
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
2
]);
}
...
...
@@ -78,17 +101,21 @@ class UserService
$user
[
'session_key'
]
=
$response
[
'session_key'
];
}
else
{
if
(
empty
(
$user
))
{
FileLog
::
error
(
"wechatLogin:登陆创建用户失败-- 微信response"
,
json_encode
(
$response
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
2
]);
}
if
(
empty
(
$response
)){
FileLog
::
error
(
"wechatLogin:登陆创建用户失败-- 微信response 获取失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
2
]);
}
$insert
=
[
'session_key'
=>
!
empty
(
$response
[
'session_key'
])
?
$response
[
'session_key'
]
:
''
,
];
$newWechatId
=
UserWechatBind
::
save
(
$insert
,[
'openid'
=>
$openid
]);
}
$user
[
'third_session'
]
=
self
::
generate3rdSession
(
$openid
);
$redis
->
set
(
$keyCode
,
json_encode
(
$user
),
120
);
return
$user
;
}
...
...
@@ -102,47 +129,47 @@ class UserService
$appid
=
\Yaf\Registry
::
get
(
'config'
)
->
wechat
->
appid
;
if
(
!
$encryptedData
)
{
FileLog
::
error
(
"bindPhone:encryptedData 为空"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
3
]);
}
if
(
!
$iv
)
{
FileLog
::
error
(
"bindPhone:iv 为空"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
4
]);
}
$userInfo
=
UserWechatBind
::
getRecord
([
'openid'
=>
$openid
]);
$userInfo
=
UserWechatBind
::
getRecord
Master
([
'openid'
=>
$openid
]);
$sessionKey
=
!
empty
(
$userInfo
[
'session_key'
])
?
$userInfo
[
'session_key'
]
:
''
;
$openid
=
isset
(
$userInfo
[
'openid'
])
&&
$userInfo
[
'openid'
]
?
$userInfo
[
'openid'
]
:
''
;
if
(
empty
(
$userInfo
)
||
!
$sessionKey
||
!
$openid
)
{
FileLog
::
error
(
"bindPhone:userInfo获取失败"
,
json_encode
(
$userInfo
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
5
]);
}
//解密
$decryptData
=
[];
$wXBizDataCrypt
=
new
WxBizDataCrypt
(
$appid
,
$sessionKey
);
$errCode
=
$wXBizDataCrypt
->
decryptData
(
$encryptedData
,
$iv
,
$decryptData
);
if
(
$errCode
)
{
FileLog
::
error
(
"bindPhone:解密失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
6
]);
}
// 手机号解密
成功
// 手机号解密
失败
if
(
empty
(
$decryptData
[
'phoneNumber'
]))
{
FileLog
::
error
(
"bindPhone:手机号解密失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
FileLog
::
error
(
"bindPhone:手机号解密失败--decryptData"
,
json_encode
(
$decryptData
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
7
]);
}
$phoneNumber
=
strval
(
$decryptData
[
'phoneNumber'
]);
//判断是否已
$user
=
UserWechatBind
::
getRecord
([
'phone'
=>
$phoneNumber
]);
$user
=
UserWechatBind
::
getRecord
Master
([
'phone'
=>
$phoneNumber
]);
if
(
!
empty
(
$user
)
&&
$openid
!=
$user
[
'openid'
])
{
FileLog
::
error
(
"bindPhone:该手机号已绑定其他用户不能重复绑定"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
FileLog
::
error
(
"bindPhone:该手机号已绑定其他用户不能重复绑定--user"
,
json_encode
(
$user
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
9
]);
}
...
...
@@ -160,12 +187,16 @@ class UserService
];
$bindStatus
=
UserWechatBind
::
save
(
$update
,[
'wechat_id'
=>
$userInfo
[
'wechat_id'
]]);
if
(
empty
(
$bindStatus
)){
FileLog
::
error
(
"bindPhone:绑定手机号保存失败"
,
json_encode
(
$update
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
12
]);
}
if
(
!
$phoneNumber
)
{
FileLog
::
error
(
"bindPhone:该手机号已绑定其他用户不能重复绑定--user"
,
json_encode
(
$user
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
8
]);
}
CommonService
::
isNewUser
(
$params
);
$isNewUser
=
CommonService
::
isNewUser
([
'openid'
=>
$openid
]);
if
(
!
empty
(
$isNewUser
)
&&
$isNewUser
[
'is_new_user'
]
==
1
)
{
$userInfo
[
'is_pop_up'
]
=
1
;
...
...
@@ -211,10 +242,17 @@ class UserService
"city"
=>
!
empty
(
$params
[
'city'
])
?
$params
[
'city'
]
:
''
,
"language"
=>
!
empty
(
$params
[
'language'
])
?
$params
[
'language'
]
:
''
,
];
$bindStatus
=
UserWechatBind
::
save
(
$update
,[
'openid'
=>
$params
[
'openid'
]]);
$user
=
UserWechatBind
::
getRecordMaster
([
'openid'
=>
$params
[
'openid'
]]);
if
(
empty
(
$user
)){
$update
[
'openid'
]
=
$params
[
'openid'
];
$bindStatus
=
UserWechatBind
::
save
(
$update
);
}
else
{
$bindStatus
=
UserWechatBind
::
save
(
$update
,[
'openid'
=>
$params
[
'openid'
]]);
}
if
(
!
$bindStatus
)
{
throw
new
UserException
([
'cus'
=>
8
]);
FileLog
::
error
(
"bindAvatar:绑定头像失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
FileLog
::
error
(
"bindAvatar:绑定头像失败--update"
,
json_encode
(
$update
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
11
]);
}
return
$update
;
}
...
...
conf/application.ini
View file @
bc3e64b8
...
...
@@ -31,6 +31,6 @@ exception.sys.msg = "系统未定义异常,研发正在赶来的路上..."
[prod : common : exception]
[p
re
: common : exception]
[p
erf
: common : exception]
[test : common : exception]
[dev : common : exception]
\ No newline at end of file
conf/cli.ini
View file @
bc3e64b8
...
...
@@ -11,6 +11,6 @@ idgen.partner = "bp"
idgen.key
=
"5cfdb867e96374c7883b31d6928cc4cb"
[prod : common]
[p
re
: common ]
[p
erf
: common ]
[test: common ]
[dev : common ]
\ No newline at end of file
daemon/Goods.php
View file @
bc3e64b8
...
...
@@ -29,8 +29,10 @@ class Goods implements DaemonServiceInterface
GoodsSku
::
save
(
$colums
,
$where
);
//更新es
GoodsService
::
updateGoodsInfoToEs
(
$where
[
'goods_sku_id'
]);
}
$this
->
onlineGoods
();
$this
->
onlineOffGoods
();
}
...
...
@@ -53,4 +55,65 @@ class Goods implements DaemonServiceInterface
GoodsService
::
updateGoodsInfoToEs
(
$where
[
'goods_sku_id'
]);
}
}
/**
*
* 自动上线
*/
public
function
onlineGoods
()
{
sleep
(
2
);
$orderData
=
[
'online_type'
=>
2
,
'online_status'
=>
[
0
,
2
],
'audit_status'
=>
1
,
'online_start_time[<]'
=>
date
(
"Y-m-d H:i:s"
,
time
()),
'online_end_time[>]'
=>
date
(
"Y-m-d H:i:s"
,
time
()),
'LIMIT'
=>
100
,
];
$goodsList
=
GoodsSku
::
getRecords
(
$orderData
);
DaemonLog
::
info
(
'DaemonServiceOnline_goods'
,
json_encode
(
$goodsList
));
foreach
(
$goodsList
as
$key
=>
$value
)
{
$where
=
[];
$where
[
'goods_sku_id'
]
=
!
empty
(
$value
[
'goods_sku_id'
])
?
$value
[
'goods_sku_id'
]
:
''
;
$colums
=
[
'online_status'
=>
1
,
];
GoodsSku
::
save
(
$colums
,
$where
);
//更新es
GoodsService
::
updateGoodsInfoToEs
(
$where
[
'goods_sku_id'
]);
}
}
/**
*
* 自动下架
*/
public
function
onlineOffGoods
()
{
sleep
(
2
);
$orderData
=
[
'online_type'
=>
2
,
'online_status'
=>
1
,
'audit_status'
=>
1
,
'online_end_time[<]'
=>
date
(
"Y-m-d H:i:s"
,
time
()),
'LIMIT'
=>
100
,
];
$goodsList
=
GoodsSku
::
getRecords
(
$orderData
);
DaemonLog
::
info
(
'DaemonServiceOnlineOff_goods'
,
json_encode
(
$goodsList
));
foreach
(
$goodsList
as
$key
=>
$value
)
{
$where
=
[];
$where
[
'goods_sku_id'
]
=
!
empty
(
$value
[
'goods_sku_id'
])
?
$value
[
'goods_sku_id'
]
:
''
;
$colums
=
[
'online_status'
=>
2
,
];
GoodsSku
::
save
(
$colums
,
$where
);
//更新es
GoodsService
::
updateGoodsInfoToEs
(
$where
[
'goods_sku_id'
]);
}
}
}
\ No newline at end of file
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