add reporting for download history import mapped invoice and receipt and with fix bug

This commit is contained in:
Steve Ng
2023-12-27 13:47:12 +08:00
parent 18ea70ccd6
commit ca07fc161e
25 changed files with 827 additions and 24 deletions
@@ -0,0 +1,20 @@
<?php
namespace App\Http\Controllers\Accounting;
use Illuminate\Http\Request;
use Illuminate\Http\JsonResponse;
use App\Classes\Modules\Accounting\ControllersLogic\HistoryImportedTransactionMappedControllerLogic;
class HistoryImportedTransactionMappedController
{
/**
* @param Request $request
* @param ApprovePaymentLogic $logic
* @return JsonResponse
*/
public function getImported(Request $request, HistoryImportedTransactionMappedControllerLogic $logic): JsonResponse {
return $logic->execute($request);
}
}