Merge branch 'dev' of bitbucket.org:jubilian/nhance into dev
This commit is contained in:
commit
01d87db58e
@ -675,3 +675,5 @@ $routes->group('test', function($routes) {
|
|||||||
$routes->post('api/saveForm', 'TestingController::saveForm');
|
$routes->post('api/saveForm', 'TestingController::saveForm');
|
||||||
$routes->get('insurerRFQRemainder', 'LeadsController::remainderForQcr');
|
$routes->get('insurerRFQRemainder', 'LeadsController::remainderForQcr');
|
||||||
});
|
});
|
||||||
|
$routes->cli('cli/testcli', 'TestingController::testcli');
|
||||||
|
|
||||||
|
|||||||
@ -9,6 +9,12 @@ use CodeIgniter\API\ResponseTrait;
|
|||||||
class TestingController extends BaseController
|
class TestingController extends BaseController
|
||||||
{
|
{
|
||||||
use ResponseTrait;
|
use ResponseTrait;
|
||||||
|
protected $myLogger;
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->myLogger = \Config\Services::mylogger();
|
||||||
|
}
|
||||||
|
|
||||||
public function saveForm()
|
public function saveForm()
|
||||||
{
|
{
|
||||||
@ -22,4 +28,12 @@ class TestingController extends BaseController
|
|||||||
'data' => $data
|
'data' => $data
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testcli()
|
||||||
|
{ echo "hi";
|
||||||
|
$this->myLogger->logme('error', "test log");
|
||||||
|
echo "hi 2";
|
||||||
|
log_message('error', 'test message for log_message_function');
|
||||||
|
echo "hi 3";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1672,6 +1672,7 @@
|
|||||||
// // Update the input value
|
// // Update the input value
|
||||||
// input.value = value;
|
// input.value = value;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$('#self').change(function() {
|
$('#self').change(function() {
|
||||||
|
|||||||
5829
app/Views/view_rfq_non_eb_new.php
Normal file
5829
app/Views/view_rfq_non_eb_new.php
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user