updated subtotal when orders have voucher

This commit is contained in:
Frank John Begornia
2024-11-27 17:13:00 +08:00
parent 54278c568d
commit f26c9c274b
2 changed files with 11 additions and 1 deletions

View File

@@ -189,6 +189,16 @@ class TeamStoreModel extends Model
return $i;
}
function getSubtotalNew($cartKey)
{
$i = DB::table('cart_tmp')->select(DB::raw('SUM(Quantity * Price) AS Subtotal'))
->where('CartKey', '=', $cartKey)
// ->where('VoucherId', '=', null)
->get();
return $i;
}
function updateStoreItem($data, $url)
{
$i = DB::table('teamstore_products')->where('ProductURL', $url)