This commit is contained in:
aozhiwei 2023-08-02 16:41:13 +08:00
parent ebc2855a61
commit 0c4c0a789d
3 changed files with 27 additions and 1 deletions

View File

@ -1361,6 +1361,7 @@ CREATE TABLE `t_outapp_order` (
`address` varchar(60) DEFAULT NULL COMMENT '申请时账号绑定的钱包',
`goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '物品id',
`price` double NOT NULL DEFAULT '0' COMMENT '价格',
`params` mediumblob COMMENT 'params',
`status` int(11) NOT NULL DEFAULT '0' COMMENT 'status',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',

View File

@ -227,6 +227,13 @@ class ShopController extends BaseAuthedController {
$orderId,
$nowTime
);
OutAppOrder::add(
$orderId,
$platform,
$goodsId,
$price,
json_encode($params)
);
/*
签名方式:将所有的参数用&连接起来做md5加secret_key
*/

View File

@ -14,7 +14,7 @@ class OutAppOrder extends BaseModel {
public static function find($orderId)
{
$row = SqlHelper::ormSelectOne(
myself()->_get(),
myself()->_getMysql(''),
't_outapp_order',
array(
'order_id' => $orderId,
@ -23,6 +23,24 @@ class OutAppOrder extends BaseModel {
return $row;
}
public static function add($orderId, $platform, $goodsId, $price, $paramsJson)
{
SqlHelper::insert(
myself()->_getMysql(''),
't_outapp_order',
array(
'order_id' => $orderId,
'account_id' => myself()->_getAccountId(),
'platform' => $platform,
'goods_id' => $goodsId,
'price' => $price,
'params' => $paramsJson,
'createtime' => myself()->_getNowTime(),
'modifytime' => myself()->_getNowTime(),
)
);
}
public static function markFinished($orderId)
{
SqlHelper::update(