Skip to content

Commit

Permalink
Feat: 카드 order desc로 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
Waterticket committed Dec 10, 2023
1 parent 3a60c2d commit 9bb457d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hotopay.model.php
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,10 @@ public static function updatePurchaseItemSubscriptionSrl(int $item_srl, int $sub

public static function getCartItemList()
{
$output = executeQueryArray('hotopay.getCartItemList');
$args = new \stdClass();
$args->order_type = "desc";

$output = executeQueryArray('hotopay.getCartItemList', $args);
if(!$output->toBool())
{
throw new \Rhymix\Framework\Exceptions\DBError(sprintf("DB Error: %s in %s line %s", $output->getMessage(), __FILE__, __LINE__));
Expand Down

0 comments on commit 9bb457d

Please sign in to comment.