Merge branch 'CI4-Application' of bitbucket.org:venbainformationtechnology/ria into CI4-Application
This commit is contained in:
commit
10256f2299
@ -290,6 +290,21 @@ class Amendmentpurchaseorder extends BaseController
|
||||
$AmendmentNewPoNo = generate_amendment_po_number($PONO);
|
||||
|
||||
$POMaster = array('PONO' =>$AmendmentNewPoNo,'ParentPO' => $PONO, 'SupplierID' => $SupplierID, 'POType' => $POType, 'PORange' => $PoRange, 'TotalOrderValue' => $TotalOrderValueSummary, 'PODate' => $PODate, 'Status' => PO_RELEASED, 'PaymentTerms' => $PaymentTerms, 'PaymentOtherDescription' => $Otherpayment, 'Mode_Of_Shipment' => $Modeofshipment, 'Supplier_Reference' => $supplierreference, 'Supplier_Offer_No' => $supplieroffno, 'Other_Reference' => $otherreference, 'Fincap' => $fincap, 'InsuranceStatus' => $insurancestatus, 'InsuranceNumber' => $InsuranceNumber, 'POSubType' => $revenuetype, 'DeliverySchedule' => $DeliverySchedule, 'DeliveryOption' => $DeliveryOption, 'ServiceDescription' => $SpecialInstruction, 'CreatedBy' => $updatedBy, 'DeliveryAddress' => $DeliveryAddr, 'DeliveryDate' => $Deliverydt, 'UpdatedOn' => $updateddt, 'ReleasedBy' => $updatedBy, 'ReleasedOn' => $updateddt, 'AmendedDetails' => $MAD, 'IsQualityChkReqired' => $qtycheckresult);
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
if ($file && $file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
$POMaster['POFile'] = $requestfilename;
|
||||
}
|
||||
}
|
||||
}
|
||||
$LastPO = $this->purchaseorder_model->addAmendPOMaster($POMaster, $updatedBy, $PONO);
|
||||
if (count($LastPO) > 0) {
|
||||
$NewPO = $LastPO[0]['PONO'];
|
||||
@ -622,6 +637,21 @@ class Amendmentpurchaseorder extends BaseController
|
||||
$AmendmentNewPoNo = generate_amendment_po_number($PONO);
|
||||
|
||||
$POMaster = array('PONO' =>$AmendmentNewPoNo,'ParentPO' => $PONO, 'POType' => $POType, 'SupplierID' => $SupplierID, 'TotalOrderValue' => $TotalOrderValueSummary, 'PODate' => $PODate, 'Status' => PO_RELEASED, 'DeliverySchedule' => $DeliverySchedule, 'DeliveryOption' => $DeliveryOption, 'ServiceDescription' => $scopeofwork, 'CreatedBy' => $updatedBy, 'DeliveryAddress' => $DeliveryAddr, 'DeliveryDate' => $Deliverydt, 'CreatedDate' => $updateddt, 'PaymentTerms' => $PaymentTerms, 'PaymentOtherDescription' => $Otherpayment, 'ServiceWorkStatus' => $WorkStatus, 'ReleasedBy' => $updatedBy, 'ReleasedOn' => $updateddt, 'AmendedDetails' => $MAD, 'Supplier_Reference' => $SupplierReference, 'Mode_Of_Shipment' => $ModeOfShipment, 'Supplier_Offer_No' => $SuppliersOfferNo, 'Other_Reference' => $OtherReferences, 'Fincap' => $Fincap, 'Description_Of_Service' => $DescriptionOfPo, 'InsuranceStatus' => $InsuranceOptions, 'InsuranceNumber' => $InsuranceNumber, 'POSubType' => $ServiceTypeOptions, 'IsQualityChkReqired' => $qtycheckresult);
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
if ($file && $file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
$POMaster['POFile'] = $requestfilename;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$LastPO = $this->purchaseorder_model->addAmendPOMaster($POMaster, $updatedBy, $PONO);
|
||||
|
||||
@ -921,6 +951,22 @@ class Amendmentpurchaseorder extends BaseController
|
||||
$updatedBy = $this->session->get('userId');
|
||||
$AmendmentNewPoNo = generate_amendment_po_number($PONO);
|
||||
$POMaster = array('PONO' =>$AmendmentNewPoNo,'ParentPO' => $PONO, 'SupplierID' => $SupplierID, 'TotalOrderValue' => $FinalTotalOrder, 'POType' => $POType, 'PODate' => $PODate, 'Status' => PO_RELEASED, 'CapitalRange' => $PoRange, 'ExchangeRate' => $ExchangeRate, 'ExchangeRateCalculatedon' => $ExchangeRateOn, 'PaymentTerms' => $PaymentMethod, 'PaymentOtherDescription' => $Otherpayment, 'ServiceDescription' => $SpcialInstruction, 'CreatedBy' => $CreateBy, 'DeliveryAddress' => $DeliveryAddr, 'DeliveryDate' => $Deliverydt, 'CreatedDate' => $createddt, 'ReleasedBy' => $updatedBy, 'ReleasedOn' => $updateddt, 'DeliverySchedule' => $DeliverySchedule, 'DeliveryOption' => $DeliveryOption, 'CurrencyType' => $currencytypeID, 'AmendedDetails' => $MAD, 'Import_DispatchDetails' => $curdispatch, 'Import_PlaceofOrgin' => $PlaceOforigin, 'Supplier_Reference' => $SupplierReference, 'Mode_Of_Shipment' => $ModeOfShipment, 'Supplier_Offer_No' => $SuppliersOfferNo, 'Other_Reference' => $OtherReferences, 'Fincap' => $Fincap, 'InsuranceStatus' => $InsuranceOptions, 'InsuranceNumber' => $InsuranceNumber, 'POSubType' => $ServiceTypeOptions, 'IsQualityChkReqired' => $qtycheckresult);
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
if ($file && $file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
$POMaster['POFile'] = $requestfilename;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$LastPO = $this->purchaseorder_model->addAmendPOMaster($POMaster, $CreateBy, $PONO);
|
||||
|
||||
|
||||
@ -1099,14 +1099,34 @@ $mpdf->use_kwt = true;
|
||||
$Local_Interstate = $this->request->getPost('Range');
|
||||
$Qualitycheck = 1;
|
||||
$IsOpenOrder = ($this->request->getPost('IsOpenOrder') !== null && !empty($this->request->getPost('IsOpenOrder')) && $this->request->getPost('IsOpenOrder') === '1') ? $this->request->getPost('IsOpenOrder') : null;
|
||||
|
||||
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
|
||||
if ($file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
$requestfilename = "";
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
}
|
||||
}else{
|
||||
$requestfilename = "";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Generate PO Number
|
||||
$lastPONO = $this->purchaseorder_model->lastPONO();
|
||||
$newPONO = generate_po_number($lastPONO);
|
||||
log_message('debug', 'newPONO returned: ' . $newPONO);
|
||||
|
||||
// PO Master
|
||||
$POList = array('PONO'=>$newPONO,'SupplierID' => $SupplierID, 'TotalOrderValue' => $TotalOrderValueSummary, 'PODate' => $PODate, 'DeliverySchedule' => $DeliverySchedule, 'DeliveryOption' => $DeliveryOption, 'Status' => $POStatus, 'PORange' => $Local_Interstate, 'ServiceDescription' => $SpcialInstruction, 'CreatedBy' => $CreateBy, 'DeliveryAddress' => $DeliveryAddr, 'DeliveryDate' => $Deliverydt, 'CreatedDate' => $createddt, 'PaymentTerms' => $PaymentTerms, 'POType' => $POType, 'CapitalRange' => $Local_Interstate, 'PaymentOtherDescription' => $OtherPayment, 'Supplier_Reference' => $supplierreference, 'Mode_Of_Shipment' => $Modeofshipment, 'Supplier_Offer_No' => $supplieroffno, 'Other_Reference' => $otherreference, 'Fincap' => $fincap, 'InsuranceStatus' => $insurancestatus, 'POSubType' => $revenuetype, 'InsuranceNumber' => $InsuranceNumber, 'IsQualityChkReqired' => $Qualitycheck, 'BudgetType' => $BudgetType,'IsOpenOrder'=>$IsOpenOrder);
|
||||
$POList = array('PONO'=>$newPONO,'SupplierID' => $SupplierID, 'TotalOrderValue' => $TotalOrderValueSummary, 'PODate' => $PODate, 'DeliverySchedule' => $DeliverySchedule, 'DeliveryOption' => $DeliveryOption, 'Status' => $POStatus, 'PORange' => $Local_Interstate, 'ServiceDescription' => $SpcialInstruction, 'CreatedBy' => $CreateBy, 'DeliveryAddress' => $DeliveryAddr, 'DeliveryDate' => $Deliverydt, 'CreatedDate' => $createddt, 'PaymentTerms' => $PaymentTerms, 'POType' => $POType, 'CapitalRange' => $Local_Interstate, 'PaymentOtherDescription' => $OtherPayment, 'Supplier_Reference' => $supplierreference, 'Mode_Of_Shipment' => $Modeofshipment, 'Supplier_Offer_No' => $supplieroffno, 'Other_Reference' => $otherreference, 'Fincap' => $fincap, 'InsuranceStatus' => $insurancestatus, 'POSubType' => $revenuetype, 'InsuranceNumber' => $InsuranceNumber, 'IsQualityChkReqired' => $Qualitycheck, 'BudgetType' => $BudgetType,'IsOpenOrder'=>$IsOpenOrder,'POFile'=>$requestfilename);
|
||||
$POMaster = $this->purchaseorder_model->addPOMaster($POList, $POType, $revenuetype);
|
||||
$PONO = '';
|
||||
if (count($POMaster) > 0) {
|
||||
@ -1263,6 +1283,22 @@ $mpdf->use_kwt = true;
|
||||
$POList['ReleasedOn'] = get_current_date_time();
|
||||
$POList['ReleasedBy'] = $this->session->get('userId');
|
||||
}
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
if ($file && $file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
$POList['POFile'] = $requestfilename;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$POMaster = $this->purchaseorder_model->updatePOMaster($PONO, $POList);
|
||||
|
||||
|
||||
@ -1868,8 +1904,28 @@ $mpdf->use_kwt = true;
|
||||
|
||||
$lastPONO = $this->purchaseorder_model->lastPONO();
|
||||
$newPONO = generate_po_number($lastPONO);
|
||||
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
|
||||
if ($file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
$requestfilename = "";
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
}
|
||||
}else{
|
||||
$requestfilename = "";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$POList = array('PONO' => $newPONO,'SupplierID' => $SupplierID,'TotalOrderValue' => $TotalOrder,'PODate' => $PODate,'Status' => $POStatus,'PORange' => $PoRange,'ServiceDescription' => $SpcialInstruction,'CreatedBy' => $CreateBy,'DeliveryAddress' => $DeliveryAddr,'Import_DispatchDetails' => $Dispatch,'CreatedDate' => $createddt,'DeliverySchedule' => $DeliverySchedule,'DeliveryOption' => $DeliveryOption,'ExchangeRate' => $Exchangerate,'ExchangeRateCalculatedon' => $ExchangeRateCalculatedon,'CurrencyType' => $CurrencyType,'PaymentTerms' => $PaymentTerms,'POType' => $POType,'Import_PlaceofOrgin' => $Palaceoforigin,'PaymentOtherDescription' => $OtherPayment,'Mode_Of_Shipment' => $Shipmentmode,'Supplier_Reference' => $SupplierRef,'Supplier_Offer_No' => $SupplierOffer,'Other_Reference' => $otherRef,'Fincap' => $finCap,'InsuranceStatus' => $Insurance,'InsuranceNumber' => $InsuranceNumber,'POSubType' => $importoption,'IsQualityChkReqired' => $Qualitycheck,'BudgetType' => $BudgetType,'IsOpenOrder' => $IsOpenOrder);
|
||||
$POList['POFile'] = $requestfilename;
|
||||
$POMaster = $this->purchaseorder_model->addPOMaster($POList, $POType, $importoption);
|
||||
$PONO = '';
|
||||
if (count($POMaster) > 0) {
|
||||
@ -2074,6 +2130,22 @@ $mpdf->use_kwt = true;
|
||||
$POList['ReleasedOn'] = get_current_date_time();
|
||||
$POList['ReleasedBy'] = $this->session->get('userId');
|
||||
}
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
if ($file && $file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
$POList['POFile'] = $requestfilename;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//echo $PONO;
|
||||
//echo $TotalOrder;
|
||||
//print_r($POList);
|
||||
@ -2488,9 +2560,28 @@ try{
|
||||
|
||||
$lastPONO = $this->purchaseorder_model->lastPONO();
|
||||
$newPONO = generate_po_number($lastPONO);
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
|
||||
if ($file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
$requestfilename = "";
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
}
|
||||
}else{
|
||||
$requestfilename = "";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$POList = array('PONO'=>$newPONO,'SupplierID' => $SupplierID, 'TotalOrderValue' => $TotalOrder, 'PODate' => $PODate, 'Status' => $POStatus, 'PORange' => $PoRange, 'ExchangeRateCalculatedon' => $ExchangeRateOn, 'ExchangeRate' => $ExchangeRate, 'PaymentTerms' => $PaymentMethod, 'ServiceDescription' => $SpcialInstruction, 'CreatedBy' => $CreateBy, 'DeliveryAddress' => $DeliveryAddr, 'CreatedDate' => $createddt, 'DeliverySchedule' => $DeliverySchedule, 'DeliveryOption' => $DeliveryOption, 'CapitalRange' => $CapitalRange, 'POType' => $POType, 'CurrencyType' => $currencytypeID, 'DeliverySchedule' => $DeliverySchedule, 'Import_PlaceofOrgin' => $Palaceoforigin, 'Import_DispatchDetails' => $Dispatch, 'DeliveryDate' => $Deliverydt, 'PaymentOtherDescription' => $OtherPayment, 'Supplier_Reference' => $SupplierReference, 'Mode_Of_Shipment' => $ModeOfShipment, 'Supplier_Offer_No' => $SuppliersOfferNo, 'Other_Reference' => $OtherReferences, 'Fincap' => $Fincap, 'InsuranceStatus' => $InsuranceOptions, 'InsuranceNumber' => $InsuranceNumber, 'POSubType' => $ServiceTypeOptions, 'IsQualityChkReqired' => $Qualitycheck, 'BudgetType' => $BudgetType,'IsOpenOrder'=>$IsOpenOrder);
|
||||
|
||||
$POList['POFile'] = $requestfilename;
|
||||
// $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrder,'PODate'=>$PODate,'Status'=>$POStatus,'PORange'=>$PoRange,'ServiceDescription'=>$SpcialInstruction,'CreatedBy'=>$CreateBy,'DeliveryAddress'=>$DeliveryAddr,'Import_DispatchDetails'=>$Dispatch,'CreatedDate'=>$createddt,'DeliverySchedule'=>$DeliverySchedule,'DeliveryOption'=>$DeliveryOption,'ExchangeRate'=>$Exchangerate,'ExchangeRateCalculatedon'=>$ExchangeRateCalculatedon,'CurrencyType'=>$CurrencyType,'PaymentTerms'=>$PaymentTerms,'POType'=>$POType,'Import_PlaceofOrgin'=>$Palaceoforigin);
|
||||
|
||||
|
||||
@ -2756,6 +2847,21 @@ try{
|
||||
$POList['ReleasedOn'] = get_current_date_time();
|
||||
$POList['ReleasedBy'] = $this->session->get('userId');
|
||||
}
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
if ($file && $file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
$POList['POFile'] = $requestfilename;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$POMaster = $this->purchaseorder_model->updatePOMaster($PONO, $POList);
|
||||
|
||||
|
||||
@ -235,10 +235,29 @@ class Servicepurchaseorder extends BaseController
|
||||
$lastPONO = $this->purchaseorder_model->lastPONO();
|
||||
$newPONO = generate_po_number($lastPONO);
|
||||
$IsOpenOrder = ($this->request->getPost('IsOpenOrder') !== null && !empty($this->request->getPost('IsOpenOrder')) && $this->request->getPost('IsOpenOrder') === '1') ? $this->request->getPost('IsOpenOrder') : null;
|
||||
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
|
||||
if ($file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
$requestfilename = "";
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
}
|
||||
}else{
|
||||
$requestfilename = "";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// PO Master
|
||||
$POList = array('PONO'=>$newPONO,'SupplierID' => $SupplierID, 'TotalOrderValue' => $TotalOrderValueSummary, 'PODate' => $PODate, 'Status' => $POStatus, 'DeliverySchedule' => $DeliverySchedule, 'DeliveryOption' => $DeliveryOption, 'ServiceDescription' => $SpcialInstruction, 'CreatedBy' => $CreateBy, 'DeliveryAddress' => $DeliveryAddr, 'DeliveryDate' => $Deliverydt, 'CreatedDate' => $createddt, 'PaymentTerms' => $PaymentTerms, 'ServiceWorkStatus' => $WorkStatus, 'POType' => $POType, 'PaymentOtherDescription' => $OtherPayment, 'Supplier_Reference' => $SupplierReference, 'Mode_Of_Shipment' => $ModeOfShipment, 'Supplier_Offer_No' => $SuppliersOfferNo, 'Other_Reference' => $OtherReferences, 'Fincap' => $Fincap, 'Description_Of_Service' => $DescriptionOfPo, 'InsuranceStatus' => $InsuranceOptions, 'InsuranceNumber' => $InsuranceNumber, 'POSubType' => $ServiceTypeOptions, 'BudgetType' => $BudgetType,'IsOpenOrder'=>$IsOpenOrder);
|
||||
|
||||
$POList['POFile'] = $requestfilename;
|
||||
$POMaster = $this->purchaseorder_model->addPOMaster($POList, $POType, $ServiceTypeOptions);
|
||||
$PONO = $POMaster ? $newPONO : "";
|
||||
// $PONO = '';
|
||||
@ -389,7 +408,22 @@ class Servicepurchaseorder extends BaseController
|
||||
$POList['ReleasedOn'] = get_current_date_time();
|
||||
$POList['ReleasedBy'] = $this->session->get('userId');
|
||||
}
|
||||
|
||||
$file = $this->request->getFile('POFile');
|
||||
$requestfilename = $file->getName();
|
||||
if (!empty($requestfilename)) {
|
||||
if ($file && $file->isValid() && !$file->hasMoved()) {
|
||||
$path = ROOTPATH.'public/uploads/POfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
if (!empty($this->purchaseorder_model->isFileExists($requestfilename))) {
|
||||
log_message('error', 'File already exists in the database'.$requestfilename);
|
||||
}
|
||||
else{
|
||||
$file->move($path, $requestfilename);
|
||||
$POList['POFile'] = $requestfilename;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$POMaster = $this->purchaseorder_model->updatePOMaster($PONO, $POList);
|
||||
|
||||
|
||||
|
||||
@ -140,7 +140,12 @@ Where IGRM.PONO = ? ';
|
||||
return $query->getResult();
|
||||
}
|
||||
///////////////////end this function used to pono reset financeyear configuration
|
||||
|
||||
public function isFileExists($filename)
|
||||
{
|
||||
$result = $this->db->table('t_purchaseorder_master')->where('POFile', $filename);
|
||||
$query = $result->get();
|
||||
return $query->getResult();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@ -35,6 +35,7 @@ $InsuranceNumber = '';
|
||||
$ServiceTypeOptions = '';
|
||||
$DescriptionOfPo = '';
|
||||
$BudgetType = '';
|
||||
$PrePOFile = '';
|
||||
|
||||
|
||||
if (!empty($INRSYMBOL)) {
|
||||
@ -79,7 +80,8 @@ if (!empty($POMaster)) {
|
||||
$ServiceTypeOptions = $Req->POSubType;
|
||||
$DescriptionOfPo = $Req->Description_Of_Service;
|
||||
$BudgetType = $Req->BudgetType;
|
||||
|
||||
$PrePOFile = $Req->POFile;
|
||||
|
||||
$IsOpenOrder = isset($Req->IsOpenOrder) ? $Req->IsOpenOrder : null;
|
||||
if ($IsOpenOrder !== null && (int)$IsOpenOrder !== 0) {
|
||||
$isChecked = true;
|
||||
@ -717,7 +719,7 @@ if (!empty($getlogpodtl)) {
|
||||
</style>
|
||||
<div class="content-wrapper">
|
||||
<?php
|
||||
$attributes = array('class' => 'form-label-left ServicePO ', 'name' => 'ServicePO', 'id' => 'ServicePO');
|
||||
$attributes = array('class' => 'form-label-left ServicePO ', 'name' => 'ServicePO', 'id' => 'ServicePO','enctype' => 'multipart/form-data');
|
||||
|
||||
echo form_open(base_url() . '/purchaseorder/addPO/', $attributes); ?>
|
||||
|
||||
@ -2427,6 +2429,7 @@ if (!empty($getlogpodtl)) {
|
||||
<div class="col-md-12">
|
||||
|
||||
<div align="right"><br />
|
||||
<input type="file" name="POFile" id="POFile"><br>
|
||||
<input type="hidden" name="txtPONO" id="txtPONO" value="<?php echo $PONO; ?>" />
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
<input type="hidden" name="txtRowCount" id="txtRowCount" value="<?php echo $index; ?>">
|
||||
@ -3150,10 +3153,14 @@ if (!empty($getlogpodtl)) {
|
||||
return false;
|
||||
} else {
|
||||
$('#content').loader('show');
|
||||
var formData = new FormData($('.ServicePO')[0]);
|
||||
$.ajax({
|
||||
data: $('.ServicePO').serialize(),
|
||||
// data: $('.ServicePO').serialize(),
|
||||
type: "POST",
|
||||
url: "<?php echo base_url() ?>servicepurchaseorder/UpdateServicePurchaseOrder",
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
success: function(data) {
|
||||
if (data) {
|
||||
$('#content').loader('hide');
|
||||
|
||||
@ -5337,6 +5337,7 @@ if (!empty($INRSYMBOL)) {
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-3 col-md-offset-9"><br />
|
||||
<input type="file" name="POFile" id="POFile"><br>
|
||||
<input type="hidden" name="txtPoRange" id="txtPoRange" />
|
||||
<input type="hidden" name="isEdit" id="isEdit" value="0" />
|
||||
<input type="hidden" name="txtStatus1" id="txtStatus1" />
|
||||
@ -5740,8 +5741,13 @@ if (!empty($INRSYMBOL)) {
|
||||
$('#txtStatus').val('<?php echo PO_DRAFT; ?>');
|
||||
if (validate()) {
|
||||
$('#content').loader('show');
|
||||
var formData = new FormData($('.CreatePO')[0]);
|
||||
|
||||
$.ajax({
|
||||
data: $('.CreatePO').serialize(),
|
||||
// data: $('.CreatePO').serialize(),
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
type: "POST",
|
||||
url: "<?php echo base_url() ?>purchaseorder/addNewPurchaseOrder",
|
||||
success: function(data) {
|
||||
@ -5949,7 +5955,11 @@ if (!empty($INRSYMBOL)) {
|
||||
var supPaymentTerms = '';
|
||||
$.each(y, function(idx, obj) {
|
||||
if (obj.SupplierID === id) {
|
||||
$("#SupAddress").val(obj.Address);
|
||||
if (obj.MSME) {
|
||||
$("#SupAddress").val("MSME :" + obj.MSME + "\n" + obj.Address);
|
||||
} else {
|
||||
$("#SupAddress").val(obj.Address);
|
||||
}
|
||||
supPaymentTerms = obj.PaymentID;
|
||||
|
||||
|
||||
|
||||
@ -304,7 +304,7 @@ function vaildateBeforeOpenModal()
|
||||
</script>
|
||||
<div class="content-wrapper">
|
||||
<?php
|
||||
$attributes = array('class' => 'form-label-left CapitalPO ','name' => 'CapitalPO','id' => 'ImportPO');
|
||||
$attributes = array('class' => 'form-label-left CapitalPO ','name' => 'CapitalPO','id' => 'ImportPO','enctype' => 'multipart/form-data');
|
||||
|
||||
echo form_open(base_url().'/purchaseorder/addPO/',$attributes); ?>
|
||||
|
||||
@ -2540,7 +2540,8 @@ function vaildateBeforeOpenModal()
|
||||
</div>
|
||||
|
||||
<div align="right" style="padding:1% 0%;">
|
||||
|
||||
<input type="file" name="POFile" id="POFile"><br>
|
||||
|
||||
<input type="hidden" name="txtPoRange" id="txtPoRange" />
|
||||
<input type="hidden" name="isEdit" id="isEdit" value="0" />
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
@ -4758,9 +4759,15 @@ var basicAmountRate = parseFloat($('#CapitalToatlOrder').val());
|
||||
else
|
||||
{
|
||||
$('#content').loader('show');
|
||||
|
||||
var formData = new FormData($('.CapitalPO')[0]);
|
||||
formData.append('ExchangeRateOn', ExchangeRateOn);
|
||||
formData.append('PaymentMethod', PaymentMethod);
|
||||
|
||||
$.ajax({
|
||||
data:$('.CapitalPO').serialize()+"&ExchangeRateOn="+ExchangeRateOn+"&PaymentMethod="+PaymentMethod,
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
// data:$('.CapitalPO').serialize()+"&ExchangeRateOn="+ExchangeRateOn+"&PaymentMethod="+PaymentMethod,
|
||||
type:"POST",
|
||||
url:"<?php echo base_url() ?>purchaseorder/addNewCapitalPurchaseOrder",
|
||||
success:function(data) {
|
||||
|
||||
@ -88,6 +88,7 @@
|
||||
$FinalTotalBasic = 0;
|
||||
|
||||
$BudgetType = '';
|
||||
$PrePOFile = '';
|
||||
|
||||
|
||||
$INR='';
|
||||
@ -175,6 +176,7 @@ if(!empty($POMaster))
|
||||
$InsuranceNumber=$Req->InsuranceNumber;
|
||||
$ServiceTypeOptions=$Req->POSubType;
|
||||
$BudgetType = $Req->BudgetType;
|
||||
$PrePOFile = $Req->POFile;
|
||||
|
||||
}
|
||||
}
|
||||
@ -414,7 +416,7 @@ document.getElementById('dispatchinternational').style.display = 'block';
|
||||
<?php
|
||||
// $attributes = array('class' => 'form-label-left CapitalPO ','name' => 'CapitalPO','id' => 'ImportPO');
|
||||
|
||||
$attributes = array('class' => 'form-label-left CapitalPO ','name' => 'CapitalPO','id' => 'CapitalPO');
|
||||
$attributes = array('class' => 'form-label-left CapitalPO ','name' => 'CapitalPO','id' => 'CapitalPO','enctype' => 'multipart/form-data');
|
||||
|
||||
|
||||
|
||||
@ -2276,7 +2278,13 @@ document.getElementById('dispatchinternational').style.display = 'block';
|
||||
|
||||
|
||||
<div class="row" align="right" style="padding:3%;">
|
||||
|
||||
<div>
|
||||
<input type="file" name="POFile" id="POFile">
|
||||
<?php if($PrePOFile){ ?>
|
||||
<label><a title="previously uploaded PO File" href="<?php echo base_url().'public/uploads/POfiles/' . $PrePOFile ?>"><span>previously uploaded - </span><small><?= $PrePOFile; ?></small></a></label>
|
||||
<?php } ?>
|
||||
<input type="hidden" id="PrePOFile" name="PrePOFile" value="<?php echo $PrePOFile; ?>"/><br>
|
||||
</div>
|
||||
<input type="hidden" name="txtPoRange" id="txtPoRange" />
|
||||
<input type="hidden" name="isEdit" id="isEdit" value="0" />
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
@ -3502,12 +3510,19 @@ basicamt=$('#txtTotalBasic').val() - $('#txtTotalDiscount').val();
|
||||
$('#content').loader('show');
|
||||
//salert('ss');
|
||||
//alert('before Ajax');
|
||||
$.ajax({
|
||||
var formData = new FormData($('.CapitalPO')[0]);
|
||||
formData.append('ExchangeRateOn', ExchangeRateOn);
|
||||
formData.append('PaymentMethod', PaymentMethod);
|
||||
formData.append('PayableAT', PayableAT);
|
||||
formData.append('PaymentDate', PaymentDate);
|
||||
|
||||
data:$('.CapitalPO').serialize()+"&ExchangeRateOn="+ExchangeRateOn+"&PaymentMethod="+PaymentMethod+"&PayableAT="+PayableAT+"&PaymentDate="+PaymentDate,
|
||||
$.ajax({
|
||||
// data:$('.CapitalPO').serialize()+"&ExchangeRateOn="+ExchangeRateOn+"&PaymentMethod="+PaymentMethod+"&PayableAT="+PayableAT+"&PaymentDate="+PaymentDate,
|
||||
type:"POST",
|
||||
url:"<?php echo base_url() ?>amendmentpurchaseorder/EditAmendCapitalPurchaseOrder",
|
||||
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
success:function(data) {
|
||||
if(data)
|
||||
{
|
||||
|
||||
@ -27,6 +27,7 @@
|
||||
$TotalFreightvalue=0.0;
|
||||
|
||||
|
||||
$PrePOFile = '';
|
||||
|
||||
$totassesable=0;
|
||||
$totSubtotal=0;
|
||||
@ -167,6 +168,7 @@ if(!empty($POMaster))
|
||||
$InsuranceNumber=$Req->InsuranceNumber;
|
||||
$ServiceTypeOptions=$Req->POSubType;
|
||||
$BudgetType = $Req->BudgetType;
|
||||
$PrePOFile = $Req->POFile;
|
||||
|
||||
}
|
||||
|
||||
@ -460,7 +462,7 @@ $("#PaymentMethod").select2();
|
||||
<?php
|
||||
// $attributes = array('class' => 'form-label-left CapitalPO ','name' => 'CapitalPO','id' => 'ImportPO');
|
||||
|
||||
$attributes = array('class' => 'form-label-left CapitalPO ','name' => 'CapitalPO','id' => 'CapitalPO');
|
||||
$attributes = array('class' => 'form-label-left CapitalPO ','name' => 'CapitalPO','id' => 'CapitalPO','enctype' => 'multipart/form-data');
|
||||
|
||||
|
||||
|
||||
@ -3882,7 +3884,13 @@ $("#PaymentMethod").select2();
|
||||
|
||||
|
||||
<div align="right" style="padding:3% 2%;">
|
||||
|
||||
<div>
|
||||
<input type="file" name="POFile" id="POFile">
|
||||
<?php if($PrePOFile){ ?>
|
||||
<label><a title="previously uploaded PO File" href="<?php echo base_url().'public/uploads/POfiles/' . $PrePOFile ?>"><span>previously uploaded - </span><small><?= $PrePOFile; ?></small></a></label>
|
||||
<?php } ?>
|
||||
<input type="hidden" id="PrePOFile" name="PrePOFile" value="<?php echo $PrePOFile; ?>"/><br>
|
||||
</div>
|
||||
<input type="hidden" name="txtPoRange" id="txtPoRange" />
|
||||
<input type="hidden" name="isEdit" id="isEdit" value="0" />
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
@ -6348,10 +6356,14 @@ var basicAmountRate = parseFloat($('#CapitalToatlOrder').val());
|
||||
|
||||
$('#content').loader('show');
|
||||
//alert('ss');
|
||||
|
||||
var formData = new FormData($('.CapitalPO')[0]);
|
||||
formData.append('ExchangeRateOn', ExchangeRateOn);
|
||||
formData.append('PaymentMethod', PaymentMethod);
|
||||
$.ajax({
|
||||
|
||||
data:$('.CapitalPO').serialize()+"&ExchangeRateOn="+ExchangeRateOn+"&PaymentMethod="+PaymentMethod,
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
// data:$('.CapitalPO').serialize()+"&ExchangeRateOn="+ExchangeRateOn+"&PaymentMethod="+PaymentMethod,
|
||||
type:"POST",
|
||||
url:"<?php echo base_url() ?>purchaseorder/EditCapitalPurchaseOrder",
|
||||
|
||||
|
||||
@ -115,6 +115,7 @@ $Reqon = '';
|
||||
$Requestedby='';
|
||||
$RequesterName='';
|
||||
$BudgetType = '';
|
||||
$PrePOFile = '';
|
||||
|
||||
|
||||
if(!empty($POMaster))
|
||||
@ -164,6 +165,8 @@ if(!empty($POMaster))
|
||||
$Importoption=$Req->POSubType;
|
||||
$InsuranceStatus=$Req->InsuranceStatus;
|
||||
$BudgetType = $Req->BudgetType;
|
||||
$PrePOFile = $Req->POFile;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@ -292,7 +295,7 @@ if(!empty($RequistionDetails))
|
||||
<section class="content">
|
||||
<div id="content"></div>
|
||||
<?php
|
||||
$attributes = array('class' => 'form-label-left ImportPO ','name' => 'ImportPO','id' => 'ImportPO');
|
||||
$attributes = array('class' => 'form-label-left ImportPO ','name' => 'ImportPO','id' => 'ImportPO','enctype' => 'multipart/form-data');
|
||||
|
||||
echo form_open(base_url().'/purchaseorder/addPO/',$attributes); ?>
|
||||
|
||||
@ -1898,6 +1901,13 @@ echo form_textarea($data);
|
||||
<div align="right" style="padding-right:10px">
|
||||
|
||||
<div class="col-md-5 col-md-offset-7" align="right"><br />
|
||||
<div>
|
||||
<input type="file" name="POFile" id="POFile">
|
||||
<?php if($PrePOFile){ ?>
|
||||
<label><a title="previously uploaded PO File" href="<?php echo base_url().'public/uploads/POfiles/' . $PrePOFile ?>"><span>previously uploaded - </span><small><?= $PrePOFile; ?></small></a></label>
|
||||
<?php } ?>
|
||||
<input type="hidden" id="PrePOFile" name="PrePOFile" value="<?php echo $PrePOFile; ?>"/><br>
|
||||
</div>
|
||||
|
||||
<input type="hidden" name="txtPoRange" id="txtPoRange" />
|
||||
<input type="hidden" name="isEdit" id="isEdit" value="0" />
|
||||
@ -3424,9 +3434,13 @@ if(validate()&&Budgetcheck())
|
||||
{
|
||||
|
||||
$('#content').loader('show');
|
||||
var formData = new FormData($('.ImportPO')[0]);
|
||||
|
||||
$.ajax({
|
||||
data:$('.ImportPO').serialize(),
|
||||
|
||||
// data:$('.ImportPO').serialize(),
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
//data:$('.CreatealterPO').serialize()+"&TextRowCount="+TextRowCount+"&TextDeQletedRowCount="+TextDeletedRowCount+"&TextTotalOrderValueSummaryService="+TextTotalOrderValueSummaryService+"&TextSpcialInstruction="+TextSpcialInstruction+"&TextExchangerate"+ExcLandingCharge="+hangerate+"Status="+TextStatus,
|
||||
type:"POST",
|
||||
url:"<?php echo base_url() ?>amendmentpurchaseorder/EditAmendImportPO",
|
||||
|
||||
@ -8,6 +8,8 @@ $AvlAmount = 0;
|
||||
$DeliverSchedule='';
|
||||
$DeliverOption='';
|
||||
$RowCount = 0;
|
||||
$PrePOFile = '';
|
||||
|
||||
if(!empty($MaxPODate))
|
||||
{
|
||||
foreach ($MaxPODate as $date)
|
||||
@ -103,7 +105,7 @@ if(!empty($POMaster))
|
||||
$insurencestatus = $Req->InsuranceStatus;
|
||||
$insurenceno = $Req->InsuranceNumber;
|
||||
$BudgetType = $Req->BudgetType;
|
||||
|
||||
$PrePOFile = $Req->POFile;
|
||||
}
|
||||
}
|
||||
|
||||
@ -2146,6 +2148,13 @@ function calculateEditTaxValue()
|
||||
</div>
|
||||
<div class="row" style="padding: 2% 0%">
|
||||
<div class="col-md-5 col-md-offset-7" align="right"><br />
|
||||
<div>
|
||||
<input type="file" name="POFile" id="POFile">
|
||||
<?php if($PrePOFile){ ?>
|
||||
<label><a title="previously uploaded PO File" href="<?php echo base_url().'public/uploads/POfiles/' . $PrePOFile ?>"><span>previously uploaded - </span><small><?= $PrePOFile; ?></small></a></label>
|
||||
<?php } ?>
|
||||
<input type="hidden" id="PrePOFile" name="PrePOFile" value="<?php echo $PrePOFile; ?>"/><br>
|
||||
</div>
|
||||
<input type="hidden" name="txtPoRange" id="txtPoRange" />
|
||||
<input type="hidden" name="isEdit" id="isEdit" value="0" />
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
@ -2676,10 +2685,15 @@ var txtTotalDiscount = $('#txtTotalDiscount').val();
|
||||
{
|
||||
//alert('final else for store data');
|
||||
$('.content').loader('show');
|
||||
var formData = new FormData($('.CreatePO')[0]);
|
||||
|
||||
$.ajax({
|
||||
data:$('.CreatePO').serialize(),
|
||||
// data:$('.CreatePO').serialize(),
|
||||
type:"POST",
|
||||
url:"<?php echo base_url() ?>amendmentpurchaseorder/EditRevenuePurchaseOrder",
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
success:function(data) {
|
||||
if(data)
|
||||
{
|
||||
|
||||
@ -59,6 +59,8 @@ $ServiceDescription = '';
|
||||
$CapitalRange = '';
|
||||
$otherPayment = '';
|
||||
$BudgetType = '';
|
||||
$PrePOFile = '';
|
||||
|
||||
if (!empty($POMaster)) {
|
||||
//print_r($POMaster);
|
||||
//print_r($POItem);
|
||||
@ -100,7 +102,7 @@ if (!empty($POMaster)) {
|
||||
$insurenceno = $Req->InsuranceNumber;
|
||||
$BudgetType = $Req->BudgetType;
|
||||
$IGRNO = $Req->IGRNO;
|
||||
|
||||
$PrePOFile = $Req->POFile;
|
||||
// echo $otherPayment;
|
||||
}
|
||||
}
|
||||
@ -3947,6 +3949,13 @@ if (!empty($getlogpodtl)) {
|
||||
<!-- Revenue Special PO Modal Ends Here -->
|
||||
<div class="row" style="padding: 2% 0%">
|
||||
<div class="col-md-5 col-md-offset-7" align="right"><br />
|
||||
<div>
|
||||
<input type="file" name="POFile" id="POFile">
|
||||
<?php if($PrePOFile){ ?>
|
||||
<label><a title="previously uploaded PO File" href="<?php echo base_url().'public/uploads/POfiles/' . $PrePOFile ?>"><span>previously uploaded - </span><small><?= $PrePOFile; ?></small></a></label>
|
||||
<?php } ?>
|
||||
<input type="hidden" id="PrePOFile" name="PrePOFile" value="<?php echo $PrePOFile; ?>"/><br>
|
||||
</div>
|
||||
<input type="hidden" name="txtPoRange" id="txtPoRange" />
|
||||
<input type="hidden" name="isEdit" id="isEdit" value="0" />
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
@ -4808,11 +4817,14 @@ if (!empty($getlogpodtl)) {
|
||||
$('#insurance').focus();
|
||||
return false;
|
||||
} else {
|
||||
var formData = new FormData($('.CreatePO')[0]);
|
||||
$('#content').loader('show');
|
||||
$.ajax({
|
||||
data: $('.CreatePO').serialize(),
|
||||
type: "POST",
|
||||
url: "<?php echo base_url() ?>purchaseorder/EditRevenuePurchaseOrder",
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
success: function(data) {
|
||||
if (data) {
|
||||
$('#content').loader('hide');
|
||||
@ -4829,7 +4841,10 @@ if (!empty($getlogpodtl)) {
|
||||
alert("Error");
|
||||
}
|
||||
|
||||
}
|
||||
},error: function(jqXHR, textStatus, errorThrown) {
|
||||
console.error("AJAX Error: " + textStatus + ": " + errorThrown);
|
||||
alert("Error: " + textStatus);
|
||||
}
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
@ -38,7 +38,7 @@ $InsuranceNumber = '';
|
||||
$ServiceTypeOptions = '';
|
||||
$DescriptionOfPo = '';
|
||||
$BudgetType = '';
|
||||
|
||||
$PrePOFile = '';
|
||||
|
||||
if (!empty($INRSYMBOL)) {
|
||||
|
||||
@ -85,6 +85,8 @@ if (!empty($POMaster)) {
|
||||
$ServiceTypeOptions = $Req->POSubType;
|
||||
$DescriptionOfPo = $Req->Description_Of_Service;
|
||||
$BudgetType = $Req->BudgetType;
|
||||
$PrePOFile = $Req->POFile;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -645,7 +647,7 @@ foreach ($PaymentTerms as $TER) {
|
||||
</style>
|
||||
<div class="content-wrapper">
|
||||
<?php
|
||||
$attributes = array('class' => 'form-label-left ServicePO ', 'name' => 'ServicePO', 'id' => 'ServicePO');
|
||||
$attributes = array('class' => 'form-label-left ServicePO ', 'name' => 'ServicePO', 'id' => 'ServicePO','enctype' => 'multipart/form-data');
|
||||
|
||||
echo form_open(base_url() . '/purchaseorder/addPO/', $attributes); ?>
|
||||
|
||||
@ -1568,6 +1570,13 @@ foreach ($PaymentTerms as $TER) {
|
||||
<div class="col-md-12">
|
||||
<div class="row"><br />
|
||||
<div align="right" style="padding-right:10px">
|
||||
<div>
|
||||
<input type="file" name="POFile" id="POFile">
|
||||
<?php if($PrePOFile){ ?>
|
||||
<label><a title="previously uploaded PO File" href="<?php echo base_url().'public/uploads/POfiles/' . $PrePOFile ?>"><span>previously uploaded - </span><small><?= $PrePOFile; ?></small></a></label>
|
||||
<?php } ?>
|
||||
<input type="hidden" id="PrePOFile" name="PrePOFile" value="<?php echo $PrePOFile; ?>"/><br>
|
||||
</div>
|
||||
<input type="hidden" name="txtPONO" id="txtPONO" value="<?php echo $PONO; ?>" />
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
<input type="hidden" name="txtDeletedRow" id="txtDeletedRow" />
|
||||
@ -2169,10 +2178,14 @@ foreach ($PaymentTerms as $TER) {
|
||||
return false;
|
||||
} else {
|
||||
$('#content').loader('show');
|
||||
var formData = new FormData($('.ServicePO')[0]);
|
||||
$.ajax({
|
||||
data: $('.ServicePO').serialize(),
|
||||
// data: $('.ServicePO').serialize(),
|
||||
type: "POST",
|
||||
url: "<?php echo base_url() ?>amendmentpurchaseorder/UpdateAmendServicePurchaseOrder",
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
success: function(data) {
|
||||
if (data) {
|
||||
|
||||
|
||||
@ -15,6 +15,8 @@ $Currencycode=$currencycode;
|
||||
//echo $Currencycode;
|
||||
$Terms='';
|
||||
$DeliverySchedule='';
|
||||
$PrePOFile = '';
|
||||
|
||||
|
||||
foreach ($CurrencyDetail as $Detail)
|
||||
{
|
||||
@ -168,6 +170,8 @@ if(!empty($POMaster))
|
||||
$InsuranceNumber=$Req->InsuranceNumber;
|
||||
$Importoption=$Req->POSubType;
|
||||
$BudgetType = $Req->BudgetType;
|
||||
$PrePOFile = $Req->POFile;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -360,7 +364,7 @@ else
|
||||
<section class="content">
|
||||
<div id="content"></div>
|
||||
<?php
|
||||
$attributes = array('class' => 'form-label-left ImportPO ','name' => 'ImportPO','id' => 'ImportPO');
|
||||
$attributes = array('class' => 'form-label-left ImportPO ','name' => 'ImportPO','id' => 'ImportPO','enctype' => 'multipart/form-data');
|
||||
|
||||
echo form_open(base_url().'/purchaseorder/addPO/',$attributes); ?>
|
||||
|
||||
@ -3145,6 +3149,13 @@ echo form_textarea($data);
|
||||
<div align="right" style="padding-right:10px">
|
||||
|
||||
<div class="col-md-5 col-md-offset-7" align="right"><br />
|
||||
<div>
|
||||
<input type="file" name="POFile" id="POFile">
|
||||
<?php if($PrePOFile){ ?>
|
||||
<label><a title="previously uploaded PO File" href="<?php echo base_url().'public/uploads/POfiles/' . $PrePOFile ?>"><span>previously uploaded - </span><small><?= $PrePOFile; ?></small></a></label>
|
||||
<?php } ?>
|
||||
<input type="hidden" id="PrePOFile" name="PrePOFile" value="<?php echo $PrePOFile; ?>"/><br>
|
||||
</div>
|
||||
<input type="hidden" name="txtPoRange" id="txtPoRange" />
|
||||
<input type="hidden" name="isEdit" id="isEdit" value="0" />
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
@ -5917,9 +5928,15 @@ if(validate()&&Budgetcheck())
|
||||
{
|
||||
//alert();
|
||||
$('#content').loader('show');
|
||||
var formData = new FormData($('.ImportPO')[0]);
|
||||
formData.append('txtRowCount', Row);
|
||||
formData.append('txtDeletedRow', txtDeletedRow);
|
||||
formData.append('textStatus', stat);
|
||||
$.ajax({
|
||||
data:$('.ImportPO').serialize()+"&txtRowCount="+Row+"&txtDeletedRow="+txtDeletedRow+"&textStatus="+stat,
|
||||
|
||||
// data:$('.ImportPO').serialize()+"&txtRowCount="+Row+"&txtDeletedRow="+txtDeletedRow+"&textStatus="+stat,
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
//data:$('.CreatealterPO').serialize()+"&TextRowCount="+TextRowCount+"&TextDeQletedRowCount="+TextDeletedRowCount+"&TextTotalOrderValueSummaryService="+TextTotalOrderValueSummaryService+"&TextSpcialInstruction="+TextSpcialInstruction+"&TextExchangerate"+ExcLandingCharge="+hangerate+"Status="+TextStatus,
|
||||
type:"POST",
|
||||
url:"<?php echo base_url() ?>purchaseorder/EditImportPurchaseOrder",
|
||||
|
||||
@ -2001,6 +2001,7 @@ if (isset($AvlimportBudAmt) && !empty($AvlimportBudAmt)) {
|
||||
<div align="right" style="padding-right:10px">
|
||||
|
||||
<div class="col-md-3 col-md-offset-9"><br />
|
||||
<input type="file" name="POFile" id="POFile"><br>
|
||||
<input type="hidden" name="txtPoRange" id="txtPoRange" />
|
||||
<input type="hidden" name="isEdit" id="isEdit" value="0" />
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
@ -4323,12 +4324,18 @@ if (isset($AvlimportBudAmt) && !empty($AvlimportBudAmt)) {
|
||||
} else {
|
||||
|
||||
$('#content').loader('show');
|
||||
|
||||
var formData = new FormData($('.ImportPO')[0]);
|
||||
formData.append('txtRowCount', txtRowCount);
|
||||
formData.append('txtDeletedRow', txtDeletedRow);
|
||||
formData.append('textStatus', stat);
|
||||
$.ajax({
|
||||
data:$('.ImportPO').serialize()+"&txtRowCount="+txtRowCount+"&txtDeletedRow="+txtDeletedRow+"&textStatus="+stat,
|
||||
// data:$('.ImportPO').serialize()+"&txtRowCount="+txtRowCount+"&txtDeletedRow="+txtDeletedRow+"&textStatus="+stat,
|
||||
//data:$('.CreatealterPO').serialize()+"&TextRowCount="+TextRowCount+"&TextDeQletedRowCount="+TextDeletedRowCount+"&TextTotalOrderValueSummaryService="+TextTotalOrderValueSummaryService+"&TextSpcialInstruction="+TextSpcialInstruction+"&TextExchangerate"+ExcLandingCharge="+hangerate+"Status="+TextStatus,
|
||||
type: "POST",
|
||||
url: "<?php echo base_url() ?>purchaseorder/addNewImportPurchaseOrder",
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
success: function(data) {
|
||||
if (data) {
|
||||
$('#content').loader('hide');
|
||||
|
||||
@ -1821,10 +1821,9 @@ if (!empty($INRSYMBOL)) {
|
||||
</style>
|
||||
<div class="content-wrapper">
|
||||
<?php
|
||||
$attributes = array('class' => 'form-label-left CreatePO ', 'name' => 'CreatePO', 'id' => 'CreatePO');
|
||||
$attributes = array('class' => 'form-label-left CreatePO ', 'name' => 'CreatePO', 'id' => 'CreatePO','enctype' => 'multipart/form-data');
|
||||
|
||||
echo form_open(base_url() . '/purchaseorder/addPO/', $attributes); ?>
|
||||
|
||||
<section class="content">
|
||||
<div style="border:2px solid #333">
|
||||
<div id="content"></div>
|
||||
@ -2109,7 +2108,10 @@ if (!empty($INRSYMBOL)) {
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-2" style="padding-right: 0px;">
|
||||
<label for="BudgetType">Budget Type</label>
|
||||
<?php
|
||||
@ -2122,12 +2124,8 @@ if (!empty($INRSYMBOL)) {
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- Modal for Packing Calculation -->
|
||||
@ -2297,7 +2295,7 @@ if (!empty($INRSYMBOL)) {
|
||||
<div class="col-md-3 col-md-offset-7" align="right" style="padding:10px">
|
||||
<!-- <input type="checkbox" id="IsOpenOrder" name="IsOpenOrder" value="1"> IS THIS OPEN ORDER FORMAT -->
|
||||
</div>
|
||||
<div class="col-md-1" align="right">
|
||||
<div class="col-md-1" align="right" style="padding:10px">
|
||||
<a data-toggle="modal"><button type="submit" onclick="openModal();" class="btn btn-success" id="abcd">Select Line Item</button> </a>
|
||||
</div>
|
||||
<br>
|
||||
@ -3206,6 +3204,7 @@ if (!empty($INRSYMBOL)) {
|
||||
</div>
|
||||
<div class="row" style="padding: 2% 0%">
|
||||
<div class="col-md-3 col-md-offset-9"><br />
|
||||
<input type="file" name="POFile" id="POFile"><br>
|
||||
<input type="hidden" name="txtPoRange" id="txtPoRange" />
|
||||
<input type="hidden" name="isEdit" id="isEdit" value="0" />
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
@ -3917,12 +3916,15 @@ if (!empty($INRSYMBOL)) {
|
||||
|
||||
} else {
|
||||
|
||||
var formData = new FormData($('.CreatePO')[0]);
|
||||
|
||||
$('#content').loader('show');
|
||||
$.ajax({
|
||||
data: $('.CreatePO').serialize(),
|
||||
type: "POST",
|
||||
url: "<?php echo base_url() ?>purchaseorder/addNewPurchaseOrder",
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
success: function(data) {
|
||||
if (data) {
|
||||
$('#content').loader('hide');
|
||||
@ -3937,7 +3939,10 @@ if (!empty($INRSYMBOL)) {
|
||||
alert("Error");
|
||||
}
|
||||
|
||||
}
|
||||
},error: function(jqXHR, textStatus, errorThrown) {
|
||||
console.error("AJAX Error: " + textStatus + ": " + errorThrown);
|
||||
alert("Error: " + textStatus);
|
||||
}
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
@ -604,7 +604,7 @@ if (!empty($INRSYMBOL)) {
|
||||
</style>
|
||||
<div class="content-wrapper">
|
||||
<?php
|
||||
$attributes = array('class' => 'form-label-left ServicePO ', 'name' => 'ServicePO', 'id' => 'ServicePO');
|
||||
$attributes = array('class' => 'form-label-left ServicePO ', 'name' => 'ServicePO', 'id' => 'ServicePO','enctype' => 'multipart/form-data');
|
||||
|
||||
echo form_open(base_url() . '/purchaseorder/addPO/', $attributes); ?>
|
||||
|
||||
@ -1658,6 +1658,7 @@ if (!empty($INRSYMBOL)) {
|
||||
<div class="row">
|
||||
<br />
|
||||
<div align="right" style="padding-right:10px">
|
||||
<input type="file" name="POFile" id="POFile"><br>
|
||||
<input type="hidden" name="txtStatus" id="txtStatus" />
|
||||
<input type="hidden" name="txtRowCount" id="txtRowCount" />
|
||||
<input type="hidden" name="txtDeletedRow" id="txtDeletedRow" />
|
||||
@ -2355,10 +2356,15 @@ if (!empty($INRSYMBOL)) {
|
||||
|
||||
} else {
|
||||
$('#content').loader('show');
|
||||
var formData = new FormData($('.ServicePO')[0]);
|
||||
|
||||
$.ajax({
|
||||
data: $('.ServicePO').serialize(),
|
||||
// data: $('.ServicePO').serialize(),
|
||||
type: "POST",
|
||||
url: "<?php echo base_url() ?>servicepurchaseorder/addNewServicePurchaseOrder",
|
||||
data: formData,
|
||||
processData: false,
|
||||
contentType: false,
|
||||
success: function(data) {
|
||||
if (data) {
|
||||
$('#content').loader('hide');
|
||||
|
||||
BIN
public/uploads/POfiles/BB-light_fullform.png
Normal file
BIN
public/uploads/POfiles/BB-light_fullform.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.2 KiB |
BIN
public/uploads/POfiles/Screenshot from 2024-07-26 07-02-46.png
Normal file
BIN
public/uploads/POfiles/Screenshot from 2024-07-26 07-02-46.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 107 KiB |
BIN
public/uploads/POfiles/Screenshot from 2024-07-26 07-02-46_1.png
Normal file
BIN
public/uploads/POfiles/Screenshot from 2024-07-26 07-02-46_1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 107 KiB |
0
vendor/codeigniter/coding-standard/CHANGELOG.md
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/CHANGELOG.md
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/CONTRIBUTING.md
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/CONTRIBUTING.md
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/LICENSE
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/LICENSE
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/README.md
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/README.md
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/composer.json
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/composer.json
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/src/CodeIgniter4.php
vendored
Normal file → Executable file
0
vendor/codeigniter/coding-standard/src/CodeIgniter4.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/LICENSE
vendored
Normal file → Executable file
0
vendor/composer/pcre/LICENSE
vendored
Normal file → Executable file
0
vendor/composer/pcre/README.md
vendored
Normal file → Executable file
0
vendor/composer/pcre/README.md
vendored
Normal file → Executable file
0
vendor/composer/pcre/composer.json
vendored
Normal file → Executable file
0
vendor/composer/pcre/composer.json
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchAllResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchAllResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchAllStrictGroupsResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchAllStrictGroupsResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchAllWithOffsetsResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchAllWithOffsetsResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchStrictGroupsResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchStrictGroupsResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchWithOffsetsResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/MatchWithOffsetsResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/PcreException.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/PcreException.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/Preg.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/Preg.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/Regex.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/Regex.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/ReplaceResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/ReplaceResult.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/UnexpectedNullMatchException.php
vendored
Normal file → Executable file
0
vendor/composer/pcre/src/UnexpectedNullMatchException.php
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/CHANGELOG.md
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/CHANGELOG.md
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/LICENSE
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/LICENSE
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/README.md
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/README.md
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/composer.json
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/composer.json
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/src/PhpConfig.php
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/src/PhpConfig.php
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/src/Process.php
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/src/Process.php
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/src/Status.php
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/src/Status.php
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/src/XdebugHandler.php
vendored
Normal file → Executable file
0
vendor/composer/xdebug-handler/src/XdebugHandler.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/CHANGELOG.md
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/CHANGELOG.md
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/CONTRIBUTING.md
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/LICENSE
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/LICENSE
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/README.md
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/README.md
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/UPGRADE-v3.md
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/UPGRADE-v3.md
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/ci-integration.sh
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/ci-integration.sh
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/composer.json
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/composer.json
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/feature-or-bug.rst
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/feature-or-bug.rst
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/logo.md
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/logo.md
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/logo.png
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/logo.png
vendored
Normal file → Executable file
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
0
vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractDoctrineAnnotationFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractFopenFlagFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractFunctionReferenceFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractNoUselessElseFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocToTypeDeclarationFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocToTypeDeclarationFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractPhpdocTypesFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/AbstractProxyFixer.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/Cache.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/CacheInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/CacheManagerInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/Directory.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/DirectoryInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/FileCacheManager.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandler.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/FileHandlerInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/NullCacheManager.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/Signature.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Cache/SignatureInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Config.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Config.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/ConfigInterface.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidConfigurationException.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidFixerConfigurationException.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/InvalidForEnvFixerConfigurationException.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/ConfigurationException/RequiredFixerConfigurationException.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Application.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Application.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/CheckCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/CheckCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/DescribeNameNotFoundException.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/DocumentationCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/DocumentationCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/FixCommandExitStatusCalculator.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/HelpCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/ListFilesCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/ListFilesCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/ListSetsCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/ListSetsCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Command/SelfUpdateCommand.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/ConfigurationResolver.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Output/ErrorOutput.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Output/OutputContext.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Output/OutputContext.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/DotsOutput.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/DotsOutput.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/NullOutput.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/NullOutput.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/PercentageBarOutput.php
vendored
Normal file → Executable file
0
vendor/friendsofphp/php-cs-fixer/src/Console/Output/Progress/PercentageBarOutput.php
vendored
Normal file → Executable file
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user