Gas stock details changes-6 vadivel J 28-11-2024

This commit is contained in:
vadivelJ96 2024-11-28 15:43:02 +05:30
parent 181b6648ec
commit 369446b2c6
7 changed files with 8 additions and 11 deletions

View File

@ -250,6 +250,7 @@ $routes->post('purchaseorder/DeletePODetails', 'Purchaseorder::DeletePODetails')
$routes->post('purchaseorder/addNewCapitalPurchaseOrder', 'Purchaseorder::addNewCapitalPurchaseOrder');
$routes->post('purchaseorder/addNewImportPurchaseOrder', 'Purchaseorder::addNewImportPurchaseOrder');
$routes->post('servicepurchaseorder/addNewServicePurchaseOrder', 'Servicepurchaseorder::addNewServicePurchaseOrder');
$routes->post('servicepurchaseorder/addfileuplod', 'Servicepurchaseorder::addfileuplod');
$routes->get('EditPO', 'Purchaseorder::EditPurchaseOrder');
$routes->get('purchaseorder/CreatePOPrint', 'Purchaseorder::CreatePOPrint');
@ -282,7 +283,7 @@ $routes->post('getCostCenterData', 'Inwardgateregister::getCostCenterData');
$routes->post('ViewIGRfile', 'Inwardgateregister::ViewIGRfile');
$routes->post('getAdditionalIGRFile', 'Inwardgateregister::getAdditionalIGRFile');
$routes->post('deleteAdditionalIGRFile', 'Inwardgateregister::deleteAdditionalIGRFile');
$routes->get('download-files/(:segment)', 'Inwardgateregister::downloadFilesAsZip/$1');
$routes->get('download-files/(:segment)', 'Inwardgateregister::downloadFilesAsZip/$1');
$routes->post('inwardgateregister/edituploadfile', 'Inwardgateregister::edituploadfile');

View File

@ -716,7 +716,7 @@ class Servicepurchaseorder extends BaseController
$file = $this->request->getFile('file');
if ($file && $file->isValid()) {
$uploadPath = base_url() . 'public/uploads/BillFiles/';
$uploadPath = APPPATH . 'public/uploads/BillFiles/';
$file->move($uploadPath);
$picture = $file->getName();

View File

@ -1318,7 +1318,7 @@ if (!empty($getlogpodtl)) {
<div class="col-md-offset-10 col-md-8">
<input type="button" class="btn btn-success" id="addmorebutton" value=" ADD FILES..">
<button type="button" class="btn btn-success" id="addmorebutton">ADD FILES</button>
</div>
@ -3615,18 +3615,14 @@ if (!empty($getlogpodtl)) {
//alert(counter);
div.innerHTML = '<div class="form-row">' +
'<div class="form-group col-md-3">' +
'<div class="form-group col">' +
'<label><br></label>' +
'<input type="file" name="browseFiles" id="images' + counter + '" onchange="Copyfilename(this.name); "><br>' +
'<button class="btn btn-success btn-sm add add_this" id="addbtn" onclick="addRow()">ADD</button>'
'</div>' +
'</div>'+
'<div class="form-group col-md-2">' +
'<label><br><br></label>' +
'<button class="btn btn-success add add_this" id="addbtn" onclick="addRow()">ADD</button></div>' +
'</div>' +
'</div>';
$('#newdiv').append(div);

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File