merge master

This commit is contained in:
edmondlang
2023-05-06 18:45:00 +08:00
parent e7c0e17ee4
commit 485a6e2e82
+3 -1
View File
@@ -1092,6 +1092,9 @@ Route::get('/billplz/audit', function (Request $request) {
}else{
echo "billplz error</br>";
}
}
});
Route::get('/final-duplicated-invoice-debug', function(){
$duplicatedTransactions = Transaction::select(DB::raw('owner_type, owner_id, receiver, type, GROUP_CONCAT(id) as transaction_ids, COUNT(*) as count'))
->whereNotIn('status', [ApprovalStatus::REJECTED,ApprovalStatus::SUSPENDED,ApprovalStatus::EXPIRED])
@@ -1142,4 +1145,3 @@ foreach ($duplicatedTransactions as $transaction) {
}
echo '</table>';
});