Merge branch 'main' of bitbucket.org:jubilian/nhance_partner_be

This commit is contained in:
Gowtham M 2025-12-12 18:19:35 +05:30
commit 423ca35393
2 changed files with 1281 additions and 108 deletions

View File

@ -136,6 +136,11 @@ $routes->group('api', ['filter' => 'appSignature'], function ($routes) {
$routes->get("dashboard/partnerDashboard", "DashboardController::partnerDashboard");
$routes->get("dashboard/productivityDashboard", "DashboardController::productivityDashboard");
$routes->get("dashboard/downloadBrokerPoliciesExcel", "DashboardController::downloadBrokerPoliciesExcel");
$routes->get("dashboard/downloadInsurerPoliciesExcel", "DashboardController::downloadInsurerPoliciesExcel");
$routes->get("dashboard/downloadProductPoliciesExcel", "DashboardController::downloadProductPoliciesExcel");
//invoice
$routes->get('invoice/list', 'InvoiceController::invoiceList');
$routes->get('invoice/details', 'InvoiceController::findInvoiceWithItems');
@ -154,6 +159,7 @@ $routes->group('api', ['filter' => 'appSignature'], function ($routes) {
});
$routes->get("api/policy/PolicyFilePath", "PolicyController::PolicyFilePath");
$routes->group('test', [ ], function ($routes) {
@ -161,20 +167,7 @@ $routes->group('api', ['filter' => 'appSignature'], function ($routes) {
$routes->get("policyCommissionCalculationAndGeminiPolicyRead", "PolicyController::policyCommissionCalculationAndGeminiPolicyRead");
});
// $routes->get("policy/searchThePolicies", "PolicyController::searchThePolicies");
// $routes->get("dashboard/businessDashboard", "DashboardController::businessDashboard");
// $routes->get("dashboard/partnerDashboard", "DashboardController::partnerDashboard");
// $routes->get("dashboard/productivityDashboard", "DashboardController::productivityDashboard");
// $routes->get('agent/agentList', 'AgentController::agentList');
// $routes->get('salesExecutive/executiveList', 'SalesExecutive::salesExecutiveList');
// $routes->get('salesExecutive/findExecutive', 'SalesExecutive::findSalesExecutive');
// $routes->post('salesExecutive/createExecutive', 'SalesExecutive::createSalesExecutive');
// $routes->post('salesExecutive/updateExecutive', 'SalesExecutive::updateSalesExecutivedetails');
// $routes->post('salesExecutive/changeExecutiveStatus', 'SalesExecutive::changeSalesExecutiveStatus');
$routes->cli('cli/processjob', 'JobWorker::processJob');
$routes->cli('cli/processjobs', 'JobWorker::processJobs');
$routes->get("processjob", "JobWorker::processJob");

File diff suppressed because it is too large Load Diff