New button to allow admin to switch e-credit note to normal credit note for customer otped in for e-invoice

This commit is contained in:
Dillon Ngo
2026-06-04 11:24:22 +08:00
parent 77abd7b8d0
commit 20b22e6341
9 changed files with 205 additions and 4 deletions
@@ -0,0 +1,14 @@
<?php
namespace App\Http\Controllers\Transactions;
use Illuminate\Http\Request;
use App\Classes\Modules\Transactions\ControllersLogic\UpdateCreditNoteOptLogic;
class UpdateCreditNoteOptController
{
public function opt(Request $request, UpdateCreditNoteOptLogic $logic) {
return $logic->execute($request);
}
}