diff --git a/application/.htaccess b/application/.htaccess old mode 100755 new mode 100644 diff --git a/application/cache/.htaccess b/application/cache/.htaccess old mode 100755 new mode 100644 diff --git a/application/cache/index.html b/application/cache/index.html old mode 100755 new mode 100644 diff --git a/application/config/autoload.php b/application/config/autoload.php old mode 100755 new mode 100644 diff --git a/application/config/config.php b/application/config/config.php old mode 100755 new mode 100644 diff --git a/application/config/constants.php b/application/config/constants.php old mode 100755 new mode 100644 diff --git a/application/config/database.php b/application/config/database.php old mode 100755 new mode 100644 diff --git a/application/config/doctypes.php b/application/config/doctypes.php old mode 100755 new mode 100644 diff --git a/application/config/foreign_chars.php b/application/config/foreign_chars.php old mode 100755 new mode 100644 diff --git a/application/config/grocery_crud.php b/application/config/grocery_crud.php old mode 100755 new mode 100644 diff --git a/application/config/hooks.php b/application/config/hooks.php old mode 100755 new mode 100644 diff --git a/application/config/index.html b/application/config/index.html old mode 100755 new mode 100644 diff --git a/application/config/migration.php b/application/config/migration.php old mode 100755 new mode 100644 diff --git a/application/config/mimes.php b/application/config/mimes.php old mode 100755 new mode 100644 diff --git a/application/config/profiler.php b/application/config/profiler.php old mode 100755 new mode 100644 diff --git a/application/config/routes.php b/application/config/routes.php old mode 100755 new mode 100644 diff --git a/application/config/smileys.php b/application/config/smileys.php old mode 100755 new mode 100644 diff --git a/application/config/user_agents.php b/application/config/user_agents.php old mode 100755 new mode 100644 diff --git a/application/controllers/Controller.php b/application/controllers/Controller.php old mode 100755 new mode 100644 diff --git a/application/controllers/CostCenter.php b/application/controllers/CostCenter.php old mode 100755 new mode 100644 diff --git a/application/controllers/assetdetails.php b/application/controllers/assetdetails.php old mode 100755 new mode 100644 diff --git a/application/controllers/c_test.php b/application/controllers/c_test.php old mode 100755 new mode 100644 diff --git a/application/controllers/emergencypurchaseorder.php b/application/controllers/emergencypurchaseorder.php old mode 100755 new mode 100644 diff --git a/application/controllers/emergencypurchaseorder.php~ b/application/controllers/emergencypurchaseorder.php~ deleted file mode 100755 index 565be555..00000000 --- a/application/controllers/emergencypurchaseorder.php~ +++ /dev/null @@ -1,1086 +0,0 @@ -load->model('purchaseorder_model'); - - $this->load->library('session'); - $this->load->library('form_validation'); - $this->load->model('requistion_model'); - $this->isLoggedIn(); - } - - /** - * This function used to load the first screen of the user - */ - public function index() - { - $this->global['pageTitle'] = 'Siddharth : AddPO'; - - $this->loadViews("addPO", $this->global, NULL , NULL); - } - - function requisition() - { - $data['DeptList'] = $this->purchaseorder_model->getDepartmentListForAllReq(); - - $data['stList'] = $this->purchaseorder_model->getStatusListforAllReq(); - - $data['ReqList'] = $this->purchaseorder_model->getRequistionListbySearch(); - $this->global['pageTitle'] = 'Siddharth : Create PO from Requisition List'; - - $this->loadViews("createPOfromRequistion", $this->global, $data,Null); - } - - function CreateEmergencyPO() - { - $this->global['pageTitle'] = 'Siddharth : Create Emergency Purchase Order'; - $data['RequestType'] = $this->requistion_model->getConfigValue('C004'); - $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); - $data['DeptList'] = $this->purchaseorder_model->getDepartmentAllList(); - $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); - $data['MaxPODate'] = $this->purchaseorder_model->getLastCreatedPODate(); - $data['TaxType'] = $this->purchaseorder_model->getConfigValue('C006'); - $data['FreightType'] = $this->purchaseorder_model->getConfigValue('C018'); - - $this->loadViews("alterpurchaseorder", $this->global, $data, Null); - - } - /** - * this function used for get all material code using request type - */ - function getMaterialCode(){ - $reqType = $this->input->post('input'); - $materialList = $this->requistion_model->GetMaterialCode($reqType); - echo json_encode($materialList); - - } - - /*This function is used for get cost center list using department code*/ - function getCostCenterName(){ - $CostList=''; - $DeptCode = $this->input->post('id'); - $CostList = $this->requistion_model->GetCostCenterByDept($DeptCode); - // print_r($CostList); - echo json_encode($CostList); - - } - - //This used to Create Service Purchase Order - function addNewServicePurchaseOrder() - { - - - $POdt =$this->input->post('PODate'); - $PODate = $this->getDateformat($POdt); - $SupplierID = $this->input->post('drpSupplier'); - $DeliveryAddr = $this->input->post('DeliveryAddr'); - $dt = $this->input->post('Deliverydt'); - $CostCenterName = $this->input->post('CostCenterName'); - $DeliveryOption = $this->input->post('DateRange'); - if($DeliveryOption==1){ - $Deliverydt = ''; - $DeliverySchedule = $this->input->post('Scheduleby'); - } - else{ - $Deliverydt = $this->getDateformat($dt); - $DeliverySchedule = ''; - } - - - $POType = $this->input->post('POType'); - - $SpcialInstruction = $this->input->post('TextSpcialInstruction'); - $TotalOrderValueSummary = $this->input->post('TextTotalOrderValueSummaryService'); - - $POStatus = $this->input->post('TextStatus'); - $CreateBy = $this->session->userdata ('userId'); - $RequestedBy = $this->session->userdata ('EmpID'); - - $ReqStatus = REQITEM_Emergency_PO_CREATED; - - $RowCount = $this->input->post('TextRowCount'); - - $DeletedRow = $this->input->post('TextDeletedRowCount'); - - $comma_separated = explode(':', $DeletedRow); - - $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); - - $createddt = $dt->format('Y-m-d H:i:s'); - //create T_Requestion_Master - $Request = array('ReqType'=>$POType, 'Requestedby'=>$RequestedBy,'CostCenterCode'=>$CostCenterName,'Status'=>$ReqStatus,'Comments'=>$SpcialInstruction,'ReqDate'=>$createddt,'CreatedDate'=>$createddt,'CreatedBy'=>$CreateBy); - - $Req = $this->requistion_model->addRequistion($Request); - - $RegNo=''; - if(count($Req)>0) - { - $RegNo = $Req[0]['ReqNo']; - } - - - // PO Master - $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'DeliverySchedule'=>$DeliverySchedule,'DeliveryOption'=>$DeliveryOption,'ServiceDescription'=>$SpcialInstruction,'CreatedBy'=>$CreateBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'CreatedDate'=>$createddt ); - - $POMaster = $this->purchaseorder_model->addPOMaster($POList); - $PONO = ''; - if(count($POMaster)>0) - { - $PONO = $POMaster[0]['PONO']; - } - - $RegDetailsStatus=REQITEM_POCREATED; - - // PO Line Items - $LineItemStatus = REQITEM_NEW; - - for ($i = 1; $i <= $RowCount; $i++) - { - - $MaterialCode = $this->input->post('materialCode'.$i); - $Quantity = $this->input->post('quantity'.$i); - $Reqnumber = $this->input->post('Reqnumber'.$i); - $itemRate = $this->input->post('itemRate'.$i); - $ServiceTax = $this->input->post('ServiceTax'.$i); - $EduCess = $this->input->post('EduCess'.$i); - $SecHighTax = $this->input->post('SecHighTax'.$i); - $KrishiTax = $this->input->post('KrishiTax'.$i); - $SwachhTax = $this->input->post('SwachhTax'.$i); - $CostCenter = $this->input->post('costCode'.$i); - - $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); - $SkipInsert = "False"; - if( count($comma_separated) > 0) - { - for($j = 1; $j < count($comma_separated); $j++) - { - $deletedRow = $comma_separated[$j]; - - if($deletedRow == $i ) - { - $SkipInsert = "True"; - break; - } - - } - } - if($SkipInsert == "False") - { - - //add requistion details - $ReqDetails = array('ReqNo'=>$RegNo, 'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Status'=>$RegDetailsStatus,'UpdatedBy'=>$CreateBy,'UpdatedOn'=>$createddt); - - - $ReqDetQuery = $this->requistion_model->addRequistionDetails($ReqDetails); - - - - $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$RegNo,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt,'CostCenterCode'=>$CostCenter); - $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); - $LineItemNo = ''; - if(count($POLineItem)>0) - { - $LineItemNo = $POLineItem[0]['LineItemNo']; - } - - - if(trim($POType) == SERVICE ) - { - // echo 'Success'; - - $ServiceTaxList = array('LineItemNo'=>$LineItemNo, 'ServiceTax'=>$ServiceTax,'EducessTax'=>$EduCess,'SecHigherEducessTax'=>$SecHighTax,'KrishiKalyantax'=>$KrishiTax,'SwachhBharattax'=>$SwachhTax,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt); - - $ServiceTax = $this->purchaseorder_model->addServiceTax($ServiceTaxList); - - } - } - else { - - } - - } - - if($POStatus == REQ_DRAFT) - { - echo 'Emergency Service Purchase Order Saved Successfully!The PO NO Is: '.$PONO; - - } - else - { - echo 'Emergency Service Purchase Order Created Successfully!The PO NO Is: '.$PONO; - - } - - - } - - - - //This used to Create Revenue Emergency Purchase Order - function addNewRevenuePurchaseOrder() - { - - $POdt =$this->input->post('PODate'); - $PODate = $this->getDateformat($POdt); - $SupplierID = $this->input->post('drpSupplier'); - $DeliveryAddr = $this->input->post('DeliveryAddr'); - $dt = $this->input->post('Deliverydt'); - $DeliveryOption = $this->input->post('DateRange'); - if($DeliveryOption==1){ - $Deliverydt = ''; - $DeliverySchedule = $this->input->post('Scheduleby'); - } - else{ - $Deliverydt = $this->getDateformat($dt); - $DeliverySchedule = ''; - } - $CostCenterName = $this->input->post('CostCenterName'); - $POType = $this->input->post('POType'); - $PoRange = $this->input->post('txtPoRange'); - - $SpcialInstruction = $this->input->post('TextSpcialInstruction'); - $TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary'); - $POStatus = $this->input->post('TextStatus'); - - $CreateBy = $this->session->userdata ( 'userId' ); - $RowCount = $this->input->post('TextRowCount'); - $DeletedRow = $this->input->post('TextDeletedRowCount'); - $RequestedBy = $this->session->userdata ('EmpID'); - $ReqStatus = REQITEM_Emergency_PO_CREATED; - - - $comma_separated = explode(':', $DeletedRow); - - $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); - $createddt = $dt->format('Y-m-d H:i:s'); - - //add requistion - $Request = array('ReqType'=>$POType, 'Requestedby'=>$RequestedBy,'CostCenterCode'=>$CostCenterName,'Status'=>$ReqStatus,'Comments'=>$SpcialInstruction,'ReqDate'=>$createddt,'CreatedDate'=>$createddt,'CreatedBy'=>$CreateBy); - - $Req = $this->requistion_model->addRequistion($Request); - - $RegNo=''; - if(count($Req)>0) - { - $RegNo = $Req[0]['ReqNo']; - } - // PO Master - $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'DeliverySchedule'=>$DeliverySchedule,'DeliveryOption'=>$DeliveryOption,'PORange'=>$PoRange,'ServiceDescription'=>$SpcialInstruction,'CreatedBy'=>$CreateBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'CreatedDate'=>$createddt ); - - $POMaster = $this->purchaseorder_model->addPOMaster($POList); - - $PONO = ''; - if(count($POMaster)>0) - { - $PONO = $POMaster[0]['PONO']; - } - - // PO Line Items - $RegDetailsStatus=REQITEM_POCREATED; - $LineItemStatus = REQITEM_NEW; - - for ($i = 1; $i <= $RowCount; $i++) - { - - $MaterialCode = $this->input->post('materialCode'.$i); - $Quantity = $this->input->post('quantity'.$i); - $Reqnumber = $this->input->post('Reqnumber'.$i); - $itemRate = $this->input->post('itemRate'.$i); - - $DiscountType = $this->input->post('DisType'.$i); - $DiscountValue = $this->input->post('DisVal'.$i); - $AfterDiscount = $this->input->post('AfterDisVal'.$i); - $PackagingOption = $this->input->post('PackOption'.$i); - $PackagingType = $this->input->post('PackType'.$i); - $PackagingValue = $this->input->post('PackVal'.$i); - $AfterPackagingValue = $this->input->post('AfterPackVal'.$i); - $ExciseOption = $this->input->post('ExciseOption'.$i); - $ExciseValue = $this->input->post('ExciseVal'.$i); - $AfterExciseValue = $this->input->post('AfterExciseVal'.$i); - $VatOption = $this->input->post('VatOption'.$i); - $VatValue = $this->input->post('VatVal'.$i); - $AfterVatValue = $this->input->post('AfterVatVal'.$i); - $CSTOption = $this->input->post('CSTOption'.$i); - $CSTValue = $this->input->post('CSTVal'.$i); - $AfterCSTValue = $this->input->post('AfterCSTVal'.$i); - $GSTValue = $this->input->post('GSTVal'.$i); - $AfterGSTValue = $this->input->post('AfterGSTVal'.$i); - $OtherTaxValue = $this->input->post('OtherTaxVal'.$i); - $AfterOtherTaxValue = $this->input->post('AfterOtherTaxVal'.$i); - $FreightType = $this->input->post('FreightType'.$i); - $FreightValue = $this->input->post('FreightVal'.$i); - $AfterFreightValue = $this->input->post('AfterFreightVal'.$i); - $InsuranceValue = $this->input->post('Insval'.$i); - $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); - $CostCenter = $this->input->post('costCode'.$i); - - $SkipInsert = "False"; - if( count($comma_separated) > 0) - { - for($j = 1; $j < count($comma_separated); $j++) - { - $deletedRow = $comma_separated[$j] ; - - if($deletedRow == $i ) - { - $SkipInsert = "True"; - break; - } - - } - } - if($SkipInsert == "False") - { - //add requistion details - $ReqDetails = array('ReqNo'=>$RegNo, 'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Status'=>$RegDetailsStatus,'UpdatedBy'=>$CreateBy,'UpdatedOn'=>$createddt); - - - $ReqDetQuery = $this->requistion_model->addRequistionDetails($ReqDetails); - - $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$RegNo,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt,'CostCenterCode'=>$CostCenter); - - $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); - - $LineItemNo = ''; - if(count($POLineItem)>0) - { - $LineItemNo = $POLineItem[0]['LineItemNo']; - } - //echo $LineItemNo; - - if(trim($POType) == REVENUE ) - { - // echo 'Success'; - $RevenueTaxList = array('LineItemNo'=>$LineItemNo, 'DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt); - - $RevenueList = $this->purchaseorder_model->addRevenueTax($RevenueTaxList); - //echo 'Revenue tax Success'; - } - } - - } - echo 'Purchase Order Created Successfully! PO Number Is: '.$PONO ; - - } - - - /** - * This function is used to load the purchaseorder list - */ - function PurchaseOrderList() - { - - $this->load->library('pagination'); - - $count = $this->purchaseorder_model->purchaseorderListingCount(''); - - $returns = $this->paginationCompress ( "purchaseorderListing/", $count, 5 ); - - //$this->purchaseorder_model->UpdateRequistItemStatus(); - $this->purchaseorder_model->UpdateRequistionStatus(); - $data['POData'] = $this->purchaseorder_model->purchaseorderListing(); - - $this->global['pageTitle'] = 'Siddharth : Purchase Orders'; - - $this->loadViews("POlist", $this->global, $data, NULL); - - } - function Req_validate($selectValue) - { - //echo 'select_validate method called'; - // 'none' is the first option and the text says something like "-Choose one-" - if(strlen($selectValue) == 0) - { - $this->form_validation->set_message('Req_validate', 'Please Select Requisition Number to Create PO.'); - return false; - } - else // user picked something - { - return true; - } - } - - /** - * This function used to show the Purchase Order Screen - */ - - function CreatePurchaseOrder() - { - - - $this->load->library('form_validation'); - - $this->form_validation->set_rules('txtReqNo', 'txtReqNo', 'callback_Req_validate'); - - if($this->form_validation->run() == FALSE) - { - $this->requisition(); - //echo 'Validate method called'; - } - else - { - - $this->global['pageTitle'] = 'Siddharth : Purchase order form'; - $data['TaxType'] = $this->purchaseorder_model->getConfigValue('C006'); - $data['FreightType'] = $this->purchaseorder_model->getConfigValue('C018'); - $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); - $SelectedReq = json_decode($this->input->post('txtReqNo')); - $Req = $SelectedReq->Req; - $data['ReqList'] = $Req ; - $ReqArray = array(); - $ReqType = ''; - $result = array(); - - foreach ($Req as $SID): - $ReqArray[] = $SID->ReqNo ; - $result[] = $this->purchaseorder_model->getRawPOMaterialList($SID->ReqNo); - $ReqType = $SID->ReqType; - //echo $SID->ReqNo; - - endforeach; - //print_r ($result); - $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); - $Year = $dt->format('Y'); - $data['CostList'] = $this->purchaseorder_model->getCostCenterbyRequist('',$Year,$ReqType); - $data['MaterialList'] = $result; //$this->purchaseorder_model->getRawMaterialList($ReqType,$ReqArray); - //print_r ($data['MaterialList']); - $data['RequistionDetails'] = $this->purchaseorder_model->getRequistDetails($ReqArray); - $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); - $data['MaxPODate'] = $this->purchaseorder_model->getLastCreatedPODate(); - - $ViewName = ''; - if($ReqType == REVENUE) - { - $ViewName = 'Purchaseorder'; - } - else if($ReqType == SERVICE) - { - $ViewName = 'servicePurchaseorder'; - } - $this->loadViews($ViewName, $this->global,$data, NULL); - } - } - - function CreatePOPrint() - { - $PONO = $_GET['PONO']; - $ReqType = $_GET['ReqType']; - - if($ReqType == SERVICE) - { - $this ->servicepoprint($PONO); - - } - else if($ReqType == REVENUE) - { - $this ->revenuepoprint($PONO); - - } - } - //To View/Update Purchase Order - function EditPurchaseOrder() - { - $PONO = $_GET['PONO']; - $ReqType = $_GET['ReqType']; - $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); - $Year = $dt->format('Y'); - $data['CostList'] = $this->purchaseorder_model->getCostCenterbyRequist('',$Year,$ReqType); - $Req = $this->purchaseorder_model->getRequistionNoFromPO($PONO); - $data['ReqList'] = $Req ; - $result = array(); - $ReqArray = array(); - foreach ($Req as $SID): - $ReqArray[] = $SID->ReqNo ; - $result[] = $this->purchaseorder_model->getRawPOMaterialList($SID->ReqNo); - endforeach; - $data['MaterialList'] = $result;//$this->purchaseorder_model->getRawMaterialList($ReqType,$ReqArray); - $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); - $data['RequistionDetails'] = $this->purchaseorder_model->getRequistDetails($ReqArray); - $data['POMaster'] = $this->purchaseorder_model->GetServicePurchaseOrder($PONO); - $data['MaxPODate'] = $this->purchaseorder_model->getLastCreatedPODate(); - $data['TaxType'] = $this->purchaseorder_model->getConfigValue('C006'); - $data['FreightType'] = $this->purchaseorder_model->getConfigValue('C018'); - if($ReqType == SERVICE) - { - - $data['POItem'] = $this->purchaseorder_model->GetServicePurchaseOrderDetails($PONO); - $this->global['pageTitle'] = 'Siddharth : Edit Service Purchase order form'; - $this->loadViews("EditservicePurchaseorder", $this->global, $data, NULL); - } - else if($ReqType == REVENUE) - { - - $data['POItem'] = $this->purchaseorder_model->GetRevenuePurchaseOrderDetails($PONO); - $this->global['pageTitle'] = 'Siddharth : Edit Revenue Purchase order form'; - $this->loadViews("editRevenuepurchaseorder", $this->global, $data, NULL); - } - - } - - // To get the Material value based on the MaterialCode - function getDetailsforReq() - { - - - $SearchFilter= $this->input->post('id'); - // $reqDate= $this->input->post('ReqDate'); - $DeptCode = $SearchFilter[0]; - $MatType = $SearchFilter[1]; - $ReqNo = $SearchFilter[2]; - // $ReqDetai = $this->purchaseorder_model->getRequistDetails( $EmpID ); - - $CostList = $this->requistion_model->GetCostCenterByDept( $DeptCode); - - $HTML = ""; - $BudAmount = ""; - if(count($CostList) > 0) - { - for ($j = 0; $j < count($CostList); $j++) - { - $Code = $CostList[$j]['CostCenterCode']; - $Name = $CostList[$j]['CostCenterName']; - $HTML .=""; - } - } - $MaterialDetails = $this->purchaseorder_model->getRawMaterialListForPO($MatType,$ReqNo); - - $HTML1 = ""; - - if(count($MaterialDetails) > 0) - { - for ($j = 0; $j < count($MaterialDetails); $j++) - { - $Code = $MaterialDetails[$j]['MaterialCode']; - $Name = $MaterialDetails[$j]['MaterialName']; - $HTML1 .=""; - - } - - } - // print_r($HTML1); - - die(json_encode(array('MatDetail' =>$HTML1,'Cost'=> $HTML))); - } - /* This method to get the status based on the Department selection in th - */ - function getStatusByDepartment() - { - $DepId = $this->input->post('id'); - - $data = $this->purchaseorder_model->getStatusByDepartment($DepId); - - $HTML = ""; - if(count($data) > 0) - { - for ($j = 0; $j < count($data); $j++) - { - $Code = $data[$j]['StatusCode']; - $Name = $data[$j]['StatusName']; - $HTML .=""; - } - } - //echo $HTML; - die(json_encode(array('depStaus' => $HTML))); - } - - // To get the available Budget Amount - function AvilBudgetAmount() - { - $SearchFilter= $this->input->post('id'); - // $reqDate= $this->input->post('ReqDate'); - $CostCode = $SearchFilter[0]; - $ReqType = $SearchFilter[1]; - print_r($SearchFilter); - $CostCode= $this->input->post('id'); - $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); - - $Year = $dt->format('Y'); - $this->load->model('purchaseorder_model'); - $result = $this->purchaseorder_model->GetAvailableBudgetAmount($CostCode,$Year,$ReqType); - //print_r($result); - $AvilBudAmt = ''; - if(count($result)>0) - { - $AvilBudAmt = $result[0]['BudgetAmount'] - $result[0]['Totalvalue']; - } - - // echo 'Test'; - print_r($AvilBudAmt); - //die(json_encode(array('Cost' => $AvilBudAmt))); - } - - - function getDateformat($Val) - { - $date = new DateTime($Val,new DateTimeZone('Asia/Kolkata')); - // print_r($date); - $retDate = $date->format('Y-m-d H:i:s'); - return $retDate; - } - /* Method to get the Requistion list based on the search filter*/ - - function SearchListofRequistion() - { - $SearchFilter= $this->input->post('id'); - // $reqDate= $this->input->post('ReqDate'); - $DEPCode = $SearchFilter[0]; - $Status = $SearchFilter[1]; - $rng = $SearchFilter[2]; - // $ToDate = $SearchFilter[3]; - $FromDate =''; - $ToDate = ''; - // echo $rng; - $Dt = explode("-",$rng); - // print_r( $Dt); - if(count( $Dt)>1) - { - $FDate = $Dt[0]; - $TDate = $Dt[1]; - $FromDate = $this->getDateformat($FDate); - $ToDate = $this->getDateformat($TDate); - } - //echo $FromDate; - // print_r($Dt); - $result = $this->purchaseorder_model->getRequistionListbySearch($DEPCode,$Status,$FromDate,$ToDate); - - - $HTML=""; - for ($i = 0; $i < count($result); $i++) - { - $SNo = $i + 1; - $ReqNo = $result[$i]['ReqNo']; - $ReqType = $result[$i]['ReqType']; - $Reqedby = $result[$i]['FirstName']; - $ReqDate = $result[$i]['ReqDate']; - $Status = $result[$i]['StatusName']; - $Department = $result[$i]['DepartmentName']; - $Designation = $result[$i]['Designation']; - - $HTML.=" - - ". $ReqNo." - - ".$ReqType." - - ".$Reqedby." - ".$ReqDate." - ".$Status." - ".$Department." - ".$Designation." - "; - } - //print_r( $HTML); - die(json_encode(array('ReqList' =>$HTML))); - } - - - /* To View the request details*/ - function ListPORequistion() - { - $ReqNo= $this->input->post('id'); - $result = $this->requistion_model->getRequistItemList($ReqNo); - $ReqList = $this->requistion_model->getRequistDetails($ReqNo); - $DepNo = $ReqList[0]['DEPCode']; - $CostList = $this->requistion_model->GetCostCenterByDept($DepNo); - $HTML=""; - for ($i = 0; $i < count($result); $i++) - { - $SNo = $i + 1; - $MaterialCode = $result[$i]['MaterialCode']; - $MaterialName = $result[$i]['MaterialName']; - $UOM = $result[$i]['UOM']; - $Quantity = $result[$i]['Quantity']; - $HTML.=" - ".$SNo." - ". $MaterialCode." - - ".$MaterialName." - - ".$UOM." - ".$Quantity." - "; - - //$index = $index + 1; - - } - - $CostCenter = ""; - if(count($CostList) > 0) - { - for ($j = 0; $j < count($CostList); $j++) - { - $Code = $CostList[$j]['CostCenterCode']; - $Name = $CostList[$j]['CostCenterName']; - $CostCenter .=""; - } - } - //echo $HTML; - //echo $CostCenter; - die(json_encode(array('Items' =>$HTML,'Requist'=>$ReqList,'Cost'=>$CostCenter))); - } - - //This used to Create Revenue Purchase Order - function addNewPurchaseOrder() - { - $POdt =$this->input->post('PODate'); - $PODate = $this->getDateformat($POdt); - $SupplierID = $this->input->post('drpSupplier'); - $DeliveryAddr = $this->input->post('DeliveryAddr'); - $dt = $this->input->post('Deliverydt'); - $Deliverydt = $this->getDateformat($dt); - $POType = $this->input->post('POType'); - $PoRange = $this->input->post('txtPoRange'); - - $SpcialInstruction = $this->input->post('txtSpcialInstruction'); - $TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary'); - $POStatus = $this->input->post('txtStatus'); - - $CreateBy = $this->session->userdata ( 'userId' ); - $RowCount = $this->input->post('txtRowCount'); - $DeletedRow = $this->input->post('txtDeletedRow'); - - $comma_separated = explode(':', $DeletedRow); - - $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); - $createddt = $dt->format('Y-m-d H:i:s'); - // PO Master - $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'PORange'=>$PoRange,'ServiceDescription'=>$SpcialInstruction,'CreatedBy'=>$CreateBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'CreatedDate'=>$createddt ); - - $POMaster = $this->purchaseorder_model->addPOMaster($POList); - - $PONO = ''; - if(count($POMaster)>0) - { - $PONO = $POMaster[0]['PONO']; - } - //echo $PONO; - //echo $POType; - // PO Line Items - $LineItemStatus = REQITEM_NEW; - //echo ' test:'.REVENUE; - //echo $RowCount; - for ($i = 1; $i <= $RowCount; $i++) - { - - $MaterialCode = $this->input->post('materialCode'.$i); - $Quantity = $this->input->post('quantity'.$i); - $Reqnumber = $this->input->post('Reqnumber'.$i); - $itemRate = $this->input->post('itemRate'.$i); - - $DiscountType = $this->input->post('DisType'.$i); - $DiscountValue = $this->input->post('DisVal'.$i); - $AfterDiscount = $this->input->post('AfterDisVal'.$i); - $PackagingOption = $this->input->post('PackOption'.$i); - $PackagingType = $this->input->post('PackType'.$i); - $PackagingValue = $this->input->post('PackVal'.$i); - $AfterPackagingValue = $this->input->post('AfterPackVal'.$i); - $ExciseOption = $this->input->post('ExciseOption'.$i); - $ExciseValue = $this->input->post('ExciseVal'.$i); - $AfterExciseValue = $this->input->post('AfterExciseVal'.$i); - $VatOption = $this->input->post('VatOption'.$i); - $VatValue = $this->input->post('VatVal'.$i); - $AfterVatValue = $this->input->post('AfterVatVal'.$i); - $CSTOption = $this->input->post('CSTOption'.$i); - $CSTValue = $this->input->post('CSTVal'.$i); - $AfterCSTValue = $this->input->post('AfterCSTVal'.$i); - $GSTValue = $this->input->post('GSTVal'.$i); - $AfterGSTValue = $this->input->post('AfterGSTVal'.$i); - $OtherTaxValue = $this->input->post('OtherTaxVal'.$i); - $AfterOtherTaxValue = $this->input->post('AfterOtherTaxVal'.$i); - $FreightType = $this->input->post('FreightType'.$i); - $FreightValue = $this->input->post('FreightVal'.$i); - $AfterFreightValue = $this->input->post('AfterFreightVal'.$i); - $InsuranceValue = $this->input->post('Insval'.$i); - $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); - $CostCenter = $this->input->post('costCode'.$i); - - $SkipInsert = "False"; - if( count($comma_separated) > 0) - { - for($j = 1; $j < count($comma_separated); $j++) - { - $deletedRow = $comma_separated[$j] ; - - if($deletedRow == $i ) - { - $SkipInsert = "True"; - break; - } - - } - } - if($SkipInsert == "False") - { - $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt,'CostCenterCode'=>$CostCenter); - - $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); - - $LineItemNo = ''; - if(count($POLineItem)>0) - { - $LineItemNo = $POLineItem[0]['LineItemNo']; - } - //echo $LineItemNo; - - if(trim($POType) == REVENUE ) - { - // echo 'Success'; - $RevenueTaxList = array('LineItemNo'=>$LineItemNo, 'DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt); - - $RevenueList = $this->purchaseorder_model->addRevenueTax($RevenueTaxList); - //echo 'Revenue tax Success'; - } - } - - } - echo 'Purchase Order Created Successfully! PO Number Is: '.$PONO ; - - } - //This used to Edit the Revenue Purchase Order - function EditRevenuePurchaseOrder() - { - $PONO =$this->input->post('txtPONO'); - $POdt =$this->input->post('PODate'); - $PODate = $this->getDateformat($POdt); - $SupplierID = $this->input->post('drpSupplier'); - $DeliveryAddr = $this->input->post('txtDeliveryAddress'); - $dt = $this->input->post('Deliverydt'); - $Deliverydt = $this->getDateformat($dt); - $POType = $this->input->post('POType'); - $PoRange = $this->input->post('txtPoRange'); - - $SpcialInstruction = $this->input->post('SpcialInstruction'); - $TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary'); - $POStatus = $this->input->post('txtStatus'); - - $updatedBy = $this->session->userdata ( 'userId' ); - $RowCount = $this->input->post('txtRowCount'); - $DeletedRow = $this->input->post('txtDeletedRow'); - - $comma_separated = explode(':', $DeletedRow); - $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); - $updateddt = $dt->format('Y-m-d H:i:s'); - // PO Master - // PO Master - $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'ServiceDescription'=>$SpcialInstruction,'UpdateBY'=>$updatedBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'UpdatedOn'=>$updateddt ); - - $POMaster = $this->purchaseorder_model->updatePOMaster($PONO,$POList); - - $LineItemStatus = REQITEM_NEW; - - - - //echo $RowCount; - for ($i = 1; $i <= $RowCount; $i++) - { - - $MaterialCode = $this->input->post('materialCode'.$i); - $Quantity = $this->input->post('quantity'.$i); - $Reqnumber = $this->input->post('Reqnumber'.$i); - $itemRate = $this->input->post('itemRate'.$i); - - $DiscountType = $this->input->post('DisType'.$i); - $DiscountValue = $this->input->post('DisVal'.$i); - $AfterDiscount = $this->input->post('AfterDisVal'.$i); - $PackagingOption = $this->input->post('PackOption'.$i); - $PackagingType = $this->input->post('PackType'.$i); - $PackagingValue = $this->input->post('PackVal'.$i); - $AfterPackagingValue = $this->input->post('AfterPackVal'.$i); - $ExciseOption = $this->input->post('ExciseOption'.$i); - $ExciseValue = $this->input->post('ExciseVal'.$i); - $AfterExciseValue = $this->input->post('AfterExciseVal'.$i); - $VatOption = $this->input->post('VatOption'.$i); - $VatValue = $this->input->post('VatVal'.$i); - $AfterVatValue = $this->input->post('AfterVatVal'.$i); - $CSTOption = $this->input->post('CSTOption'.$i); - $CSTValue = $this->input->post('CSTVal'.$i); - $AfterCSTValue = $this->input->post('AfterCSTVal'.$i); - $GSTValue = $this->input->post('GSTVal'.$i); - $AfterGSTValue = $this->input->post('AfterGSTVal'.$i); - $OtherTaxValue = $this->input->post('OtherTaxVal'.$i); - $AfterOtherTaxValue = $this->input->post('AfterOtherTaxVal'.$i); - $FreightType = $this->input->post('FreightType'.$i); - $FreightValue = $this->input->post('FreightVal'.$i); - $AfterFreightValue = $this->input->post('AfterFreightVal'.$i); - $InsuranceValue = $this->input->post('Insval'.$i); - $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); - $POLineItemNo = $this->input->post('LineItemNo'.$i); - $CostCenter = $this->input->post('costCode'.$i); - $LineItemNo = ''; - - - $SkipInsert = "False"; - if( count($comma_separated) > 0) - { - for($j = 1; $j < count($comma_separated); $j++) - { - $deletedRow = $comma_separated[$j] ; - - if($deletedRow == $i ) - { - $SkipInsert = "True"; - break; - } - - } - } - if($SkipInsert == "False") - { - if(strlen($POLineItemNo) == 0) - { - $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt,'CostCenterCode'=>$CostCenter); - $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); - if(count($POLineItem)>0) - { - $LineItemNo = $POLineItem[0]['LineItemNo']; - } - - } - else - { - $LineItemNo = $POLineItemNo; - - $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt,'CostCenterCode'=>$CostCenter); - $POLineItem = $this->purchaseorder_model->updatePOLineItem($PONO,$POLineItemNo,$POLineItemList); - - } - $isExists = $this->purchaseorder_model->LineItemExistsinRevenueTax($LineItemNo); - if(count($isExists) == 0) - { - $RevenueTaxList = array('LineItemNo'=>$LineItemNo, 'DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt); - - $RevenueList = $this->purchaseorder_model->addRevenueTax($RevenueTaxList); - - } - else - { - $RevenueTaxList = array('DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt); - - $this->purchaseorder_model->updateRevenueTax($LineItemNo,$RevenueTaxList); - - } - } - - } - - echo 'Purchase Order Updated Successfully! PO Number Is: '.$PONO ; - } - function pageNotFound() - { - $this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found'; - - $this->loadViews("404", $this->global, NULL, NULL); - } - - public function revenuepoprint($PONO) - { - // Load all views as normal - - - //$PONO = $_GET['PO']; - - $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); - $data['POItem'] = $this->purchaseorder_model->GetRevenuePurchaseOrderDetailsForPDF($PONO); - - - // Add header to pdf - //$this->load->view('includes/pdfheader'); - - // Load the pdf page with multiviews - $this->load->View("revenuepopdf", $data); - - // Add header to pdf - //$this->load->view('includes/pdffooter'); - - // Get output html - $php = $this->output->get_output(); - - // Load library - $this->load->library('dompdf_gen'); - - // Convert to PDF - $this->dompdf->load_html($php); - $this->dompdf->render(); - $data['Attachment'] = FALSE; - $this->dompdf->stream("RevenuePOReport.pdf",$data,$php); - - } - public function servicepoprint($PONO) - { - - // $this->load->view('includes/pdfheader'); - - // Load the pdf page with multiviews - $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); - $data['POItem'] = $this->purchaseorder_model->GetServicePurchaseOrderDetailsForPrint($PONO); - - $this->load->View("servicepopdf", $data); - - // Add header to pdf - //$this->load->view('includes/pdffooter'); - - // Get output html - $php = $this->output->get_output(); - - // Load library - $this->load->library('dompdf_gen'); - - // Convert to PDF - $this->dompdf->load_html($php); - $this->dompdf->render(); - $data['Attachment'] = FALSE; - $this->dompdf->stream("ServicePOReport.pdf",$data,$php); - - } - /** - * This function used to load the Delete the Requistion Items - */ - function DeletePODetails() - { - - $ReqList= $this->input->post('id'); - $LineItemNo = ''; - $ReqNo =''; - $MaterialCode = ''; - $POType = ''; - if(count($ReqList) > 0) - { - $LineItemNo = $ReqList[0]; - $ReqNo = $ReqList[1]; - $MaterialCode = $ReqList[2]; - $POType = $ReqList[3]; - } - // print_r($ReqList); - - - If($POType == REVENUE) - { - $this->purchaseorder_model->DeletePORevenueTax($LineItemNo); - } - else If($POType == SERVICE) - { - $this->purchaseorder_model->DeletePOServiceTax($LineItemNo); - } - $this->purchaseorder_model->DeletePOLineItem($LineItemNo , $ReqNo,$MaterialCode); - echo "Successfully Deleted the Line item".$LineItemNo; - - } -} - -?> diff --git a/application/controllers/employeedetails.php b/application/controllers/employeedetails.php old mode 100755 new mode 100644 diff --git a/application/controllers/emppaydate.php b/application/controllers/emppaydate.php old mode 100755 new mode 100644 diff --git a/application/controllers/error.php b/application/controllers/error.php old mode 100755 new mode 100644 diff --git a/application/controllers/index.html b/application/controllers/index.html old mode 100755 new mode 100644 diff --git a/application/controllers/inwardgateregister.php b/application/controllers/inwardgateregister.php old mode 100755 new mode 100644 diff --git a/application/controllers/login.php b/application/controllers/login.php old mode 100755 new mode 100644 index 9a0b7b2c..d9d6d69b --- a/application/controllers/login.php +++ b/application/controllers/login.php @@ -1,4 +1,3 @@ - input->post('password'); $result = $this->login_model->loginMe($email, $password); - // print_r( $result); + if(count($result) > 0) { foreach ($result as $res) diff --git a/application/controllers/monthlypay.php b/application/controllers/monthlypay.php old mode 100755 new mode 100644 diff --git a/application/controllers/pages.php b/application/controllers/pages.php old mode 100755 new mode 100644 diff --git a/application/controllers/payslip.php b/application/controllers/payslip.php old mode 100755 new mode 100644 diff --git a/application/controllers/purchaseorder.php b/application/controllers/purchaseorder.php old mode 100755 new mode 100644 index 1bb39377..32180bb1 --- a/application/controllers/purchaseorder.php +++ b/application/controllers/purchaseorder.php @@ -67,9 +67,9 @@ class purchaseorder extends BaseController $this->load->library('pagination'); - $count = $this->purchaseorder_model->purchaseorderListingCount(''); + // $count = $this->purchaseorder_model->purchaseorderListingCount(''); - $returns = $this->paginationCompress ( "purchaseorderListing/", $count, 10 ); + //$returns = $this->paginationCompress ( "purchaseorderListing/", $count, 10 ); $this->purchaseorder_model->UpdateRequistionStatus(); diff --git a/application/controllers/purchaseorderform.php b/application/controllers/purchaseorderform.php deleted file mode 100755 index 61b9914e..00000000 --- a/application/controllers/purchaseorderform.php +++ /dev/null @@ -1,90 +0,0 @@ -load->model('purchaseorder_model'); - - $this->load->library('session'); - $this->load->library('form_validation'); - - $this->isLoggedIn(); - } - - /** - * This function used to load the first screen of the user - */ - - function purchaseorder() - { - - - $this->global['pageTitle'] = 'Siddharth : Purchase order form'; - $data['MaterialList'] = $this->purchaseorder_model->getRawMaterialList(); - $data['TaxType'] = $this->purchaseorder_model->getConfigValue('C006'); - $data['RequestType'] = $this->purchaseorder_model->getConfigValue('C004'); - $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); - - $this->loadViews("Purchaseorder", $this->global,$data, NULL); - - } - function alternatepo() - { - - $this->global['pageTitle'] = 'Siddharth : Alternate PO'; - - $this->loadViews("alterpurchaseorder", $this->global, NULL); - - } - function alternatepoprint() - { - $this->global['pageTitle'] = 'Siddharth : Alternate PO print'; - - $this->load->View("alterpurchaseorderprint", $this->global, NULL); - $php = $this->output->get_output(); - - // Load library - $this->load->library('dompdf_gen'); - - - require_once(APPPATH .'third_party/dompdf/dompdf_config.inc.php'); - $dompdf = new DOMPDF(); - $dompdf->set_paper('A4', 'portrait'); - $dompdf->load_html($php); - - $dompdf->render(); - - // add the header - $canvas = $dompdf->get_canvas(); - $font = Font_Metrics::get_font("helvetica", "bold"); - - // the same call as in my previous example - $canvas->page_text(72, 18, "Page: {PAGE_NUM} of {PAGE_COUNT}", - $font, 6, array(0,0,0)); - - $dompdf->stream($filename); - } - - function pageNotFound() - { - $this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found'; - - $this->loadViews("404", $this->global, NULL, NULL); - } -} - -?> \ No newline at end of file diff --git a/application/controllers/rawmaterialdetails.php b/application/controllers/rawmaterialdetails.php old mode 100755 new mode 100644 index 0d4ffeaf..5fe3ac95 --- a/application/controllers/rawmaterialdetails.php +++ b/application/controllers/rawmaterialdetails.php @@ -322,4 +322,4 @@ class rawmaterialdetails extends BaseController } } -?>+ \ No newline at end of file +?> \ No newline at end of file diff --git a/application/controllers/requisitionform.php b/application/controllers/requisitionform.php old mode 100755 new mode 100644 diff --git a/application/controllers/requisitionlist.php b/application/controllers/requisitionlist.php deleted file mode 100755 index f69ea03f..00000000 --- a/application/controllers/requisitionlist.php +++ /dev/null @@ -1,54 +0,0 @@ -load->model('purchaseorder_model'); - - $this->load->library('session'); - $this->load->library('form_validation'); - - $this->isLoggedIn(); - } - - /** - * This function used to load the first screen of the user - */ - function requisitionlisting() - { - $this->global['pageTitle'] = 'Siddharth : Requisition Listing'; - - $this->loadViews("requisitionlisting", $this->global, NULL); - } - - function requisition() - { - $this->global['pageTitle'] = 'Siddharth : Requisition List'; - - $this->loadViews("requisitionlist", $this->global, NULL); - } - - - function pageNotFound() - { - $this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found'; - - $this->loadViews("404", $this->global, NULL, NULL); - } -} - -?> \ No newline at end of file diff --git a/application/controllers/requisitionlistapproval.php b/application/controllers/requisitionlistapproval.php deleted file mode 100755 index bd1e44ea..00000000 --- a/application/controllers/requisitionlistapproval.php +++ /dev/null @@ -1,56 +0,0 @@ -load->model('purchaseorder_model'); - - $this->load->library('session'); - $this->load->library('form_validation'); - - $this->isLoggedIn(); - } - - /** - * This function used to load the first screen of the user - */ - public function index() - { - $this->global['pageTitle'] = 'Siddharth : Requisition Approval List'; - - $data['Requeststatus'] = $this->purchaseorder_model->getConfigValue('C016'); - - $this->loadViews("requisitionlistapproval", $this->global, $data,null); - - } - - function requisitionlistapproval() - { - $this->global['pageTitle'] = 'Siddharth : Requisition Approval List'; - - $this->loadViews("requisitionlistapproval", $this->global, NULL); - } - - function pageNotFound() - { - $this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found'; - - $this->loadViews("404", $this->global, NULL, NULL); - } -} - -?> \ No newline at end of file diff --git a/application/controllers/servicepurchaseorder.php b/application/controllers/servicepurchaseorder.php old mode 100755 new mode 100644 diff --git a/application/controllers/supplier.php b/application/controllers/supplier.php old mode 100755 new mode 100644 diff --git a/application/controllers/user.php b/application/controllers/user.php old mode 100755 new mode 100644 index 3513a360..8f44c3ce --- a/application/controllers/user.php +++ b/application/controllers/user.php @@ -1,4 +1,3 @@ - 0) { - echo ""; + redirect('userListing','refresh'); - - } + echo ""; + + } else { - echo ""; + redirect('userListing','refresh'); - + echo ""; } } diff --git a/application/core/index.html b/application/core/index.html old mode 100755 new mode 100644 diff --git a/application/errors/error_404.php b/application/errors/error_404.php old mode 100755 new mode 100644 diff --git a/application/errors/error_db.php b/application/errors/error_db.php old mode 100755 new mode 100644 diff --git a/application/errors/error_general.php b/application/errors/error_general.php old mode 100755 new mode 100644 diff --git a/application/errors/error_php.php b/application/errors/error_php.php old mode 100755 new mode 100644 diff --git a/application/errors/index.html b/application/errors/index.html old mode 100755 new mode 100644 diff --git a/application/helpers/cias_helper.php b/application/helpers/cias_helper.php old mode 100755 new mode 100644 diff --git a/application/helpers/index.html b/application/helpers/index.html old mode 100755 new mode 100644 diff --git a/application/hooks/index.html b/application/hooks/index.html old mode 100755 new mode 100644 diff --git a/application/index.html b/application/index.html old mode 100755 new mode 100644 diff --git a/application/language/english/index.html b/application/language/english/index.html old mode 100755 new mode 100644 diff --git a/application/language/index.html b/application/language/index.html old mode 100755 new mode 100644 diff --git a/application/libraries/BaseController.php b/application/libraries/BaseController.php old mode 100755 new mode 100644 diff --git a/application/libraries/Excel.php b/application/libraries/Excel.php old mode 100755 new mode 100644 diff --git a/application/libraries/Excel2.php b/application/libraries/Excel2.php old mode 100755 new mode 100644 diff --git a/application/libraries/dompdf_gen.php b/application/libraries/dompdf_gen.php old mode 100755 new mode 100644 diff --git a/application/libraries/index.html b/application/libraries/index.html old mode 100755 new mode 100644 diff --git a/application/libraries/pdf.php b/application/libraries/pdf.php old mode 100755 new mode 100644 diff --git a/application/logs/index.html b/application/logs/index.html old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-04-20.php b/application/logs/log-2017-04-20.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-04-21.php b/application/logs/log-2017-04-21.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-04-22.php b/application/logs/log-2017-04-22.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-04-24.php b/application/logs/log-2017-04-24.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-04-26.php b/application/logs/log-2017-04-26.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-04-27.php b/application/logs/log-2017-04-27.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-04-28.php b/application/logs/log-2017-04-28.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-02.php b/application/logs/log-2017-05-02.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-03.php b/application/logs/log-2017-05-03.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-04.php b/application/logs/log-2017-05-04.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-08.php b/application/logs/log-2017-05-08.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-10.php b/application/logs/log-2017-05-10.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-12.php b/application/logs/log-2017-05-12.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-19.php b/application/logs/log-2017-05-19.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-22.php b/application/logs/log-2017-05-22.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-23.php b/application/logs/log-2017-05-23.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-24.php b/application/logs/log-2017-05-24.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-25.php b/application/logs/log-2017-05-25.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-26.php b/application/logs/log-2017-05-26.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-27.php b/application/logs/log-2017-05-27.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-29.php b/application/logs/log-2017-05-29.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-30.php b/application/logs/log-2017-05-30.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-05-31.php b/application/logs/log-2017-05-31.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-06-01.php b/application/logs/log-2017-06-01.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-06-02.php b/application/logs/log-2017-06-02.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-06-05.php b/application/logs/log-2017-06-05.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-06-14.php b/application/logs/log-2017-06-14.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-06-15.php b/application/logs/log-2017-06-15.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-06-19.php b/application/logs/log-2017-06-19.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-06-20.php b/application/logs/log-2017-06-20.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-06-21.php b/application/logs/log-2017-06-21.php old mode 100755 new mode 100644 diff --git a/application/logs/log-2017-06-22.php b/application/logs/log-2017-06-22.php index 4bc381e0..1d0741ef 100644 --- a/application/logs/log-2017-06-22.php +++ b/application/logs/log-2017-06-22.php @@ -3,3 +3,758 @@ ERROR - 2017-06-22 08:00:58 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/Git_Server/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38 ERROR - 2017-06-22 08:01:33 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/Git_Server/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38 ERROR - 2017-06-22 08:01:52 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /opt/lampp/htdocs/Git_Server/siddharth_application/application/views/editimportpo.php 1474 +ERROR - 2017-06-22 01:21:07 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/login.php:2) /home/kasiram9/public_html/SIA_SIT/system/libraries/Session.php 689 +ERROR - 2017-06-22 01:21:07 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/login.php:2) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 543 +ERROR - 2017-06-22 01:22:05 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/models/login_model.php:21) /home/kasiram9/public_html/SIA_SIT/system/libraries/Session.php 689 +ERROR - 2017-06-22 01:22:05 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/models/login_model.php:21) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 543 +ERROR - 2017-06-22 01:24:24 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/user.php:2) /home/kasiram9/public_html/SIA_SIT/system/libraries/Session.php 433 +ERROR - 2017-06-22 01:24:24 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/user.php:2) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 543 +ERROR - 2017-06-22 01:30:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 01:30:48 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 01:36:01 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 01:38:26 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 01:39:11 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 01:39:11 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 01:39:11 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 01:39:11 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 01:39:11 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 01:39:38 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 01:49:06 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/rawmaterialdetails.php:325) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 541 +ERROR - 2017-06-22 01:50:29 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/rawmaterialdetails.php:325) /home/kasiram9/public_html/SIA_SIT/system/libraries/Session.php 689 +ERROR - 2017-06-22 01:50:29 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/rawmaterialdetails.php:325) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 541 +ERROR - 2017-06-22 01:56:50 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/kasiram9/public_html/SIA_SIT/application/controllers/rawmaterialdetails.php:325) /home/kasiram9/public_html/SIA_SIT/system/helpers/url_helper.php 541 +ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:11:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:09 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:14:57 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:23:02 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:27:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 02:34:30 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 02:58:43 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 03:05:06 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:10:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 03:33:35 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 03:40:35 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 03:44:32 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 03:48:54 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 03:54:24 --> Query error: Commands out of sync; you can't run this command now +ERROR - 2017-06-22 03:55:17 --> Query error: Commands out of sync; you can't run this command now +ERROR - 2017-06-22 03:55:22 --> Query error: Commands out of sync; you can't run this command now +ERROR - 2017-06-22 03:57:34 --> Query error: Commands out of sync; you can't run this command now +ERROR - 2017-06-22 03:57:52 --> Query error: Commands out of sync; you can't run this command now +ERROR - 2017-06-22 03:58:45 --> Query error: Commands out of sync; you can't run this command now +ERROR - 2017-06-22 04:00:08 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 04:02:05 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:30 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:02:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:05:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:09:46 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 04:09:46 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 04:09:46 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 04:09:46 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 04:09:46 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 04:10:13 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:00 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:39 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:11:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:15:39 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 04:16:32 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:16:58 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:17:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:17:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:21:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:23:59 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:24:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:25:21 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:25:27 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 04:26:59 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 04:26:59 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 04:26:59 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 04:26:59 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 04:26:59 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:28:01 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:32:43 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:31 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:34:53 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 04:34:53 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 04:34:53 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 04:34:53 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 04:34:53 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:35:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:36:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:38:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:23 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 04:53:23 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 04:53:23 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 04:53:23 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 04:53:23 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 04:53:23 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 05:05:52 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:11:48 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:12:38 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:18:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:25:50 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:03 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:26:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:31:20 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:34:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:15 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:44:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:08 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:45:34 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:47:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:17 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:42 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:46 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:51:54 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:52:22 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 05:54:05 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 05:54:05 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 05:54:05 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 05:54:05 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 05:54:05 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 05:54:14 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 05:54:14 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 05:54:14 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 05:54:14 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 05:54:14 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 05:57:02 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 05:57:15 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 05:57:15 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 05:57:15 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 05:57:15 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 05:57:15 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:07:28 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 06:07:35 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 06:07:35 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 06:07:35 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 06:07:35 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 06:07:35 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:10:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 06:10:32 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474 +ERROR - 2017-06-22 06:11:33 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-22 06:12:24 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-22 06:14:06 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 06:14:06 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 06:14:06 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 06:14:06 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 06:14:06 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:18:33 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 06:18:40 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 06:18:40 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 06:18:40 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 06:18:40 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 06:18:40 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:19:53 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:20:05 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:20:07 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 06:20:07 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 06:20:07 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 06:20:07 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 06:20:07 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:24:15 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 06:24:15 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 06:24:15 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 06:24:15 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 06:24:15 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:30:14 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 06:30:14 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 06:30:14 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 06:30:14 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 06:30:14 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:34:29 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 06:34:38 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 06:34:38 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 06:34:38 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 06:34:38 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 06:34:38 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:40:04 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 06:40:04 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 06:40:04 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 06:40:04 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 06:40:04 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:42:44 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 06:42:44 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 06:42:44 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 06:42:44 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 06:42:44 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:45:55 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 06:46:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 06:48:17 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 06:48:17 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 06:48:17 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 06:48:17 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 06:48:17 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 06:48:21 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:25 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:49:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 06:51:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:10:41 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:11:27 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:19:11 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 07:19:11 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 07:19:11 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 07:19:11 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 07:19:11 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:22:49 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:23:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 07:26:29 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 07:26:49 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474 +ERROR - 2017-06-22 07:58:55 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 07:59:46 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 07:59:46 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 07:59:46 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 07:59:46 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 07:59:46 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 08:02:24 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 08:02:24 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 08:02:24 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 08:02:24 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 08:02:24 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 08:02:33 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 08:05:26 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 08:05:26 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 08:05:26 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 08:05:26 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 08:05:26 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 08:05:34 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 08:05:34 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 08:05:34 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 08:05:34 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 08:05:34 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 08:05:50 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 08:05:50 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 08:05:50 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 08:05:50 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 08:05:50 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 08:06:01 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 08:06:01 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 08:06:01 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 08:06:01 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 08:06:01 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 08:06:22 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 08:06:22 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 08:06:22 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 08:06:22 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 08:06:22 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 08:06:47 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 08:06:47 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 08:06:47 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 08:06:47 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 08:06:47 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 08:13:44 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 08:13:44 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 08:13:44 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 08:13:44 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 08:13:44 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 22:31:10 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 22:31:53 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474 +ERROR - 2017-06-22 22:32:08 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474 +ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:19 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:33 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:44 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:25:51 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:27:45 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-22 23:28:08 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 23:28:08 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 23:28:08 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 23:28:08 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 23:28:08 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 23:28:13 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 23:31:08 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 23:33:20 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 23:33:36 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474 +ERROR - 2017-06-22 23:33:36 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474 +ERROR - 2017-06-22 23:37:27 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 23:37:42 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-22 23:40:21 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-22 23:40:58 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-22 23:41:36 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474 +ERROR - 2017-06-22 23:41:36 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474 +ERROR - 2017-06-22 23:43:52 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 23:44:06 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 23:44:53 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-22 23:44:53 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-22 23:44:53 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-22 23:44:53 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-22 23:44:53 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-22 23:45:19 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-22 23:47:57 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 23:48:05 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-22 23:48:28 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-22 23:49:14 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 23:49:21 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-22 23:57:01 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 diff --git a/application/logs/log-2017-06-23.php b/application/logs/log-2017-06-23.php new file mode 100644 index 00000000..7ceb3fd8 --- /dev/null +++ b/application/logs/log-2017-06-23.php @@ -0,0 +1,101 @@ + + +ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:33:18 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:34:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 00:35:12 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-23 00:36:53 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-23 00:38:10 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:08:28 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:12:35 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:25:30 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-23 01:26:29 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-23 01:33:09 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-23 01:35:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-23 01:35:17 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:46:52 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:47:06 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 01:53:56 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-23 01:54:26 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-23 01:58:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-23 01:58:19 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:04 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:03:10 --> Severity: Notice --> Undefined index: RequisitionStatus /home/kasiram9/public_html/SIA_SIT/application/views/requisitionlistapproval.php 37 +ERROR - 2017-06-23 02:22:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-23 02:22:16 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-23 02:42:35 --> Severity: Notice --> Undefined variable: RequistionDetails /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 138 +ERROR - 2017-06-23 02:42:35 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 139 +ERROR - 2017-06-23 02:42:35 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 140 +ERROR - 2017-06-23 02:42:35 --> Severity: Notice --> Undefined variable: MaterialList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 186 +ERROR - 2017-06-23 02:42:35 --> Severity: Notice --> Undefined variable: CostList /home/kasiram9/public_html/SIA_SIT/application/views/alterpurchaseorder.php 214 +ERROR - 2017-06-23 02:52:02 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-23 02:57:58 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-23 02:58:06 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-23 02:59:49 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-23 06:18:40 --> Query error: Column 'LOP_Days' cannot be null +ERROR - 2017-06-23 06:23:57 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166 +ERROR - 2017-06-23 06:23:57 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166 +ERROR - 2017-06-23 06:23:57 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166 +ERROR - 2017-06-23 06:23:57 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166 +ERROR - 2017-06-23 06:23:57 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166 +ERROR - 2017-06-23 06:35:04 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166 +ERROR - 2017-06-23 06:35:04 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166 +ERROR - 2017-06-23 06:35:04 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166 +ERROR - 2017-06-23 06:35:04 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166 +ERROR - 2017-06-23 06:35:04 --> Severity: Notice --> Undefined index: PayOn /home/kasiram9/public_html/SIA_SIT/application/views/payslipgenerate.php 166 +ERROR - 2017-06-23 08:00:50 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 diff --git a/application/logs/log-2017-06-26.php b/application/logs/log-2017-06-26.php new file mode 100644 index 00000000..11356988 --- /dev/null +++ b/application/logs/log-2017-06-26.php @@ -0,0 +1,10 @@ + + +ERROR - 2017-06-26 04:07:26 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-26 04:07:35 --> Severity: Warning --> explode() expects parameter 2 to be string, array given /home/kasiram9/public_html/SIA_SIT/application/third_party/dompdf/include/style.cls.php 948 +ERROR - 2017-06-26 04:15:31 --> Severity: Notice --> Undefined property: stdClass::$AvlBudAmt /home/kasiram9/public_html/SIA_SIT/application/views/editimportpo.php 1474 +ERROR - 2017-06-26 04:19:04 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-26 04:40:55 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-26 04:42:29 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-26 06:25:28 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 +ERROR - 2017-06-26 06:31:23 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /home/kasiram9/public_html/SIA_SIT/system/database/drivers/mysqli/mysqli_result.php 38 diff --git a/application/models/assetdetails_model.php b/application/models/assetdetails_model.php old mode 100755 new mode 100644 diff --git a/application/models/costcenter_model.php b/application/models/costcenter_model.php old mode 100755 new mode 100644 diff --git a/application/models/employeedetails_model.php b/application/models/employeedetails_model.php old mode 100755 new mode 100644 diff --git a/application/models/emppaydate_model.php b/application/models/emppaydate_model.php old mode 100755 new mode 100644 diff --git a/application/models/index.html b/application/models/index.html old mode 100755 new mode 100644 diff --git a/application/models/inwardgateregister_model.php b/application/models/inwardgateregister_model.php old mode 100755 new mode 100644 index 465292bc..e8a79a57 --- a/application/models/inwardgateregister_model.php +++ b/application/models/inwardgateregister_model.php @@ -41,6 +41,8 @@ class inwardgateregister_model extends CI_Model $this->db->select('POM.PONO,POM.ServiceDescription,POM.DeliveryDate,sup.SupplierName,sup.Address'); $this->db->from('T_PurchaseOrder_Master POM'); $this->db->join('T_SupplierDetailsN sup', 'POM.SupplierID = sup.SupplierID','left'); + $this->db->where('status',"ST026",$pono); + //$this->db->join('T_PurchaseOrder_LineItem POL', 'POL.PONO = POM.PONO','left'); //$this->db->join('T_MaterialMaster MM', 'MM.MaterialCode = POL.MaterialCode','left'); //$this->db->where('PONO',$pono="PO0002" ); @@ -79,7 +81,7 @@ class inwardgateregister_model extends CI_Model $insert_id = $this->db->affected_rows(); $this->db->trans_complete(); // print_r($this->db->last_query()); - print_r($insert_id); + //print_r($insert_id); if($insert_id>0) { $subQuery = 'select max(IGRNO) as IGRNO from T_IGR_Master'; diff --git a/application/models/login_model.php b/application/models/login_model.php old mode 100755 new mode 100644 index d6ccf023..69ea4953 --- a/application/models/login_model.php +++ b/application/models/login_model.php @@ -18,7 +18,7 @@ class Login_model extends CI_Model $this->db->where('BaseTbl.email', $email); $this->db->where('BaseTbl.isDeleted', 0); $query = $this->db->get(); - print_r( $this->db->last_query()); + $user = $query->result(); diff --git a/application/models/monthlypay_model.php b/application/models/monthlypay_model.php old mode 100755 new mode 100644 diff --git a/application/models/payroll_model.php b/application/models/payroll_model.php old mode 100755 new mode 100644 diff --git a/application/models/purchaseorder_model.php b/application/models/purchaseorder_model.php old mode 100755 new mode 100644 index 0490175c..1303cb7c --- a/application/models/purchaseorder_model.php +++ b/application/models/purchaseorder_model.php @@ -29,15 +29,16 @@ class purchaseorder_model extends CI_Model * @param number $segment : This is pagination limit * @return array $result : This is result */ - function purchaseorderListing() + +function purchaseorderListing() { $this->db->distinct(); - $this->db->select('POMast.PONO,supp.SupplierName,TotalOrderValue,PODate,Stat.StatusName,Stat.StatusCode,Req.ReqType,DeliveryDate'); + $this->db->select('POMast.PONO,supp.SupplierName,TotalOrderValue,PODate,Stat.StatusName,Stat.StatusCode,Req.ReqType,DeliveryDate,DeliverySchedule,DeliveryOption'); $this->db->from('T_PurchaseOrder_Master POMast'); $this->db->join('T_SupplierDetailsN supp', 'supp.SupplierID = POMast.SupplierID'); $this->db->join('T_Status Stat', 'Stat.StatusCode = POMast.Status'); $this->db->join('T_PurchaseOrder_LineItem LineItem', 'POMast.PONO = LineItem.PONO'); - $this->db->join('T_Requestion_Master Req', 'Req.ReqNo = LineItem.ReqNo'); + $this->db->join('T_Requestion_Master Req', 'Req.ReqNo = LineItem.ReqNo'); $query = $this->db->get(); //print_r( $this->db->last_query()); @@ -432,21 +433,21 @@ class purchaseorder_model extends CI_Model // This Method to get the Service PO Details for Edit the Item function GetServicePurchaseOrder($PONO = '') - { - $this->db->distinct(); - $this->db->select('ReqNo,POMast.PONO,ServiceDescription,supp.SupplierID,supp.SupplierName,supp.Address,PODate,Stat.StatusName,DeliveryDate,DeliveryAddress,Stat.StatusCode'); + { + $this->db->distinct(); + $this->db->select('ReqNo,POMast.PONO,ServiceDescription,supp.SupplierID,supp.SupplierName,supp.Address,PODate,Stat.StatusName,DeliveryOption,DeliverySchedule,DeliveryDate,DeliveryAddress,Stat.StatusCode'); $this->db->from('T_PurchaseOrder_Master POMast'); - $this->db->join('T_SupplierDetailsN supp', 'supp.SupplierID = POMast.SupplierID'); - $this->db->join('T_Status Stat', 'Stat.StatusCode = POMast.Status'); - $this->db->join('T_PurchaseOrder_LineItem LineItem', 'POMast.PONO = LineItem.PONO'); - - $this->db->where('POMast.PONO', $PONO); + $this->db->join('T_SupplierDetailsN supp', 'supp.SupplierID = POMast.SupplierID'); + $this->db->join('T_Status Stat', 'Stat.StatusCode = POMast.Status'); + $this->db->join('T_PurchaseOrder_LineItem LineItem', 'POMast.PONO = LineItem.PONO'); + + $this->db->where('POMast.PONO', $PONO); $query = $this->db->get(); - - $result = $query->result(); - - return $result; - } + + $result = $query->result(); + + return $result; + } // This Method to get the Service PO Child Details for Edit the Item function GetServicePurchaseOrderDetails($PONO = '') diff --git a/application/models/rawmaterialdetails_model.php b/application/models/rawmaterialdetails_model.php old mode 100755 new mode 100644 diff --git a/application/models/requistion_model.php b/application/models/requistion_model.php old mode 100755 new mode 100644 diff --git a/application/models/supplier_model.php b/application/models/supplier_model.php old mode 100755 new mode 100644 diff --git a/application/models/user_model.php b/application/models/user_model.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel.php b/application/third_party/PHPExcel.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Autoloader.php b/application/third_party/PHPExcel/Autoloader.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/APC.php b/application/third_party/PHPExcel/CachedObjectStorage/APC.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/CacheBase.php b/application/third_party/PHPExcel/CachedObjectStorage/CacheBase.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/DiscISAM.php b/application/third_party/PHPExcel/CachedObjectStorage/DiscISAM.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/ICache.php b/application/third_party/PHPExcel/CachedObjectStorage/ICache.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/Igbinary.php b/application/third_party/PHPExcel/CachedObjectStorage/Igbinary.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/Memcache.php b/application/third_party/PHPExcel/CachedObjectStorage/Memcache.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/Memory.php b/application/third_party/PHPExcel/CachedObjectStorage/Memory.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/MemoryGZip.php b/application/third_party/PHPExcel/CachedObjectStorage/MemoryGZip.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/MemorySerialized.php b/application/third_party/PHPExcel/CachedObjectStorage/MemorySerialized.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/PHPTemp.php b/application/third_party/PHPExcel/CachedObjectStorage/PHPTemp.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/SQLite.php b/application/third_party/PHPExcel/CachedObjectStorage/SQLite.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/SQLite3.php b/application/third_party/PHPExcel/CachedObjectStorage/SQLite3.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorage/Wincache.php b/application/third_party/PHPExcel/CachedObjectStorage/Wincache.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CachedObjectStorageFactory.php b/application/third_party/PHPExcel/CachedObjectStorageFactory.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CalcEngine/CyclicReferenceStack.php b/application/third_party/PHPExcel/CalcEngine/CyclicReferenceStack.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/CalcEngine/Logger.php b/application/third_party/PHPExcel/CalcEngine/Logger.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation.php b/application/third_party/PHPExcel/Calculation.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/Database.php b/application/third_party/PHPExcel/Calculation/Database.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/DateTime.php b/application/third_party/PHPExcel/Calculation/DateTime.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/Engineering.php b/application/third_party/PHPExcel/Calculation/Engineering.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/Exception.php b/application/third_party/PHPExcel/Calculation/Exception.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/ExceptionHandler.php b/application/third_party/PHPExcel/Calculation/ExceptionHandler.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/Financial.php b/application/third_party/PHPExcel/Calculation/Financial.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/FormulaParser.php b/application/third_party/PHPExcel/Calculation/FormulaParser.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/FormulaToken.php b/application/third_party/PHPExcel/Calculation/FormulaToken.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/Function.php b/application/third_party/PHPExcel/Calculation/Function.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/Functions.php b/application/third_party/PHPExcel/Calculation/Functions.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/Logical.php b/application/third_party/PHPExcel/Calculation/Logical.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/LookupRef.php b/application/third_party/PHPExcel/Calculation/LookupRef.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/MathTrig.php b/application/third_party/PHPExcel/Calculation/MathTrig.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/Statistical.php b/application/third_party/PHPExcel/Calculation/Statistical.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/TextData.php b/application/third_party/PHPExcel/Calculation/TextData.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/Token/Stack.php b/application/third_party/PHPExcel/Calculation/Token/Stack.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Calculation/functionlist.txt b/application/third_party/PHPExcel/Calculation/functionlist.txt old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Cell.php b/application/third_party/PHPExcel/Cell.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Cell/AdvancedValueBinder.php b/application/third_party/PHPExcel/Cell/AdvancedValueBinder.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Cell/DataType.php b/application/third_party/PHPExcel/Cell/DataType.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Cell/DataValidation.php b/application/third_party/PHPExcel/Cell/DataValidation.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Cell/DefaultValueBinder.php b/application/third_party/PHPExcel/Cell/DefaultValueBinder.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Cell/Hyperlink.php b/application/third_party/PHPExcel/Cell/Hyperlink.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Cell/IValueBinder.php b/application/third_party/PHPExcel/Cell/IValueBinder.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart.php b/application/third_party/PHPExcel/Chart.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/Axis.php b/application/third_party/PHPExcel/Chart/Axis.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/DataSeries.php b/application/third_party/PHPExcel/Chart/DataSeries.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/DataSeriesValues.php b/application/third_party/PHPExcel/Chart/DataSeriesValues.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/Exception.php b/application/third_party/PHPExcel/Chart/Exception.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/GridLines.php b/application/third_party/PHPExcel/Chart/GridLines.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/Layout.php b/application/third_party/PHPExcel/Chart/Layout.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/Legend.php b/application/third_party/PHPExcel/Chart/Legend.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/PlotArea.php b/application/third_party/PHPExcel/Chart/PlotArea.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/Properties.php b/application/third_party/PHPExcel/Chart/Properties.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt b/application/third_party/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/Renderer/jpgraph.php b/application/third_party/PHPExcel/Chart/Renderer/jpgraph.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Chart/Title.php b/application/third_party/PHPExcel/Chart/Title.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Comment.php b/application/third_party/PHPExcel/Comment.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/DocumentProperties.php b/application/third_party/PHPExcel/DocumentProperties.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/DocumentSecurity.php b/application/third_party/PHPExcel/DocumentSecurity.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Exception.php b/application/third_party/PHPExcel/Exception.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/HashTable.php b/application/third_party/PHPExcel/HashTable.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Helper/HTML.php b/application/third_party/PHPExcel/Helper/HTML.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/IComparable.php b/application/third_party/PHPExcel/IComparable.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/IOFactory.php b/application/third_party/PHPExcel/IOFactory.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/NamedRange.php b/application/third_party/PHPExcel/NamedRange.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Abstract.php b/application/third_party/PHPExcel/Reader/Abstract.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/CSV.php b/application/third_party/PHPExcel/Reader/CSV.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/DefaultReadFilter.php b/application/third_party/PHPExcel/Reader/DefaultReadFilter.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel2003XML.php b/application/third_party/PHPExcel/Reader/Excel2003XML.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel2007.php b/application/third_party/PHPExcel/Reader/Excel2007.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel2007/Chart.php b/application/third_party/PHPExcel/Reader/Excel2007/Chart.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel2007/Theme.php b/application/third_party/PHPExcel/Reader/Excel2007/Theme.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5.php b/application/third_party/PHPExcel/Reader/Excel5.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5/Color.php b/application/third_party/PHPExcel/Reader/Excel5/Color.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5/Color/BIFF5.php b/application/third_party/PHPExcel/Reader/Excel5/Color/BIFF5.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5/Color/BIFF8.php b/application/third_party/PHPExcel/Reader/Excel5/Color/BIFF8.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5/Color/BuiltIn.php b/application/third_party/PHPExcel/Reader/Excel5/Color/BuiltIn.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5/ErrorCode.php b/application/third_party/PHPExcel/Reader/Excel5/ErrorCode.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5/Escher.php b/application/third_party/PHPExcel/Reader/Excel5/Escher.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5/MD5.php b/application/third_party/PHPExcel/Reader/Excel5/MD5.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5/RC4.php b/application/third_party/PHPExcel/Reader/Excel5/RC4.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5/Style/Border.php b/application/third_party/PHPExcel/Reader/Excel5/Style/Border.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Excel5/Style/FillPattern.php b/application/third_party/PHPExcel/Reader/Excel5/Style/FillPattern.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Exception.php b/application/third_party/PHPExcel/Reader/Exception.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/Gnumeric.php b/application/third_party/PHPExcel/Reader/Gnumeric.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/HTML.php b/application/third_party/PHPExcel/Reader/HTML.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/IReadFilter.php b/application/third_party/PHPExcel/Reader/IReadFilter.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/IReader.php b/application/third_party/PHPExcel/Reader/IReader.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/OOCalc.php b/application/third_party/PHPExcel/Reader/OOCalc.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Reader/SYLK.php b/application/third_party/PHPExcel/Reader/SYLK.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/ReferenceHelper.php b/application/third_party/PHPExcel/ReferenceHelper.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/RichText.php b/application/third_party/PHPExcel/RichText.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/RichText/ITextElement.php b/application/third_party/PHPExcel/RichText/ITextElement.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/RichText/Run.php b/application/third_party/PHPExcel/RichText/Run.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/RichText/TextElement.php b/application/third_party/PHPExcel/RichText/TextElement.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Settings.php b/application/third_party/PHPExcel/Settings.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/CodePage.php b/application/third_party/PHPExcel/Shared/CodePage.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Date.php b/application/third_party/PHPExcel/Shared/Date.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Drawing.php b/application/third_party/PHPExcel/Shared/Drawing.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Escher.php b/application/third_party/PHPExcel/Shared/Escher.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Escher/DgContainer.php b/application/third_party/PHPExcel/Shared/Escher/DgContainer.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php b/application/third_party/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php b/application/third_party/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Escher/DggContainer.php b/application/third_party/PHPExcel/Shared/Escher/DggContainer.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php b/application/third_party/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php b/application/third_party/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php b/application/third_party/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Excel5.php b/application/third_party/PHPExcel/Shared/Excel5.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/File.php b/application/third_party/PHPExcel/Shared/File.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/Font.php b/application/third_party/PHPExcel/Shared/Font.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/JAMA/CHANGELOG.TXT b/application/third_party/PHPExcel/Shared/JAMA/CHANGELOG.TXT old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/JAMA/CholeskyDecomposition.php b/application/third_party/PHPExcel/Shared/JAMA/CholeskyDecomposition.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php b/application/third_party/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/JAMA/LUDecomposition.php b/application/third_party/PHPExcel/Shared/JAMA/LUDecomposition.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/JAMA/Matrix.php b/application/third_party/PHPExcel/Shared/JAMA/Matrix.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/JAMA/QRDecomposition.php b/application/third_party/PHPExcel/Shared/JAMA/QRDecomposition.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/JAMA/SingularValueDecomposition.php b/application/third_party/PHPExcel/Shared/JAMA/SingularValueDecomposition.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/JAMA/utils/Error.php b/application/third_party/PHPExcel/Shared/JAMA/utils/Error.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/JAMA/utils/Maths.php b/application/third_party/PHPExcel/Shared/JAMA/utils/Maths.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/OLE.php b/application/third_party/PHPExcel/Shared/OLE.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/OLE/ChainedBlockStream.php b/application/third_party/PHPExcel/Shared/OLE/ChainedBlockStream.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/OLE/PPS.php b/application/third_party/PHPExcel/Shared/OLE/PPS.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/OLE/PPS/File.php b/application/third_party/PHPExcel/Shared/OLE/PPS/File.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/OLE/PPS/Root.php b/application/third_party/PHPExcel/Shared/OLE/PPS/Root.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/OLERead.php b/application/third_party/PHPExcel/Shared/OLERead.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/PCLZip/gnu-lgpl.txt b/application/third_party/PHPExcel/Shared/PCLZip/gnu-lgpl.txt old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/PCLZip/pclzip.lib.php b/application/third_party/PHPExcel/Shared/PCLZip/pclzip.lib.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/PCLZip/readme.txt b/application/third_party/PHPExcel/Shared/PCLZip/readme.txt old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/PasswordHasher.php b/application/third_party/PHPExcel/Shared/PasswordHasher.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/String.php b/application/third_party/PHPExcel/Shared/String.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/TimeZone.php b/application/third_party/PHPExcel/Shared/TimeZone.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/XMLWriter.php b/application/third_party/PHPExcel/Shared/XMLWriter.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/ZipArchive.php b/application/third_party/PHPExcel/Shared/ZipArchive.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/ZipStreamWrapper.php b/application/third_party/PHPExcel/Shared/ZipStreamWrapper.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/trend/bestFitClass.php b/application/third_party/PHPExcel/Shared/trend/bestFitClass.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/trend/exponentialBestFitClass.php b/application/third_party/PHPExcel/Shared/trend/exponentialBestFitClass.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/trend/linearBestFitClass.php b/application/third_party/PHPExcel/Shared/trend/linearBestFitClass.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/trend/logarithmicBestFitClass.php b/application/third_party/PHPExcel/Shared/trend/logarithmicBestFitClass.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/trend/polynomialBestFitClass.php b/application/third_party/PHPExcel/Shared/trend/polynomialBestFitClass.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/trend/powerBestFitClass.php b/application/third_party/PHPExcel/Shared/trend/powerBestFitClass.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Shared/trend/trendClass.php b/application/third_party/PHPExcel/Shared/trend/trendClass.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style.php b/application/third_party/PHPExcel/Style.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style/Alignment.php b/application/third_party/PHPExcel/Style/Alignment.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style/Border.php b/application/third_party/PHPExcel/Style/Border.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style/Borders.php b/application/third_party/PHPExcel/Style/Borders.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style/Color.php b/application/third_party/PHPExcel/Style/Color.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style/Conditional.php b/application/third_party/PHPExcel/Style/Conditional.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style/Fill.php b/application/third_party/PHPExcel/Style/Fill.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style/Font.php b/application/third_party/PHPExcel/Style/Font.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style/NumberFormat.php b/application/third_party/PHPExcel/Style/NumberFormat.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style/Protection.php b/application/third_party/PHPExcel/Style/Protection.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Style/Supervisor.php b/application/third_party/PHPExcel/Style/Supervisor.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet.php b/application/third_party/PHPExcel/Worksheet.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/AutoFilter.php b/application/third_party/PHPExcel/Worksheet/AutoFilter.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/AutoFilter/Column.php b/application/third_party/PHPExcel/Worksheet/AutoFilter/Column.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/AutoFilter/Column/Rule.php b/application/third_party/PHPExcel/Worksheet/AutoFilter/Column/Rule.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/BaseDrawing.php b/application/third_party/PHPExcel/Worksheet/BaseDrawing.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/CellIterator.php b/application/third_party/PHPExcel/Worksheet/CellIterator.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/Column.php b/application/third_party/PHPExcel/Worksheet/Column.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/ColumnCellIterator.php b/application/third_party/PHPExcel/Worksheet/ColumnCellIterator.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/ColumnDimension.php b/application/third_party/PHPExcel/Worksheet/ColumnDimension.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/ColumnIterator.php b/application/third_party/PHPExcel/Worksheet/ColumnIterator.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/Dimension.php b/application/third_party/PHPExcel/Worksheet/Dimension.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/Drawing.php b/application/third_party/PHPExcel/Worksheet/Drawing.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/Drawing/Shadow.php b/application/third_party/PHPExcel/Worksheet/Drawing/Shadow.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/HeaderFooter.php b/application/third_party/PHPExcel/Worksheet/HeaderFooter.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/HeaderFooterDrawing.php b/application/third_party/PHPExcel/Worksheet/HeaderFooterDrawing.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/MemoryDrawing.php b/application/third_party/PHPExcel/Worksheet/MemoryDrawing.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/PageMargins.php b/application/third_party/PHPExcel/Worksheet/PageMargins.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/PageSetup.php b/application/third_party/PHPExcel/Worksheet/PageSetup.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/Protection.php b/application/third_party/PHPExcel/Worksheet/Protection.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/Row.php b/application/third_party/PHPExcel/Worksheet/Row.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/RowCellIterator.php b/application/third_party/PHPExcel/Worksheet/RowCellIterator.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/RowDimension.php b/application/third_party/PHPExcel/Worksheet/RowDimension.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/RowIterator.php b/application/third_party/PHPExcel/Worksheet/RowIterator.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Worksheet/SheetView.php b/application/third_party/PHPExcel/Worksheet/SheetView.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/WorksheetIterator.php b/application/third_party/PHPExcel/WorksheetIterator.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Abstract.php b/application/third_party/PHPExcel/Writer/Abstract.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/CSV.php b/application/third_party/PHPExcel/Writer/CSV.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007.php b/application/third_party/PHPExcel/Writer/Excel2007.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/Chart.php b/application/third_party/PHPExcel/Writer/Excel2007/Chart.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/Comments.php b/application/third_party/PHPExcel/Writer/Excel2007/Comments.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/ContentTypes.php b/application/third_party/PHPExcel/Writer/Excel2007/ContentTypes.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/DocProps.php b/application/third_party/PHPExcel/Writer/Excel2007/DocProps.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/Drawing.php b/application/third_party/PHPExcel/Writer/Excel2007/Drawing.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/Rels.php b/application/third_party/PHPExcel/Writer/Excel2007/Rels.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/RelsRibbon.php b/application/third_party/PHPExcel/Writer/Excel2007/RelsRibbon.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/RelsVBA.php b/application/third_party/PHPExcel/Writer/Excel2007/RelsVBA.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/StringTable.php b/application/third_party/PHPExcel/Writer/Excel2007/StringTable.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/Style.php b/application/third_party/PHPExcel/Writer/Excel2007/Style.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/Theme.php b/application/third_party/PHPExcel/Writer/Excel2007/Theme.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/Workbook.php b/application/third_party/PHPExcel/Writer/Excel2007/Workbook.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/Worksheet.php b/application/third_party/PHPExcel/Writer/Excel2007/Worksheet.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel2007/WriterPart.php b/application/third_party/PHPExcel/Writer/Excel2007/WriterPart.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel5.php b/application/third_party/PHPExcel/Writer/Excel5.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel5/BIFFwriter.php b/application/third_party/PHPExcel/Writer/Excel5/BIFFwriter.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel5/Escher.php b/application/third_party/PHPExcel/Writer/Excel5/Escher.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel5/Font.php b/application/third_party/PHPExcel/Writer/Excel5/Font.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel5/Parser.php b/application/third_party/PHPExcel/Writer/Excel5/Parser.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel5/Workbook.php b/application/third_party/PHPExcel/Writer/Excel5/Workbook.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel5/Worksheet.php b/application/third_party/PHPExcel/Writer/Excel5/Worksheet.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Excel5/Xf.php b/application/third_party/PHPExcel/Writer/Excel5/Xf.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/Exception.php b/application/third_party/PHPExcel/Writer/Exception.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/HTML.php b/application/third_party/PHPExcel/Writer/HTML.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/IWriter.php b/application/third_party/PHPExcel/Writer/IWriter.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/OpenDocument.php b/application/third_party/PHPExcel/Writer/OpenDocument.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/OpenDocument/Cell/Comment.php b/application/third_party/PHPExcel/Writer/OpenDocument/Cell/Comment.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/OpenDocument/Content.php b/application/third_party/PHPExcel/Writer/OpenDocument/Content.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/OpenDocument/Meta.php b/application/third_party/PHPExcel/Writer/OpenDocument/Meta.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/OpenDocument/MetaInf.php b/application/third_party/PHPExcel/Writer/OpenDocument/MetaInf.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/OpenDocument/Mimetype.php b/application/third_party/PHPExcel/Writer/OpenDocument/Mimetype.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/OpenDocument/Settings.php b/application/third_party/PHPExcel/Writer/OpenDocument/Settings.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/OpenDocument/Styles.php b/application/third_party/PHPExcel/Writer/OpenDocument/Styles.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/OpenDocument/Thumbnails.php b/application/third_party/PHPExcel/Writer/OpenDocument/Thumbnails.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/OpenDocument/WriterPart.php b/application/third_party/PHPExcel/Writer/OpenDocument/WriterPart.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/PDF.php b/application/third_party/PHPExcel/Writer/PDF.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/PDF/Core.php b/application/third_party/PHPExcel/Writer/PDF/Core.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/PDF/DomPDF.php b/application/third_party/PHPExcel/Writer/PDF/DomPDF.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/PDF/mPDF.php b/application/third_party/PHPExcel/Writer/PDF/mPDF.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/Writer/PDF/tcPDF.php b/application/third_party/PHPExcel/Writer/PDF/tcPDF.php old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/bg/config b/application/third_party/PHPExcel/locale/bg/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/cs/config b/application/third_party/PHPExcel/locale/cs/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/cs/functions b/application/third_party/PHPExcel/locale/cs/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/da/config b/application/third_party/PHPExcel/locale/da/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/da/functions b/application/third_party/PHPExcel/locale/da/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/de/config b/application/third_party/PHPExcel/locale/de/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/de/functions b/application/third_party/PHPExcel/locale/de/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/en/uk/config b/application/third_party/PHPExcel/locale/en/uk/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/es/config b/application/third_party/PHPExcel/locale/es/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/es/functions b/application/third_party/PHPExcel/locale/es/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/fi/config b/application/third_party/PHPExcel/locale/fi/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/fi/functions b/application/third_party/PHPExcel/locale/fi/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/fr/config b/application/third_party/PHPExcel/locale/fr/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/fr/functions b/application/third_party/PHPExcel/locale/fr/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/hu/config b/application/third_party/PHPExcel/locale/hu/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/hu/functions b/application/third_party/PHPExcel/locale/hu/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/it/config b/application/third_party/PHPExcel/locale/it/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/it/functions b/application/third_party/PHPExcel/locale/it/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/nl/config b/application/third_party/PHPExcel/locale/nl/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/nl/functions b/application/third_party/PHPExcel/locale/nl/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/no/config b/application/third_party/PHPExcel/locale/no/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/no/functions b/application/third_party/PHPExcel/locale/no/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/pl/config b/application/third_party/PHPExcel/locale/pl/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/pl/functions b/application/third_party/PHPExcel/locale/pl/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/pt/br/config b/application/third_party/PHPExcel/locale/pt/br/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/pt/br/functions b/application/third_party/PHPExcel/locale/pt/br/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/pt/config b/application/third_party/PHPExcel/locale/pt/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/pt/functions b/application/third_party/PHPExcel/locale/pt/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/ru/config b/application/third_party/PHPExcel/locale/ru/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/ru/functions b/application/third_party/PHPExcel/locale/ru/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/sv/config b/application/third_party/PHPExcel/locale/sv/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/sv/functions b/application/third_party/PHPExcel/locale/sv/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/tr/config b/application/third_party/PHPExcel/locale/tr/config old mode 100755 new mode 100644 diff --git a/application/third_party/PHPExcel/locale/tr/functions b/application/third_party/PHPExcel/locale/tr/functions old mode 100755 new mode 100644 diff --git a/application/third_party/PHPReport.php b/application/third_party/PHPReport.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/LICENSE.LGPL b/application/third_party/dompdf/LICENSE.LGPL old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/dompdf.php b/application/third_party/dompdf/dompdf.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/dompdf_config.custom.inc.php b/application/third_party/dompdf/dompdf_config.custom.inc.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/dompdf_config.inc.php b/application/third_party/dompdf/dompdf_config.inc.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/absolute_positioner.cls.php b/application/third_party/dompdf/include/absolute_positioner.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/abstract_renderer.cls.php b/application/third_party/dompdf/include/abstract_renderer.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/attribute_translator.cls.php b/application/third_party/dompdf/include/attribute_translator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/block_frame_decorator.cls.php b/application/third_party/dompdf/include/block_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/block_frame_reflower.cls.php b/application/third_party/dompdf/include/block_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/block_positioner.cls.php b/application/third_party/dompdf/include/block_positioner.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/block_renderer.cls.php b/application/third_party/dompdf/include/block_renderer.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/cached_pdf_decorator.cls.php b/application/third_party/dompdf/include/cached_pdf_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/canvas.cls.php b/application/third_party/dompdf/include/canvas.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/canvas_factory.cls.php b/application/third_party/dompdf/include/canvas_factory.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/cellmap.cls.php b/application/third_party/dompdf/include/cellmap.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/cpdf_adapter.cls.php b/application/third_party/dompdf/include/cpdf_adapter.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/css_color.cls.php b/application/third_party/dompdf/include/css_color.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/dompdf.cls.php b/application/third_party/dompdf/include/dompdf.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/dompdf_exception.cls.php b/application/third_party/dompdf/include/dompdf_exception.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/dompdf_internal_exception.cls.php b/application/third_party/dompdf/include/dompdf_internal_exception.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/file.skel b/application/third_party/dompdf/include/file.skel old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/fixed_positioner.cls.php b/application/third_party/dompdf/include/fixed_positioner.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/font_metrics.cls.php b/application/third_party/dompdf/include/font_metrics.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/frame.cls.php b/application/third_party/dompdf/include/frame.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/frame_decorator.cls.php b/application/third_party/dompdf/include/frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/frame_factory.cls.php b/application/third_party/dompdf/include/frame_factory.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/frame_reflower.cls.php b/application/third_party/dompdf/include/frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/frame_tree.cls.php b/application/third_party/dompdf/include/frame_tree.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/functions.inc.php b/application/third_party/dompdf/include/functions.inc.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/gd_adapter.cls.php b/application/third_party/dompdf/include/gd_adapter.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/image_cache.cls.php b/application/third_party/dompdf/include/image_cache.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/image_frame_decorator.cls.php b/application/third_party/dompdf/include/image_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/image_frame_reflower.cls.php b/application/third_party/dompdf/include/image_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/image_renderer.cls.php b/application/third_party/dompdf/include/image_renderer.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/inline_frame_decorator.cls.php b/application/third_party/dompdf/include/inline_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/inline_frame_reflower.cls.php b/application/third_party/dompdf/include/inline_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/inline_positioner.cls.php b/application/third_party/dompdf/include/inline_positioner.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/inline_renderer.cls.php b/application/third_party/dompdf/include/inline_renderer.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/javascript_embedder.cls.php b/application/third_party/dompdf/include/javascript_embedder.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/list_bullet_frame_decorator.cls.php b/application/third_party/dompdf/include/list_bullet_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/list_bullet_frame_reflower.cls.php b/application/third_party/dompdf/include/list_bullet_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/list_bullet_image_frame_decorator.cls.php b/application/third_party/dompdf/include/list_bullet_image_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/list_bullet_positioner.cls.php b/application/third_party/dompdf/include/list_bullet_positioner.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/list_bullet_renderer.cls.php b/application/third_party/dompdf/include/list_bullet_renderer.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/null_frame_decorator.cls.php b/application/third_party/dompdf/include/null_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/null_frame_reflower.cls.php b/application/third_party/dompdf/include/null_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/null_positioner.cls.php b/application/third_party/dompdf/include/null_positioner.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/page_cache.cls.php b/application/third_party/dompdf/include/page_cache.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/page_frame_decorator.cls.php b/application/third_party/dompdf/include/page_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/page_frame_reflower.cls.php b/application/third_party/dompdf/include/page_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/pdflib_adapter.cls.php b/application/third_party/dompdf/include/pdflib_adapter.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/php_evaluator.cls.php b/application/third_party/dompdf/include/php_evaluator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/positioner.cls.php b/application/third_party/dompdf/include/positioner.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/renderer.cls.php b/application/third_party/dompdf/include/renderer.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/style.cls.php b/application/third_party/dompdf/include/style.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/stylesheet.cls.php b/application/third_party/dompdf/include/stylesheet.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_cell_frame_decorator.cls.php b/application/third_party/dompdf/include/table_cell_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_cell_frame_reflower.cls.php b/application/third_party/dompdf/include/table_cell_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_cell_positioner.cls.php b/application/third_party/dompdf/include/table_cell_positioner.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_cell_renderer.cls.php b/application/third_party/dompdf/include/table_cell_renderer.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_frame_decorator.cls.php b/application/third_party/dompdf/include/table_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_frame_reflower.cls.php b/application/third_party/dompdf/include/table_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_row_frame_decorator.cls.php b/application/third_party/dompdf/include/table_row_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_row_frame_reflower.cls.php b/application/third_party/dompdf/include/table_row_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_row_group_frame_decorator.cls.php b/application/third_party/dompdf/include/table_row_group_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_row_group_frame_reflower.cls.php b/application/third_party/dompdf/include/table_row_group_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/table_row_positioner.cls.php b/application/third_party/dompdf/include/table_row_positioner.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/tcpdf_adapter.cls.php b/application/third_party/dompdf/include/tcpdf_adapter.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/text_frame_decorator.cls.php b/application/third_party/dompdf/include/text_frame_decorator.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/text_frame_reflower.cls.php b/application/third_party/dompdf/include/text_frame_reflower.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/text_renderer.cls.php b/application/third_party/dompdf/include/text_renderer.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/include/ttf_info.cls.php b/application/third_party/dompdf/include/ttf_info.cls.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/index.php b/application/third_party/dompdf/index.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/class.pdf.php b/application/third_party/dompdf/lib/class.pdf.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Courier-Bold.afm b/application/third_party/dompdf/lib/fonts/Courier-Bold.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Courier-BoldOblique.afm b/application/third_party/dompdf/lib/fonts/Courier-BoldOblique.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Courier-Oblique.afm b/application/third_party/dompdf/lib/fonts/Courier-Oblique.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Courier.afm b/application/third_party/dompdf/lib/fonts/Courier.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Helvetica-Bold.afm b/application/third_party/dompdf/lib/fonts/Helvetica-Bold.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Helvetica-Bold.afm.php b/application/third_party/dompdf/lib/fonts/Helvetica-Bold.afm.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Helvetica-BoldOblique.afm b/application/third_party/dompdf/lib/fonts/Helvetica-BoldOblique.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Helvetica-Oblique.afm b/application/third_party/dompdf/lib/fonts/Helvetica-Oblique.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Helvetica.afm b/application/third_party/dompdf/lib/fonts/Helvetica.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Helvetica.afm.php b/application/third_party/dompdf/lib/fonts/Helvetica.afm.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Symbol.afm b/application/third_party/dompdf/lib/fonts/Symbol.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Times-Bold.afm b/application/third_party/dompdf/lib/fonts/Times-Bold.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Times-Bold.afm.php b/application/third_party/dompdf/lib/fonts/Times-Bold.afm.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Times-BoldItalic.afm b/application/third_party/dompdf/lib/fonts/Times-BoldItalic.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Times-Italic.afm b/application/third_party/dompdf/lib/fonts/Times-Italic.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Times-Roman.afm b/application/third_party/dompdf/lib/fonts/Times-Roman.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/Times-Roman.afm.php b/application/third_party/dompdf/lib/fonts/Times-Roman.afm.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/ZapfDingbats.afm b/application/third_party/dompdf/lib/fonts/ZapfDingbats.afm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/dompdf_font_family_cache.dist.php b/application/third_party/dompdf/lib/fonts/dompdf_font_family_cache.dist.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/fonts/log.htm b/application/third_party/dompdf/lib/fonts/log.htm old mode 100755 new mode 100644 index 456dc48f..5dc9a305 --- a/application/third_party/dompdf/lib/fonts/log.htm +++ b/application/third_party/dompdf/lib/fonts/log.htm @@ -1,4 +1,4 @@ -4,096 KB 623.5411 ms
+14,592 KB 244.4260 ms

A PHP Error was encountered

diff --git a/application/third_party/dompdf/lib/fonts/mustRead.html b/application/third_party/dompdf/lib/fonts/mustRead.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/res/broken_image.png b/application/third_party/dompdf/lib/res/broken_image.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/res/html.css b/application/third_party/dompdf/lib/res/html.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/README.TXT b/application/third_party/dompdf/lib/ttf2ufm/README.TXT old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/bin/ttf2ufm.exe b/application/third_party/dompdf/lib/ttf2ufm/bin/ttf2ufm.exe old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/CHANGES b/application/third_party/dompdf/lib/ttf2ufm/src/CHANGES old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/CHANGES.html b/application/third_party/dompdf/lib/ttf2ufm/src/CHANGES.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/COPYRIGHT b/application/third_party/dompdf/lib/ttf2ufm/src/COPYRIGHT old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/FONTS b/application/third_party/dompdf/lib/ttf2ufm/src/FONTS old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/FONTS.hpux b/application/third_party/dompdf/lib/ttf2ufm/src/FONTS.hpux old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/FONTS.hpux.html b/application/third_party/dompdf/lib/ttf2ufm/src/FONTS.hpux.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/FONTS.html b/application/third_party/dompdf/lib/ttf2ufm/src/FONTS.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/Makefile b/application/third_party/dompdf/lib/ttf2ufm/src/Makefile old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/README b/application/third_party/dompdf/lib/ttf2ufm/src/README old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/README.FIRST b/application/third_party/dompdf/lib/ttf2ufm/src/README.FIRST old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/README.html b/application/third_party/dompdf/lib/ttf2ufm/src/README.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/RPM/Makefile b/application/third_party/dompdf/lib/ttf2ufm/src/app/RPM/Makefile old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/RPM/ttf2pt1.spec b/application/third_party/dompdf/lib/ttf2ufm/src/app/RPM/ttf2pt1.spec old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/RPM/ttf2pt1.spec.src b/application/third_party/dompdf/lib/ttf2ufm/src/app/RPM/ttf2pt1.spec.src old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/TeX/README b/application/third_party/dompdf/lib/ttf2ufm/src/app/TeX/README old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/TeX/README.html b/application/third_party/dompdf/lib/ttf2ufm/src/app/TeX/README.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/TeX/cjk-latex-config b/application/third_party/dompdf/lib/ttf2ufm/src/app/TeX/cjk-latex-config old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/TeX/cjk-latex-t1mapgen b/application/third_party/dompdf/lib/ttf2ufm/src/app/TeX/cjk-latex-t1mapgen old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/TeX/sfd2map b/application/third_party/dompdf/lib/ttf2ufm/src/app/TeX/sfd2map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/X11/README b/application/third_party/dompdf/lib/ttf2ufm/src/app/X11/README old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/X11/README.html b/application/third_party/dompdf/lib/ttf2ufm/src/app/X11/README.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/X11/t1-xf86.334.patch b/application/third_party/dompdf/lib/ttf2ufm/src/app/X11/t1-xf86.334.patch old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/X11/t1-xf86.39.patch b/application/third_party/dompdf/lib/ttf2ufm/src/app/X11/t1-xf86.39.patch old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/Makefile b/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/Makefile old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/README b/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/README old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/README.html b/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/README.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/fontsz.cf b/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/fontsz.cf old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/notscape b/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/notscape old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/nsfilter b/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/nsfilter old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/nsfix.c b/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/nsfix.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/nspr b/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/nspr old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/nsprint b/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/nsprint old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/psfonts.cf b/application/third_party/dompdf/lib/ttf2ufm/src/app/netscape/psfonts.cf old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/bdf.c b/application/third_party/dompdf/lib/ttf2ufm/src/bdf.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/bitmap.c b/application/third_party/dompdf/lib/ttf2ufm/src/bitmap.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/byteorder.h b/application/third_party/dompdf/lib/ttf2ufm/src/byteorder.h old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/cygbuild.sh b/application/third_party/dompdf/lib/ttf2ufm/src/cygbuild.sh old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/README b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/README old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/README.html b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/README.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/adobestd/adobe-std.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/adobestd/adobe-std.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/README b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/README old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/encodings.alias b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/encodings.alias old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/ibm-1251.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/ibm-1251.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/ibm-866.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/ibm-866.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/iso8859-5.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/iso8859-5.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/koi8-r.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/bulgarian/koi8-r.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/cyrillic/encodings.alias b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/cyrillic/encodings.alias old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/cyrillic/ibm-1251.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/cyrillic/ibm-1251.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/cyrillic/ibm-866.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/cyrillic/ibm-866.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/cyrillic/iso8859-5.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/cyrillic/iso8859-5.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/cyrillic/koi8-r.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/cyrillic/koi8-r.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/latin1/iso8859-1.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/latin1/iso8859-1.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/latin2/iso8859-2.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/latin2/iso8859-2.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/latin4/iso8859-4 b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/latin4/iso8859-4 old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/latin4/iso8859-4.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/latin4/iso8859-4.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/latin5/iso8859-9 b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/latin5/iso8859-9 old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/README b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/README old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/encodings.alias b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/encodings.alias old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/ibm-1251.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/ibm-1251.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/ibm-866.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/ibm-866.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/iso8859-5.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/iso8859-5.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/koi8-r.tbl b/application/third_party/dompdf/lib/ttf2ufm/src/encodings/russian/koi8-r.tbl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/ft.c b/application/third_party/dompdf/lib/ttf2ufm/src/ft.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/global.h b/application/third_party/dompdf/lib/ttf2ufm/src/global.h old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/CP1250.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/CP1250.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/CP1251.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/CP1251.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/T2A_compact.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/T2A_compact.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/adobe-standard-encoding.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/adobe-standard-encoding.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/cubg5plus.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/cubg5plus.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/cubig5.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/cubig5.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/cugb.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/cugb.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/cugbk.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/cugbk.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/ubig5.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/ubig5.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/ugb.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/ugb.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/ugbk.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/ugbk.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/maps/unicode-sample.map b/application/third_party/dompdf/lib/ttf2ufm/src/maps/unicode-sample.map old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/Makefile b/application/third_party/dompdf/lib/ttf2ufm/src/other/Makefile old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/README b/application/third_party/dompdf/lib/ttf2ufm/src/other/README old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/README.html b/application/third_party/dompdf/lib/ttf2ufm/src/other/README.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/bmpfont.h b/application/third_party/dompdf/lib/ttf2ufm/src/other/bmpfont.h old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/bz.c b/application/third_party/dompdf/lib/ttf2ufm/src/other/bz.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/bzscreen.c b/application/third_party/dompdf/lib/ttf2ufm/src/other/bzscreen.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/bzscreen.h b/application/third_party/dompdf/lib/ttf2ufm/src/other/bzscreen.h old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/cmpf.c b/application/third_party/dompdf/lib/ttf2ufm/src/other/cmpf.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/cntstems.pl b/application/third_party/dompdf/lib/ttf2ufm/src/other/cntstems.pl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/dmpf.c b/application/third_party/dompdf/lib/ttf2ufm/src/other/dmpf.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/lst.pl b/application/third_party/dompdf/lib/ttf2ufm/src/other/lst.pl old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/showdf b/application/third_party/dompdf/lib/ttf2ufm/src/other/showdf old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/other/showg b/application/third_party/dompdf/lib/ttf2ufm/src/other/showg old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/pt1.c b/application/third_party/dompdf/lib/ttf2ufm/src/pt1.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/pt1.h b/application/third_party/dompdf/lib/ttf2ufm/src/pt1.h old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/runt1asm.c b/application/third_party/dompdf/lib/ttf2ufm/src/runt1asm.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/convert b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/convert old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/convert.cfg.sample b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/convert.cfg.sample old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/forceiso b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/forceiso old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/frommap b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/frommap old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/html2man b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/html2man old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/inst_dir b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/inst_dir old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/inst_file b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/inst_file old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/mkrel b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/mkrel old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/t1fdir b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/t1fdir old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/trans b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/trans old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/unhtml b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/unhtml old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/scripts/x2gs b/application/third_party/dompdf/lib/ttf2ufm/src/scripts/x2gs old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/t1asm.c b/application/third_party/dompdf/lib/ttf2ufm/src/t1asm.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/ttf.c b/application/third_party/dompdf/lib/ttf2ufm/src/ttf.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/ttf.h b/application/third_party/dompdf/lib/ttf2ufm/src/ttf.h old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/ttf2pt1.1 b/application/third_party/dompdf/lib/ttf2ufm/src/ttf2pt1.1 old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/ttf2pt1.c b/application/third_party/dompdf/lib/ttf2ufm/src/ttf2pt1.c old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/ttf2pt1_convert.1 b/application/third_party/dompdf/lib/ttf2ufm/src/ttf2pt1_convert.1 old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/ttf2pt1_x2gs.1 b/application/third_party/dompdf/lib/ttf2ufm/src/ttf2pt1_x2gs.1 old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/ttf2ufm b/application/third_party/dompdf/lib/ttf2ufm/src/ttf2ufm old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/version.h b/application/third_party/dompdf/lib/ttf2ufm/src/version.h old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/winbuild.bat b/application/third_party/dompdf/lib/ttf2ufm/src/winbuild.bat old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/lib/ttf2ufm/src/windows.h b/application/third_party/dompdf/lib/ttf2ufm/src/windows.h old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/load_font.php b/application/third_party/dompdf/load_font.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/controller.php b/application/third_party/dompdf/www/controller.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/cssSandpaper/css/reset.css b/application/third_party/dompdf/www/cssSandpaper/css/reset.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/cssSandpaper/js/EventHelpers.js b/application/third_party/dompdf/www/cssSandpaper/js/EventHelpers.js old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/cssSandpaper/js/cssQuery-p.js b/application/third_party/dompdf/www/cssSandpaper/js/cssQuery-p.js old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/cssSandpaper/js/cssSandpaper.js b/application/third_party/dompdf/www/cssSandpaper/js/cssSandpaper.js old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/cssSandpaper/js/jcoglan.com/sylvester.js b/application/third_party/dompdf/www/cssSandpaper/js/jcoglan.com/sylvester.js old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/debugger.php b/application/third_party/dompdf/www/debugger.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/demo.php b/application/third_party/dompdf/www/demo.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/examples.php b/application/third_party/dompdf/www/examples.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/foot.inc b/application/third_party/dompdf/www/foot.inc old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/head.inc b/application/third_party/dompdf/www/head.inc old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/arrow_01.gif b/application/third_party/dompdf/www/images/arrow_01.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/arrow_02.gif b/application/third_party/dompdf/www/images/arrow_02.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/arrow_03.gif b/application/third_party/dompdf/www/images/arrow_03.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/arrow_04.gif b/application/third_party/dompdf/www/images/arrow_04.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/arrow_05.gif b/application/third_party/dompdf/www/images/arrow_05.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/arrow_06.gif b/application/third_party/dompdf/www/images/arrow_06.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/css2.png b/application/third_party/dompdf/www/images/css2.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/dompdf_simple.png b/application/third_party/dompdf/www/images/dompdf_simple.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/favicon.ico b/application/third_party/dompdf/www/images/favicon.ico old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/favicon.png b/application/third_party/dompdf/www/images/favicon.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/h_bar.gif b/application/third_party/dompdf/www/images/h_bar.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/left_arrow.gif b/application/third_party/dompdf/www/images/left_arrow.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/logo.png b/application/third_party/dompdf/www/images/logo.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/logo.xcf b/application/third_party/dompdf/www/images/logo.xcf old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/php5-power-micro.png b/application/third_party/dompdf/www/images/php5-power-micro.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/small_logo.png b/application/third_party/dompdf/www/images/small_logo.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/star_01.gif b/application/third_party/dompdf/www/images/star_01.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/star_02.gif b/application/third_party/dompdf/www/images/star_02.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/star_03.gif b/application/third_party/dompdf/www/images/star_03.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/star_04.gif b/application/third_party/dompdf/www/images/star_04.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/star_05.gif b/application/third_party/dompdf/www/images/star_05.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/title.gif b/application/third_party/dompdf/www/images/title.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/v_bar.gif b/application/third_party/dompdf/www/images/v_bar.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/images/xhtml10.png b/application/third_party/dompdf/www/images/xhtml10.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/index.php b/application/third_party/dompdf/www/index.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/jquery-1.4.2.js b/application/third_party/dompdf/www/jquery-1.4.2.js old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/setup.php b/application/third_party/dompdf/www/setup.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/style.css b/application/third_party/dompdf/www/style.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/backgroundcolor_fontdecoration_pageborder.html b/application/third_party/dompdf/www/test/backgroundcolor_fontdecoration_pageborder.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/common.css b/application/third_party/dompdf/www/test/css/common.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/importabs.css b/application/third_party/dompdf/www/test/css/importabs.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/importall.css b/application/third_party/dompdf/www/test/css/importall.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/importdisplay.css b/application/third_party/dompdf/www/test/css/importdisplay.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/importprint.css b/application/third_party/dompdf/www/test/css/importprint.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/importsub.css b/application/third_party/dompdf/www/test/css/importsub.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/linkall.css b/application/third_party/dompdf/www/test/css/linkall.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/linkdefault.css b/application/third_party/dompdf/www/test/css/linkdefault.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/linkdisplay.css b/application/third_party/dompdf/www/test/css/linkdisplay.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/linkprint.css b/application/third_party/dompdf/www/test/css/linkprint.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css/print_static.css b/application/third_party/dompdf/www/test/css/print_static.css old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_2d_transforms.html b/application/third_party/dompdf/www/test/css_2d_transforms.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_baseline.html b/application/third_party/dompdf/www/test/css_baseline.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_block_height.html b/application/third_party/dompdf/www/test/css_block_height.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_border.html b/application/third_party/dompdf/www/test/css_border.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_border_values.html b/application/third_party/dompdf/www/test/css_border_values.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_color_cmyk.html b/application/third_party/dompdf/www/test/css_color_cmyk.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_content.html b/application/third_party/dompdf/www/test/css_content.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_float.html b/application/third_party/dompdf/www/test/css_float.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_font_selection.html b/application/third_party/dompdf/www/test/css_font_selection.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_important_flag.html b/application/third_party/dompdf/www/test/css_important_flag.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_letter_spacing.html b/application/third_party/dompdf/www/test/css_letter_spacing.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_line_height.html b/application/third_party/dompdf/www/test/css_line_height.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_margin.html b/application/third_party/dompdf/www/test/css_margin.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_media.html b/application/third_party/dompdf/www/test/css_media.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_multiple_class.html b/application/third_party/dompdf/www/test/css_multiple_class.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_opacity.html b/application/third_party/dompdf/www/test/css_opacity.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_outline.html b/application/third_party/dompdf/www/test/css_outline.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_overflow_hidden.html b/application/third_party/dompdf/www/test/css_overflow_hidden.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_position_all.html b/application/third_party/dompdf/www/test/css_position_all.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_position_fixed.html b/application/third_party/dompdf/www/test/css_position_fixed.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_selectors.html b/application/third_party/dompdf/www/test/css_selectors.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_table_height.html b/application/third_party/dompdf/www/test/css_table_height.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_text_align.html b/application/third_party/dompdf/www/test/css_text_align.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/css_z_index.html b/application/third_party/dompdf/www/test/css_z_index.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/demo_01.html b/application/third_party/dompdf/www/test/demo_01.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_anchor_link.html b/application/third_party/dompdf/www/test/dom_anchor_link.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_br.html b/application/third_party/dompdf/www/test/dom_br.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_large_table.html b/application/third_party/dompdf/www/test/dom_large_table.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_long_table.php b/application/third_party/dompdf/www/test/dom_long_table.php old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_nbsp.html b/application/third_party/dompdf/www/test/dom_nbsp.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_nested_table.html b/application/third_party/dompdf/www/test/dom_nested_table.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_ol.html b/application/third_party/dompdf/www/test/dom_ol.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_simple_ul.html b/application/third_party/dompdf/www/test/dom_simple_ul.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_table.html b/application/third_party/dompdf/www/test/dom_table.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_table_01.html b/application/third_party/dompdf/www/test/dom_table_01.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_table_image.html b/application/third_party/dompdf/www/test/dom_table_image.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/dom_ul.html b/application/third_party/dompdf/www/test/dom_ul.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/encoding_entities.html b/application/third_party/dompdf/www/test/encoding_entities.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/encoding_latin1.html b/application/third_party/dompdf/www/test/encoding_latin1.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/encoding_special.html b/application/third_party/dompdf/www/test/encoding_special.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/encoding_symbols.html b/application/third_party/dompdf/www/test/encoding_symbols.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/encoding_unicode.html b/application/third_party/dompdf/www/test/encoding_unicode.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/encoding_unicode_wrapping.html b/application/third_party/dompdf/www/test/encoding_unicode_wrapping.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/encoding_utf-8.html b/application/third_party/dompdf/www/test/encoding_utf-8.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/encoding_utf-8_w3.html b/application/third_party/dompdf/www/test/encoding_utf-8_w3.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/image_background.html b/application/third_party/dompdf/www/test/image_background.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/image_basic.html b/application/third_party/dompdf/www/test/image_basic.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/image_bmp.html b/application/third_party/dompdf/www/test/image_bmp.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/image_datauri.html b/application/third_party/dompdf/www/test/image_datauri.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/image_gif.html b/application/third_party/dompdf/www/test/image_gif.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/image_remote.html b/application/third_party/dompdf/www/test/image_remote.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/image_transparent_gif.html b/application/third_party/dompdf/www/test/image_transparent_gif.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/image_transparent_png.html b/application/third_party/dompdf/www/test/image_transparent_png.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/image_variants.html b/application/third_party/dompdf/www/test/image_variants.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test1.bmp b/application/third_party/dompdf/www/test/images/bmp/test1.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test1.png b/application/third_party/dompdf/www/test/images/bmp/test1.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test16.bmp b/application/third_party/dompdf/www/test/images/bmp/test16.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test16.png b/application/third_party/dompdf/www/test/images/bmp/test16.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test16bf555.bmp b/application/third_party/dompdf/www/test/images/bmp/test16bf555.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test16bf555.png b/application/third_party/dompdf/www/test/images/bmp/test16bf555.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test16bf565.bmp b/application/third_party/dompdf/www/test/images/bmp/test16bf565.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test16bf565.png b/application/third_party/dompdf/www/test/images/bmp/test16bf565.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test24.bmp b/application/third_party/dompdf/www/test/images/bmp/test24.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test24.png b/application/third_party/dompdf/www/test/images/bmp/test24.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test32.bmp b/application/third_party/dompdf/www/test/images/bmp/test32.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test32.png b/application/third_party/dompdf/www/test/images/bmp/test32.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test32bf.bmp b/application/third_party/dompdf/www/test/images/bmp/test32bf.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test32bf.png b/application/third_party/dompdf/www/test/images/bmp/test32bf.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test32bfv4.bmp b/application/third_party/dompdf/www/test/images/bmp/test32bfv4.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test32bfv4.png b/application/third_party/dompdf/www/test/images/bmp/test32bfv4.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test32v5.bmp b/application/third_party/dompdf/www/test/images/bmp/test32v5.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test32v5.png b/application/third_party/dompdf/www/test/images/bmp/test32v5.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test4.bmp b/application/third_party/dompdf/www/test/images/bmp/test4.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test4.png b/application/third_party/dompdf/www/test/images/bmp/test4.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test4os2v2.bmp b/application/third_party/dompdf/www/test/images/bmp/test4os2v2.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test4os2v2.png b/application/third_party/dompdf/www/test/images/bmp/test4os2v2.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test8.bmp b/application/third_party/dompdf/www/test/images/bmp/test8.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test8.png b/application/third_party/dompdf/www/test/images/bmp/test8.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test8os2.bmp b/application/third_party/dompdf/www/test/images/bmp/test8os2.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/test8os2.png b/application/third_party/dompdf/www/test/images/bmp/test8os2.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/testcompress4.bmp b/application/third_party/dompdf/www/test/images/bmp/testcompress4.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/testcompress4.png b/application/third_party/dompdf/www/test/images/bmp/testcompress4.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/testcompress8.bmp b/application/third_party/dompdf/www/test/images/bmp/testcompress8.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/testcompress8.png b/application/third_party/dompdf/www/test/images/bmp/testcompress8.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/trans.bmp b/application/third_party/dompdf/www/test/images/bmp/trans.bmp old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/bmp/trans.png b/application/third_party/dompdf/www/test/images/bmp/trans.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/cmyk_test2.jpg b/application/third_party/dompdf/www/test/images/cmyk_test2.jpg old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/dokuwiki-128.png b/application/third_party/dompdf/www/test/images/dokuwiki-128.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/dompdf_simple.png b/application/third_party/dompdf/www/test/images/dompdf_simple.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/goldengate.jpg b/application/third_party/dompdf/www/test/images/goldengate.jpg old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/green.gif b/application/third_party/dompdf/www/test/images/green.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/html.png b/application/third_party/dompdf/www/test/images/html.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/pdf.png b/application/third_party/dompdf/www/test/images/pdf.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/php.gif b/application/third_party/dompdf/www/test/images/php.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png.png b/application/third_party/dompdf/www/test/images/png.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/gray16a.png b/application/third_party/dompdf/www/test/images/png/gray16a.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/gray16a_bk.png b/application/third_party/dompdf/www/test/images/png/gray16a_bk.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/gray16b.png b/application/third_party/dompdf/www/test/images/png/gray16b.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/gray16b_bk.png b/application/third_party/dompdf/www/test/images/png/gray16b_bk.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/gray8a.png b/application/third_party/dompdf/www/test/images/png/gray8a.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/gray8a_bk.png b/application/third_party/dompdf/www/test/images/png/gray8a_bk.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/gray8b.png b/application/third_party/dompdf/www/test/images/png/gray8b.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/gray8b_bk.png b/application/third_party/dompdf/www/test/images/png/gray8b_bk.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/pal.png b/application/third_party/dompdf/www/test/images/png/pal.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/pal_bk.png b/application/third_party/dompdf/www/test/images/png/pal_bk.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/pal_bk_notrns.png b/application/third_party/dompdf/www/test/images/png/pal_bk_notrns.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/palb.png b/application/third_party/dompdf/www/test/images/png/palb.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_16ns.gif b/application/third_party/dompdf/www/test/images/png/result_16ns.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_1trns.gif b/application/third_party/dompdf/www/test/images/png/result_1trns.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_bla.gif b/application/third_party/dompdf/www/test/images/png/result_bla.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_dith.gif b/application/third_party/dompdf/www/test/images/png/result_dith.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_gra.gif b/application/third_party/dompdf/www/test/images/png/result_gra.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_mag.gif b/application/third_party/dompdf/www/test/images/png/result_mag.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_magthr1.gif b/application/third_party/dompdf/www/test/images/png/result_magthr1.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_no.gif b/application/third_party/dompdf/www/test/images/png/result_no.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_nsbug.gif b/application/third_party/dompdf/www/test/images/png/result_nsbug.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_ok.gif b/application/third_party/dompdf/www/test/images/png/result_ok.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_oprbug.gif b/application/third_party/dompdf/www/test/images/png/result_oprbug.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_thr1.gif b/application/third_party/dompdf/www/test/images/png/result_thr1.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_thr128.gif b/application/third_party/dompdf/www/test/images/png/result_thr128.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_thr255.gif b/application/third_party/dompdf/www/test/images/png/result_thr255.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_whi.gif b/application/third_party/dompdf/www/test/images/png/result_whi.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_yel.gif b/application/third_party/dompdf/www/test/images/png/result_yel.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/result_yelthr1.gif b/application/third_party/dompdf/www/test/images/png/result_yelthr1.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultb_bla.gif b/application/third_party/dompdf/www/test/images/png/resultb_bla.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultb_bug.gif b/application/third_party/dompdf/www/test/images/png/resultb_bug.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultb_mag.gif b/application/third_party/dompdf/www/test/images/png/resultb_mag.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultb_moz2.gif b/application/third_party/dompdf/www/test/images/png/resultb_moz2.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultb_no.gif b/application/third_party/dompdf/www/test/images/png/resultb_no.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultb_ok.gif b/application/third_party/dompdf/www/test/images/png/resultb_ok.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultb_whi.gif b/application/third_party/dompdf/www/test/images/png/resultb_whi.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultb_yel.gif b/application/third_party/dompdf/www/test/images/png/resultb_yel.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultg_bla.gif b/application/third_party/dompdf/www/test/images/png/resultg_bla.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultg_dgr.gif b/application/third_party/dompdf/www/test/images/png/resultg_dgr.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultg_lgr.gif b/application/third_party/dompdf/www/test/images/png/resultg_lgr.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultg_no.gif b/application/third_party/dompdf/www/test/images/png/resultg_no.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultga.gif b/application/third_party/dompdf/www/test/images/png/resultga.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultgb.gif b/application/third_party/dompdf/www/test/images/png/resultgb.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultgb_dgr.gif b/application/third_party/dompdf/www/test/images/png/resultgb_dgr.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultgb_no.gif b/application/third_party/dompdf/www/test/images/png/resultgb_no.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/resultpb_no.gif b/application/third_party/dompdf/www/test/images/png/resultpb_no.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/rgb16_t.png b/application/third_party/dompdf/www/test/images/png/rgb16_t.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/rgb16_t_bk.png b/application/third_party/dompdf/www/test/images/png/rgb16_t_bk.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/rgb8_t.png b/application/third_party/dompdf/www/test/images/png/rgb8_t.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/rgb8_t_bk.png b/application/third_party/dompdf/www/test/images/png/rgb8_t_bk.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/rgba16.png b/application/third_party/dompdf/www/test/images/png/rgba16.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/rgba16_bk.png b/application/third_party/dompdf/www/test/images/png/rgba16_bk.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/rgba8.png b/application/third_party/dompdf/www/test/images/png/rgba8.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/rgba8_bk.png b/application/third_party/dompdf/www/test/images/png/rgba8_bk.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/png/stripe.gif b/application/third_party/dompdf/www/test/images/png/stripe.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/smiley.png b/application/third_party/dompdf/www/test/images/smiley.png old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/images/what_ordered.gif b/application/third_party/dompdf/www/test/images/what_ordered.gif old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/page_pages.html b/application/third_party/dompdf/www/test/page_pages.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/quirks_center_table.html b/application/third_party/dompdf/www/test/quirks_center_table.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/quirks_font_tag.html b/application/third_party/dompdf/www/test/quirks_font_tag.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/quirks_html_attributes.html b/application/third_party/dompdf/www/test/quirks_html_attributes.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/script_javascript.html b/application/third_party/dompdf/www/test/script_javascript.html old mode 100755 new mode 100644 diff --git a/application/third_party/dompdf/www/test/script_php.php b/application/third_party/dompdf/www/test/script_php.php old mode 100755 new mode 100644 diff --git a/application/third_party/index.html b/application/third_party/index.html old mode 100755 new mode 100644 diff --git a/application/views/404.php b/application/views/404.php old mode 100755 new mode 100644 diff --git a/application/views/AddPOLineItem.php b/application/views/AddPOLineItem.php old mode 100755 new mode 100644 diff --git a/application/views/EditPurchaseOrder.php b/application/views/EditPurchaseOrder.php old mode 100755 new mode 100644 diff --git a/application/views/EditservicePurchaseorder.php b/application/views/EditservicePurchaseorder.php old mode 100755 new mode 100644 index c6b302b2..aa5babbb --- a/application/views/EditservicePurchaseorder.php +++ b/application/views/EditservicePurchaseorder.php @@ -1,9 +1,11 @@ -PODate; + $MaxPoDate = $date->PODate; + } } if(!empty($POMaster)) { foreach ($POMaster as $Req) { + $SupId = $Req->SupplierID; $SupName = $Req->SupplierName; $Address = $Req->Address; $pdt = new DateTime($Req->PODate); $PODate = $pdt->format('Y-m-d'); - + $DeliverOption = $Req->DeliveryOption; + $DeliverSchedule = $Req->DeliverySchedule; $Ddt = new DateTime($Req->DeliveryDate); $Deliverydt = $Ddt->format('Y-m-d'); @@ -51,8 +59,32 @@ if(!empty($AvlBudAmt)) } ?> + + +
ConfigValue=="SERVICE" || $RID->ConfigValue=="REVENUE") - { - $options[$RID->ConfigValue] = $RID->ConfigValue; - } + + + $options[$RID->ConfigValue] = $RID->ConfigValue; + endforeach; } @@ -1805,7 +1804,7 @@ if(!empty($CompanyDetails))
'PODate','value' => set_value('PODate',$CurrentDate),'id'=>'PODate', 'class' => 'form-control num' ,'required' => 'true'); + $data = array('name' => 'PODate','value' => set_value('PODate'),'id'=>'PODate', 'class' => 'form-control num' ,'required' => 'true'); echo form_input($data); ?>
@@ -1820,9 +1819,9 @@ if(!empty($CompanyDetails)) ?>
+ - -
+
Select Delivery By
@@ -1837,7 +1836,7 @@ if(!empty($CompanyDetails))
-
+
@@ -1880,29 +1879,29 @@ if(!empty($CompanyDetails))
-
- -
@@ -1924,7 +1923,7 @@ if(!empty($CompanyDetails)) echo form_dropdown('drpDepartment', $options,set_value('drpDepartment'),'id="DepartmentName"' ,'class = "form-control select2"','required="true"'); ?> - +
@@ -1958,8 +1957,8 @@ if(!empty($CompanyDetails)) ?>
- - - +
@@ -2363,35 +2362,394 @@ if(!empty($CompanyDetails))
+ + + + +
+ +
+ + +
-
+ $options[$SID->ConfigValue] = $SID->ConfigValue; + + endforeach; + } + + echo form_dropdown('DiscountType', $options,set_value('DiscountType'),'id="DiscountType"' ,'class="form-control"'); + + ?> +
+ +
+ +
+ 'txtDiscount','value' => set_value('txtDiscount'),'id'=>'txtDiscount', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);' ,'onchange'=>'calculateDiscount(0);'); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtAfterDiscount','value' => set_value('txtAfterDiscount'),'id'=>'txtAfterDiscount', 'class' => 'form-control num' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+
+ +
+ 'txtVat','value' => set_value('txtVat'),'id'=>'txtVat', 'class' => 'form-control num','onchange'=>'calculateVat(0);' ); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtAfterVat','value' => set_value('txtAfterVat'),'id'=>'txtAfterVat', 'class' => 'form-control num' ,'readonly' => 'true','onkeypress'=>'return isNumberKey(event);'); + echo form_input($data); + ?> +
+
+
+
+
+ +
+ 'txtCST','value' => set_value('txtCST'),'id'=>'txtCST', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'calculateCST(0);'); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtAfterCST','value' => set_value('txtAfterCST'),'id'=>'txtAfterCST', 'class' => 'form-control num' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ + +
+
+
+ +
+ 'Select Packaging Type'); + //print_r( $options); + + if(!empty($TaxType)) + { + foreach ($TaxType as $SID): + + + $options[$SID->ConfigValue] = $SID->ConfigValue; + + endforeach; + } + + echo form_dropdown('PackagingType', $options,set_value('PackagingType'),'id="PackagingType"' ,'class="form-control "'); + + ?> +
+
+
+ +
+ 'txtPackaging','value' => set_value('txtPackaging'),'id'=>'txtPackaging', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'calculatePackaging(0);'); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtAfterPackaging','value' => set_value('txtAfterPackaging'),'id'=>'txtAfterPackaging', 'class' => 'form-control num' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtGST','value' => set_value('txtGST'),'id'=>'txtGST', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>' calculateGST(0);'); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtAfterGST','value' => set_value('txtAfterGST'),'id'=>'txtAfterGST', 'class' => 'form-control num' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+ +
+
+
+
+
+ +
+ 'txtExciseDuty','value' => set_value('txtExciseDuty'),'id'=>'txtExciseDuty', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'calculateExcise(0);'); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtAfterExciseDuty','value' => set_value('txtAfterExciseDuty'),'id'=>'txtAfterExciseDuty', 'class' => 'form-control num' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtOtherTax','value' => set_value('txtOtherTax'),'id'=>'txtOtherTax', 'class' => 'form-control num','onkeypress'=>'return isNumberKey(event);','onchange'=>'calculateOtherTaxes(0);'); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtAfterOtherTax','value' => set_value('txtAfterOtherTax'),'id'=>'txtAfterOtherTax', 'class' => 'form-control num' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+ +
+ +
+
+
+
+
+ +
+ 'Select Freight Type'); + //print_r( $options); + + if(!empty($FreightType)) + { + foreach ($FreightType as $SID): + + + $options[$SID->ConfigValue] = $SID->ConfigValue; + + endforeach; + } + + echo form_dropdown('drpFreight', $options,set_value('drpFreight'),'id="drpFreight"' ,'class="form-control "'); + + ?> +
+
+
+ +
+ 'txtFreight','value' => set_value('txtFreight'),'id'=>'txtFreight', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'calculateFreight(0);'); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtAfterFreight','value' => set_value('txtAfterFreight'),'id'=>'txtAfterFreight', 'class' => 'form-control num' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ +
+ 'txtInsurance','value' => set_value('txtInsurance'),'id'=>'txtInsurance', 'class' => 'form-control num' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'calculateTotalValue(0);'); + echo form_input($data); + ?> +
+
+ + +
+

+
+
+ +
+
+
+ 'txtTotalOrderValue','value' => set_value('txtTotalOrderValue'),'id'=>'txtTotalOrderValue', 'class' => 'form-control num' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+ +
+
+ +

+ + + - -
- - - - - - - - - - - - - - - + $options[$SID->MaterialCode] = $SID->MaterialCode.' '.' - '.' '.$SID->MaterialName; - - + endforeach; + } - + echo form_dropdown('ImportMaterialCode', $options,set_value('ImportMaterialCode'),'id="ImportMaterialCode"' ,'class="form-control"'); -
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
-
+ ?> +
+ - +
+ +
+ 'ImportItemName','value' => set_value('ImportItemName'),'id'=>'ImportItemName', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ +
+ 'ImUOM','value' => set_value('ImUOM'),'id'=>'ImUOM', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ +
+ 'imQuantity','value' => set_value('imQuantity'),'id'=>'imQuantity', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);'); + echo form_input($data); + ?> +
+
+
+ +
+ 'imRate','value' => set_value('imRate'),'id'=>'imRate', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);' ); + echo form_input($data); + ?> +
+
+
+ +
+ 'imTotalAmount','value' => set_value('imTotalAmount'),'id'=>'imTotalAmount', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+ +
+ +
+ + Basic Price in US $ per Ton : + + +
+ 'imBasicPrice','value' => set_value('imBasicPrice'),'id'=>'imBasicPrice', 'class' => 'form-control' ,'placeholder '=>'basic price','onkeypress'=>'return isNumberKey(event);'); + echo form_input($data); + ?> +
+
+ +
+ + Exchange Rate : + + +
+ 'ExchangeRt','value' => set_value('ExchangeRt'),'id'=>'ExchangeRt', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);'); + echo form_input($data); + ?> +
+ +
+ +
+ + Basic value in INR : +
+ 'INRBasicvalue','value' => set_value('INRBasicvalue'),'id'=>'INRBasicvalue', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+ -
- -
- - + + +
+ +
-
- - - - - + + +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + +
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
+
+ + + + + + + + +
+ + + + +
-
- + + - + - - + + + diff --git a/application/views/alterpurchaseorder.php~ b/application/views/alterpurchaseorder.php~ deleted file mode 100755 index 021008dc..00000000 --- a/application/views/alterpurchaseorder.php~ +++ /dev/null @@ -1,6430 +0,0 @@ - -format('Y-m-d'); -$MaxPoDate = ''; -if(!empty($MaxPODate)) -{ - foreach ($MaxPODate as $date) - { - $MaxPoDate = $date->PODate; - } -} -if(!empty($CompanyDetails)) -{ - foreach ($CompanyDetails as $Req) - { - $CompanyAddress = $Req->Address; - } -} -?> - - - - -
- 'form-label-left CreatealterPO ','name' => 'CreatealterPO','id' => 'CreatealterPO'); - - echo form_open($this->config->base_url().'/purchaseorder/addalterPO/',$attributes); ?> - -
-
-
-

Siddharth Industries - Emergency Purchase Order

-
- -
-
-
-
- - 'Select Request Type'); - - if(!empty($RequestType)) - { - foreach ($RequestType as $RID): - - - $options[$RID->ConfigValue] = $RID->ConfigValue; - - endforeach; - } - - echo form_dropdown('RequestType', $options,set_value('ConfigValue'),'id="purpose"' ,'class = "form-control select2"','required="true"'); - - ?> - -
-
- -
- 'PODate','value' => set_value('PODate'),'id'=>'PODate', 'class' => 'form-control' ,'required' => 'true'); - echo form_input($data); - ?> -
-
-
- -
- - 'POType','value' => set_value('POType',$ReqType),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> -
-
- - -
- - Select Delivery By
- - - "DateRange", "id"=>"Date", "value"=>"0", 'checked'=>set_radio('DateRange', '0', TRUE))); ?>     - - "DateRange", "id"=>"Schedule", "value"=>"1", 'checked'=>set_radio('DateRange', '1', FALSE))); ?> - - - -
- - -
-
-
- -
- 'Select Supplier'); - //print_r( $options); - - if(!empty($Suplist)) - { - foreach ($Suplist as $SID): - - - $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; - - endforeach; - } - - echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2"'); - - ?> -
-
- -
- -
- 'SupAddress','value' => set_value('SupAddress'),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true' ,'rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - ?> -
-
-
- -
- 'DeliveryAddr','value' => set_value('DeliveryAddr',$CompanyAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true' ,'rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - ?> - -
-
-
- - -
- - - 'Deliverydt','value' => set_value('Deliverydt'),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true'); - echo form_input($data); - ?> - -
- -
- -
-
-
- -
- 'Select Department Name'); - - if(!empty($DeptList)) - { - foreach ($DeptList as $DID): - - - $options[$DID->DEPCode] = $DID->DEPCode.' '.' - '.' '.$DID->DepartmentName; - - endforeach; - } - - echo form_dropdown('drpDepartment', $options,set_value('drpDepartment'),'id="DepartmentName"' ,'class = "form-control select2"','required="true"'); - - ?> - -
-
-
- -
- 'Cost Center Name'); - //print_r( $options); - - if(!empty($POType)) - { - foreach ($SupplierName as $SID): - - - $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; - - endforeach; - } - - echo form_dropdown('CostCenterName', $options,set_value('CostCenterName'),'id="CostCenterName"','class="form-control select2"' , 'required="true"' ,'multiple="true"'); - - ?> -
-
-
- -
- 'AvalBuget','value' => set_value('AvalBuget'),'id'=>'AvalBuget', 'class' => 'form-control' ,'required' => 'true' ,'readonly' => 'true'); - echo form_input($data); - ?> -
-
- - - - - -
-
- -
- - - - - - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - -
- -
- - -
-
- - - - - - - - - - - - - - - - - - - - - -
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
-
- - - - - - -
- -
- - - - - -
-
- - - - - - diff --git a/application/views/alterpurchaseorderprint.php b/application/views/alterpurchaseorderprint.php old mode 100755 new mode 100644 diff --git a/application/views/assetListing.php b/application/views/assetListing.php old mode 100755 new mode 100644 diff --git a/application/views/capitalpopdf.php b/application/views/capitalpopdf.php old mode 100755 new mode 100644 diff --git a/application/views/capitalpurchaseorder.php b/application/views/capitalpurchaseorder.php old mode 100755 new mode 100644 index b78d6f1b..47878727 --- a/application/views/capitalpurchaseorder.php +++ b/application/views/capitalpurchaseorder.php @@ -1,2390 +1,2390 @@ - format('Y-m-d'); - $MaxPoDate = ''; - $AvlAmount = 0; - if(!empty($MaxPODate)) - { - foreach ($MaxPODate as $date) - { - $MaxPoDate = $date->PODate; - } - } - if(!empty($CompanyDetails)) - { - foreach ($CompanyDetails as $Req) - { - $CompanyAddress = $Req->Address; - } - } - if(!empty($AvlBudAmt)) - { - - $AvlAmount = $AvlBudAmt; - - } - ?> - - - -
- 'form-label-left CapitalPO ','name' => 'CapitalPO','id' => 'ImportPO'); - - echo form_open($this->config->base_url().'/purchaseorder/addPO/',$attributes); ?> - - -
- -
-
- -

Siddharth Industries - Capital Purchase Order

- - -
-
-
-
-
-
- - 'Selected Requisition Numbers'); - if(!empty($ReqList)) - { - foreach ($ReqList as $SID): - - // print_r($SID->ReqNo); - $options[$SID->ReqNo] = $SID->ReqNo ."-". $SID->ReqBy; - $ReqType = $SID->ReqType; - endforeach; - } - echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' , 'required="true"'); - - ?> -
-
- -
- - - - 'Select Currency Type '); - //print_r( $options); - - if(!empty($Currency)) - { - - foreach ($Currency as $Cur): - - $options[$Cur->CurrencyCode] = $Cur->CurrencyCode.' '.' - '.' '.$Cur->CurrencyName; - - endforeach; - } - - echo form_dropdown('currencytype', $options,set_value('currencytype'),'id="currencytype"','class="form-control select2"' , 'required="true"'); - - ?> - -
-
- -
-
-
-
- - - 'Select Supplier'); - //print_r( $options); - - if(!empty($Suplist)) - { - foreach ($Suplist as $SID): - - - $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; - - endforeach; - } - - echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); - - ?> - -
-

- -
- 'SupAddress','value' => set_value('SupAddress'),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true','rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - ?> -
-
-
- -
- 'ExchangeRt','value' => set_value('ExchangeRt'),'id'=>'ExchangeRt', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);'); - echo form_input($data); - ?> -
- -
-
-
-
- -
- - 'POType','value' => set_value('POType',CAPITAL),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> -
-
-
- -
- 'DeliveryAddr','value' => set_value('DeliveryAddr',$CompanyAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true', 'rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - ?> -
-
-
- -
- 'PODate','value' => set_value('PODate',$CurrentDate),'id'=>'PODate', 'class' => 'form-control' ,'required' => 'true', 'onkeypress'=>'return false;'); - echo form_input($data); - ?> -
-
-
-
-
- - Select Delivery By
- - - "DateRange", "id"=>"Date", "value"=>"0", 'checked'=>set_radio('DateRange', '0', TRUE))); ?>     - - "DateRange", "id"=>"Schedule", "value"=>"1", 'checked'=>set_radio('DateRange', '1', FALSE))); ?> - - - -
- - -

- - - 'Deliverydt','value' => set_value('Deliverydt',$CurrentDate),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true'); - echo form_input($data); - ?> - -
- -
- -
-
-
-
- -
- - - - - - - - - - - - - - - - - - - -
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
-
-
- -
-
- - - -
-
- - -
- - -
- -
-
- Service Tax @14% : -
- 'TotalAfterServiceTax','value' => set_value('TotalAfterServiceTax'),'id'=>'TotalAfterServiceTax', 'class' => 'form-control' ,'placeholder' => 'After Service Tax','readonly' => 'true'); - echo form_input($data); - ?> -
-
-
- Education cess @2% on service Tax : -
- 'TotalAfterEduCess','value' => set_value('TotalAfterEduCess'),'id'=>'TotalAfterEduCess', 'class' => 'form-control' ,'placeholder' => 'After Edu. cess','readonly' => 'true'); - echo form_input($data); - ?> -
-
-
- Sec. & Higher Edu. cess @1 % on service Tax : -
- 'TotalAfterSecHighTax','value' => set_value('TotalAfterSecHighTax'),'id'=>'TotalAfterSecHighTax', 'class' => 'form-control' ,'placeholder' => 'After High Edu. cess','readonly' => 'true'); - echo form_input($data); - ?> -
-
-
- Krishi Kalyan tax @.5 % on Basic Amount: -
- 'TotalAfterKrishiTax','value' => set_value('TotalAfterKrishiTax'),'id'=>'TotalAfterKrishiTax', 'class' => 'form-control' ,'placeholder' => 'After Krishi Kalyan tax.','readonly' => 'true'); - echo form_input($data); - ?> -
-
-
- Swachh Bharat tax @.5 % on Basic Amount: -
- 'TotalAfterSwachhTax','value' => set_value('TotalAfterSwachhTax'),'id'=>'TotalAfterSwachhTax', 'class' => 'form-control' ,'placeholder' => 'After Swatchh Bhart Tax.','readonly' => 'true'); - echo form_input($data); - ?> -
-
-
- Service Total Order Value: -
- 'txtToatlOrder','value' => set_value('txtToatlOrder'),'id'=>'txtToatlOrder', 'class' => 'form-control' ,'required' => 'true','readonly' => 'true'); - echo form_input($data); - ?> -
-
-
-
- -
-
- -
- - - 'txttotallanding','value' => set_value('txttotallanding'),'id'=>'txttotallanding', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalhighseas','value' => set_value('txttotalhighseas'),'id'=>'txttotalhighseas', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalcustom','value' => set_value('txttotalcustom'),'id'=>'txttotalcustom', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalexcise','value' => set_value('txttotalexcise'),'id'=>'txttotalexcise', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalexciseED','value' => set_value('txttotalexciseED'),'id'=>'txttotalexciseED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - -
- - - 'txttotalexciseSH','value' => set_value('txttotalexciseSH'),'id'=>'txttotalexciseSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalcustomED','value' => set_value('txttotalcustomED'),'id'=>'txttotalcustomED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalcustomSH','value' => set_value('txttotalcustomSH'),'id'=>'txttotalcustomSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalAdditionalExciseduty','value' => set_value('txttotalAdditionalExciseduty'),'id'=>'txttotalAdditionalExciseduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - -
- - - 'txttotalgrossduty','value' => set_value('txttotalgrossduty'),'id'=>'txttotalgrossduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalavlmodvat','value' => set_value('txttotalavlmodvat'),'id'=>'txttotalavlmodvat', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - -
- - - 'txttotalgrossexpense','value' => set_value('txttotalgrossexpense'),'id'=>'txttotalgrossexpense', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - - - - - -
- 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction'),'id'=>'txtSpcialInstruction', 'class' => 'form-control','rows' => '3', 'cols' => '40' ); - echo form_textarea($data); - ?> -
- - - - -
- - -
-   Save -   Submit - - -
-
-
-
- - - - - +
+ 'form-label-left CapitalPO ','name' => 'CapitalPO','id' => 'ImportPO'); + + echo form_open($this->config->base_url().'/purchaseorder/addPO/',$attributes); ?> + + +
+ +
+
+ +

Siddharth Industries - Capital Purchase Order

+ + +
+
+
+
+
+
+ + 'Selected Requisition Numbers'); + if(!empty($ReqList)) + { + foreach ($ReqList as $SID): + + // print_r($SID->ReqNo); + $options[$SID->ReqNo] = $SID->ReqNo ."-". $SID->ReqBy; + $ReqType = $SID->ReqType; + endforeach; + } + echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' , 'required="true"'); + + ?> +
+
+ +
+ + + + 'Select Currency Type '); + //print_r( $options); + + if(!empty($Currency)) + { + + foreach ($Currency as $Cur): + + $options[$Cur->CurrencyCode] = $Cur->CurrencyCode.' '.' - '.' '.$Cur->CurrencyName; + + endforeach; + } + + echo form_dropdown('currencytype', $options,set_value('currencytype'),'id="currencytype"','class="form-control select2"' , 'required="true"'); + + ?> + +
+
+ +
+
+
+
+ + + 'Select Supplier'); + //print_r( $options); + + if(!empty($Suplist)) + { + foreach ($Suplist as $SID): + + + $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; + + endforeach; + } + + echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); + + ?> + +
+

+ +
+ 'SupAddress','value' => set_value('SupAddress'),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true','rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + ?> +
+
+
+ +
+ 'ExchangeRt','value' => set_value('ExchangeRt'),'id'=>'ExchangeRt', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);'); + echo form_input($data); + ?> +
+ +
+
+
+
+ +
+ + 'POType','value' => set_value('POType',CAPITAL),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ +
+ 'DeliveryAddr','value' => set_value('DeliveryAddr',$CompanyAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true', 'rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + ?> +
+
+
+ +
+ 'PODate','value' => set_value('PODate',$CurrentDate),'id'=>'PODate', 'class' => 'form-control' ,'required' => 'true', 'onkeypress'=>'return false;'); + echo form_input($data); + ?> +
+
+
+
+
+ + Select Delivery By
+ + + "DateRange", "id"=>"Date", "value"=>"0", 'checked'=>set_radio('DateRange', '0', TRUE))); ?>     + + "DateRange", "id"=>"Schedule", "value"=>"1", 'checked'=>set_radio('DateRange', '1', FALSE))); ?> + + + +
+ + +

+ + + 'Deliverydt','value' => set_value('Deliverydt',$CurrentDate),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true'); + echo form_input($data); + ?> + +
+ +
+ +
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
+
+
+ +
+
+ + + +
+
+ + +
+ + +
+ +
+
+ Service Tax @14% : +
+ 'TotalAfterServiceTax','value' => set_value('TotalAfterServiceTax'),'id'=>'TotalAfterServiceTax', 'class' => 'form-control' ,'placeholder' => 'After Service Tax','readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ Education cess @2% on service Tax : +
+ 'TotalAfterEduCess','value' => set_value('TotalAfterEduCess'),'id'=>'TotalAfterEduCess', 'class' => 'form-control' ,'placeholder' => 'After Edu. cess','readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ Sec. & Higher Edu. cess @1 % on service Tax : +
+ 'TotalAfterSecHighTax','value' => set_value('TotalAfterSecHighTax'),'id'=>'TotalAfterSecHighTax', 'class' => 'form-control' ,'placeholder' => 'After High Edu. cess','readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ Krishi Kalyan tax @.5 % on Basic Amount: +
+ 'TotalAfterKrishiTax','value' => set_value('TotalAfterKrishiTax'),'id'=>'TotalAfterKrishiTax', 'class' => 'form-control' ,'placeholder' => 'After Krishi Kalyan tax.','readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ Swachh Bharat tax @.5 % on Basic Amount: +
+ 'TotalAfterSwachhTax','value' => set_value('TotalAfterSwachhTax'),'id'=>'TotalAfterSwachhTax', 'class' => 'form-control' ,'placeholder' => 'After Swatchh Bhart Tax.','readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ Service Total Order Value: +
+ 'txtToatlOrder','value' => set_value('txtToatlOrder'),'id'=>'txtToatlOrder', 'class' => 'form-control' ,'required' => 'true','readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+
+ +
+
+ +
+ + + 'txttotallanding','value' => set_value('txttotallanding'),'id'=>'txttotallanding', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalhighseas','value' => set_value('txttotalhighseas'),'id'=>'txttotalhighseas', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalcustom','value' => set_value('txttotalcustom'),'id'=>'txttotalcustom', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalexcise','value' => set_value('txttotalexcise'),'id'=>'txttotalexcise', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalexciseED','value' => set_value('txttotalexciseED'),'id'=>'txttotalexciseED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + +
+ + + 'txttotalexciseSH','value' => set_value('txttotalexciseSH'),'id'=>'txttotalexciseSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalcustomED','value' => set_value('txttotalcustomED'),'id'=>'txttotalcustomED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalcustomSH','value' => set_value('txttotalcustomSH'),'id'=>'txttotalcustomSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalAdditionalExciseduty','value' => set_value('txttotalAdditionalExciseduty'),'id'=>'txttotalAdditionalExciseduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + +
+ + + 'txttotalgrossduty','value' => set_value('txttotalgrossduty'),'id'=>'txttotalgrossduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalavlmodvat','value' => set_value('txttotalavlmodvat'),'id'=>'txttotalavlmodvat', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + +
+ + + 'txttotalgrossexpense','value' => set_value('txttotalgrossexpense'),'id'=>'txttotalgrossexpense', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + + + + + +
+ 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction'),'id'=>'txtSpcialInstruction', 'class' => 'form-control','rows' => '3', 'cols' => '40' ); + echo form_textarea($data); + ?> +
+ + + + +
+ + +
+   Save +   Submit + + +
+
+
+
+ + + + + \ No newline at end of file diff --git a/application/views/changePassword.php b/application/views/changePassword.php old mode 100755 new mode 100644 diff --git a/application/views/costListing.php b/application/views/costListing.php old mode 100755 new mode 100644 diff --git a/application/views/createPOfromRequistion.php b/application/views/createPOfromRequistion.php old mode 100755 new mode 100644 diff --git a/application/views/create_pdf.php b/application/views/create_pdf.php old mode 100755 new mode 100644 diff --git a/application/views/dashboard.php b/application/views/dashboard.php old mode 100755 new mode 100644 diff --git a/application/views/editEmployee.php b/application/views/editEmployee.php old mode 100755 new mode 100644 diff --git a/application/views/editOld.php b/application/views/editOld.php old mode 100755 new mode 100644 diff --git a/application/views/editOldPO.php b/application/views/editOldPO.php old mode 100755 new mode 100644 diff --git a/application/views/editOldRawmaterial.php b/application/views/editOldRawmaterial.php old mode 100755 new mode 100644 diff --git a/application/views/editOldasset.php b/application/views/editOldasset.php old mode 100755 new mode 100644 diff --git a/application/views/editOldcost.php b/application/views/editOldcost.php old mode 100755 new mode 100644 diff --git a/application/views/editOldemployee.php b/application/views/editOldemployee.php old mode 100755 new mode 100644 diff --git a/application/views/editOldemppay.php b/application/views/editOldemppay.php old mode 100755 new mode 100644 diff --git a/application/views/editOldmonthly.php b/application/views/editOldmonthly.php old mode 100755 new mode 100644 diff --git a/application/views/editOldsupplier.php b/application/views/editOldsupplier.php old mode 100755 new mode 100644 diff --git a/application/views/editRevenuepurchaseorder.php b/application/views/editRevenuepurchaseorder.php old mode 100755 new mode 100644 index e4a45ced..02c62d7d --- a/application/views/editRevenuepurchaseorder.php +++ b/application/views/editRevenuepurchaseorder.php @@ -5,6 +5,9 @@ $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); $CurrentDate = $dt->format('Y-m-d'); $MaxPoDate = ''; $AvlAmount = 0; +$DeliverSchedule=''; +$DeliverOption=''; + if(!empty($MaxPODate)) { foreach ($MaxPODate as $date) @@ -59,7 +62,8 @@ if(!empty($POMaster)) $Pdt = new DateTime($Req->PODate); $PODate = $Pdt->format('Y-m-d'); - + $DeliverOption = $Req->DeliveryOption; + $DeliverSchedule = $Req->DeliverySchedule; $Ddt = new DateTime($Req->DeliveryDate); $Deliverydt = $Ddt->format('Y-m-d'); @@ -95,7 +99,28 @@ if(!empty($POMaster)) - + - - - - -
- 'form-label-left ImportPO ','name' => 'ImportPO','id' => 'ImportPO'); - - echo form_open($this->config->base_url().'/purchaseorder/addPO/',$attributes); ?> - - -
- -
-
-
-

Siddharth Industries - Edit Import Purchase Order

-
- -
-
-
-
-
-
- - - 'Selected Requisition Numbers'); - if(!empty($ReqList)) - { - foreach ($ReqList as $SID): - $options[$SID->ReqNo] = $SID->ReqNo ; - // print_r($SID->ReqNo); - // $options[$SID->ReqNo] = $SID->ReqNo ."-". $SID->ReqBy; - //$ReqType = $SID->ReqType; - endforeach; - } - //echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' , 'required="true"'); - echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' ,'required="true"' , 'height="400px"' ); - - ?> -
- - - - -
- - - 'Select Currency'); - - //print_r( $options); - if(!empty($Currency)) - { - foreach ($Currency as $CUR): - - - $options[$CUR->CurrencyCode] = $CUR->CurrencyCode.' '.' - '.' '.$CUR->CurrencyName; - - endforeach; - } - - //echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); - echo form_dropdown('currencytype', $options,set_value('currencytype'),'id="currencytype"' ,'required="true"' ,'class="form-control select2'); - - - - - - - ?> -
- - - -
-
-
-
- - - 'Select Supplier'); - //print_r( $options); - if(!empty($Suplist)) - { - foreach ($Suplist as $SID): - - - $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; - - endforeach; - } - - //echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); - - echo form_dropdown('drpSupplier', $options,set_value('drpSupplier',$SupId),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); - - ?> - - - -
-

- -
- 'SupAddress','value' => set_value('SupAddress',$Address),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true','rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - - - - - ?> -
-
-
- Exchange Rate : -
- 'ExchangeRate','value' => set_value('ExchangeRate',$ExchangeRate),'id'=>'ExchangeRate', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'USRate()'); - - echo form_input($data); - ?> -
- -
-
-
-
- -
- - 'POType','value' => set_value('POType',IMPORT),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> -
-
-
- -
- 'DeliveryAddr','value' => set_value('DeliveryAddr',$DeliveryAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true', 'rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - - ?> -
-
- -
-
-
- -
- 'PODate','value' => set_value('PODate',$PODate),'id'=>'PODate', 'class' => 'form-control' ,'required' => 'true', 'onkeypress'=>'return false;'); - echo form_input($data); - ?> -
-
-
- -
- 'Deliverydt','value' => set_value('Deliverydt',$Deliverydt),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true', 'onkeypress'=>'return false;'); - echo form_input($data); - ?> - - -
-
-
- -
-
-
- - -
- -
-
-Add Line Item - - - - - - - - - - -
-
- - - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -" /> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AfterLandingCharge; - $tothighseas = $tothighseas + $record->AfterHighSeasSalesCharge; - $totcustom = $totcustom + $record->AfterCustomDuty; - $totexciseduty = $totexciseduty + $record->ExciseDuty; - $totexcisedutyED = $totexcisedutyED + $record->ExciseDutyEdCess; - $totexciseSH = $totexciseSH + $record->AfterExciseDutySHCess; - $totcustomED = $totcustomED +$record->AfterCustomEdCess; - - $totcustomSH = $totcustomSH + $record->CustomSHCess; - $totaddtnlexcise= $totaddtnlexcise + $record->AddlExciseDuty; - $totgrossduty = $totgrossduty + $record->Grossdutypayable; - $totavlmodvat = $totavlmodvat +$record->AvailableModvat; - $totgrossduty=$totgrossduty+$record->Grossdutypayable; - $totavlmodvat=$totavlmodvat+$record->AvailableModvat; - $totgrossexpense=$totgrossexpense+$record->Grossexpensesduetocustomduty; - $ExchangeRate=$record->ExchangeRate; - $totorder=$totorder+$record->TotalOrderValue; - - - - } - ?> - - -
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
ReqNo ?>MaterialName?>Quantity ?>UOM ?>Rate ?>BasicValue ?>Taxamount?>TotalOrderValue?>     - -    
-
- -
- -
-
- - - 'txttotallanding','value' => set_value('txttotallanding',$TotalLanding),'id'=>'txttotallanding', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalhighseas','value' => set_value('txttotalhighseas',$tothighseas),'id'=>'txttotalhighseas', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalcustom','value' => set_value('txttotalcustom',$totcustom),'id'=>'txttotalcustom', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalexcise','value' => set_value('txttotalexcise',$totexciseduty),'id'=>'txttotalexcise', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalexciseED','value' => set_value('txttotalexciseED', $totexcisedutyED),'id'=>'txttotalexciseED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - -
- - - 'txttotalexciseSH','value' => set_value('txttotalexciseSH',$totexciseSH),'id'=>'txttotalexciseSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalcustomED','value' => set_value('txttotalcustomED',$totcustomED),'id'=>'txttotalcustomED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalcustomSH','value' => set_value('txttotalcustomSH',$totcustomSH),'id'=>'txttotalcustomSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalAdditionalExciseduty','value' => set_value('txttotalAdditionalExciseduty',$totaddtnlexcise),'id'=>'txttotalAdditionalExciseduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - -
- - - 'txttotalgrossduty','value' => set_value('txttotalgrossduty',$totgrossduty),'id'=>'txttotalgrossduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalavlmodvat','value' => set_value('txttotalavlmodvat',$totavlmodvat),'id'=>'txttotalavlmodvat', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - -
- - - 'txttotalgrossexpense','value' => set_value('txttotalgrossexpense',$totgrossexpense),'id'=>'txttotalgrossexpense', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - - - -
- 'txtToatlOrder','value' => set_value('txtToatlOrder',$totorder),'id'=>'txtToatlOrder', 'class' => 'form-control' ,'required' => 'true','readonly' => 'true'); - echo form_input($data); - ?> -
-
- - - -
-
- 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction'),'id'=>'txtSpcialInstruction', 'class' => 'form-control','rows' => '3', 'cols' => '40' ); - echo form_textarea($data); - ?> -
-
-
- -

- - - - - - - - - -   Save -   Submit - - - - -
-
-
-
- -
-
-
-
- - - - - - +format('Y-m-d'); + +$MaxPoDate = ''; +if(!empty($MaxPODate)) +{ + foreach ($MaxPODate as $date) + { + $MaxPoDate = $date->PODate; + } +} + +if(!empty($AvlBudAmt)) +{ + + $AvlAmount = $AvlBudAmt; + +} +//echo $AvlAmount; + +$CompanyAddress = ''; +if(!empty($CompanyDetails)) +{ + foreach ($CompanyDetails as $Req) + { + $CompanyAddress = $Req->Address; + } +} + + + //$Exchangerate=$ExchangeRate; + + + +$SupId = ''; +$SupName = ''; +$Address = ''; +$PODate = ''; +$Deliverydt =''; +$DeliveryAddress =''; +$POStatus=''; +$PONO = ''; +$ServiceDescription = ''; +$TotalLanding=''; +$tothighseas=''; +$totcustom=''; +$totexciseduty=''; +$totexcisedutyED=''; +$totexciseSH=''; +$totcustomED=''; +$totcustomSH=''; +$totaddtnlexcise=''; +$totgrossduty=''; +$totavlmodvat=''; +$totgrossexpense=''; +$totordervalue=''; +$ExchangeRate=''; +$totorder=''; +//$ExchangeRate + + +if(!empty($POMaster)) +{ + foreach ($POMaster as $Req) + { + $SupId = $Req->SupplierID; + $SupName = $Req->SupplierName; + $Address = $Req->Address; + + $Pdt = new DateTime($Req->PODate); + $PODate = $Pdt->format('Y-m-d'); + + $Ddt = new DateTime($Req->DeliveryDate); + $Deliverydt = $Ddt->format('Y-m-d'); + + $DeliveryAddress =$Req->DeliveryAddress; + $POStatus = $Req->StatusCode; + $PONO = $Req->PONO; + $ServiceDescription = $Req->ServiceDescription; + // $ExchangeRate=$Req->ExchangeRate; + } +} +?> + + + + + + + + +
+ 'form-label-left ImportPO ','name' => 'ImportPO','id' => 'ImportPO'); + + echo form_open($this->config->base_url().'/purchaseorder/addPO/',$attributes); ?> + + +
+ +
+
+
+

Siddharth Industries - Edit Import Purchase Order

+
+ +
+
+
+
+
+
+ + + 'Selected Requisition Numbers'); + if(!empty($ReqList)) + { + foreach ($ReqList as $SID): + $options[$SID->ReqNo] = $SID->ReqNo ; + // print_r($SID->ReqNo); + // $options[$SID->ReqNo] = $SID->ReqNo ."-". $SID->ReqBy; + //$ReqType = $SID->ReqType; + endforeach; + } + //echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' , 'required="true"'); + echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' ,'required="true"' , 'height="400px"' ); + + ?> +
+ + + + +
+ + + 'Select Currency'); + + //print_r( $options); + if(!empty($Currency)) + { + foreach ($Currency as $CUR): + + + $options[$CUR->CurrencyCode] = $CUR->CurrencyCode.' '.' - '.' '.$CUR->CurrencyName; + + endforeach; + } + + //echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); + echo form_dropdown('currencytype', $options,set_value('currencytype'),'id="currencytype"' ,'required="true"' ,'class="form-control select2'); + + + + + + + ?> +
+ + + +
+
+
+
+ + + 'Select Supplier'); + //print_r( $options); + if(!empty($Suplist)) + { + foreach ($Suplist as $SID): + + + $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; + + endforeach; + } + + //echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); + + echo form_dropdown('drpSupplier', $options,set_value('drpSupplier',$SupId),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); + + ?> + + + +
+

+ +
+ 'SupAddress','value' => set_value('SupAddress',$Address),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true','rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + + + + + ?> +
+
+
+ Exchange Rate : +
+ 'ExchangeRate','value' => set_value('ExchangeRate',$ExchangeRate),'id'=>'ExchangeRate', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'USRate()'); + + echo form_input($data); + ?> +
+ +
+
+
+
+ +
+ + 'POType','value' => set_value('POType',IMPORT),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ +
+ 'DeliveryAddr','value' => set_value('DeliveryAddr',$DeliveryAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true', 'rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + + ?> +
+
+ +
+
+
+ +
+ 'PODate','value' => set_value('PODate',$PODate),'id'=>'PODate', 'class' => 'form-control' ,'required' => 'true', 'onkeypress'=>'return false;'); + echo form_input($data); + ?> +
+
+
+ +
+ 'Deliverydt','value' => set_value('Deliverydt',$Deliverydt),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true', 'onkeypress'=>'return false;'); + echo form_input($data); + ?> + + +
+
+
+ +
+
+
+ + +
+ +
+
+Add Line Item + + + + + + + + + + +
+
+ + + + + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AfterLandingCharge; + $tothighseas = $tothighseas + $record->AfterHighSeasSalesCharge; + $totcustom = $totcustom + $record->AfterCustomDuty; + $totexciseduty = $totexciseduty + $record->ExciseDuty; + $totexcisedutyED = $totexcisedutyED + $record->ExciseDutyEdCess; + $totexciseSH = $totexciseSH + $record->AfterExciseDutySHCess; + $totcustomED = $totcustomED +$record->AfterCustomEdCess; + + $totcustomSH = $totcustomSH + $record->CustomSHCess; + $totaddtnlexcise= $totaddtnlexcise + $record->AddlExciseDuty; + $totgrossduty = $totgrossduty + $record->Grossdutypayable; + $totavlmodvat = $totavlmodvat +$record->AvailableModvat; + $totgrossduty=$totgrossduty+$record->Grossdutypayable; + $totavlmodvat=$totavlmodvat+$record->AvailableModvat; + $totgrossexpense=$totgrossexpense+$record->Grossexpensesduetocustomduty; + $ExchangeRate=$record->ExchangeRate; + $totorder=$totorder+$record->TotalOrderValue; + + + + } + ?> + + +
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
ReqNo ?>MaterialName?>Quantity ?>UOM ?>Rate ?>BasicValue ?>Taxamount?>TotalOrderValue?>     + +    
+
+ +
+ +
+
+ + + 'txttotallanding','value' => set_value('txttotallanding',$TotalLanding),'id'=>'txttotallanding', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalhighseas','value' => set_value('txttotalhighseas',$tothighseas),'id'=>'txttotalhighseas', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalcustom','value' => set_value('txttotalcustom',$totcustom),'id'=>'txttotalcustom', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalexcise','value' => set_value('txttotalexcise',$totexciseduty),'id'=>'txttotalexcise', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalexciseED','value' => set_value('txttotalexciseED', $totexcisedutyED),'id'=>'txttotalexciseED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + +
+ + + 'txttotalexciseSH','value' => set_value('txttotalexciseSH',$totexciseSH),'id'=>'txttotalexciseSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalcustomED','value' => set_value('txttotalcustomED',$totcustomED),'id'=>'txttotalcustomED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalcustomSH','value' => set_value('txttotalcustomSH',$totcustomSH),'id'=>'txttotalcustomSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalAdditionalExciseduty','value' => set_value('txttotalAdditionalExciseduty',$totaddtnlexcise),'id'=>'txttotalAdditionalExciseduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + +
+ + + 'txttotalgrossduty','value' => set_value('txttotalgrossduty',$totgrossduty),'id'=>'txttotalgrossduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalavlmodvat','value' => set_value('txttotalavlmodvat',$totavlmodvat),'id'=>'txttotalavlmodvat', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + +
+ + + 'txttotalgrossexpense','value' => set_value('txttotalgrossexpense',$totgrossexpense),'id'=>'txttotalgrossexpense', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + + + +
+ 'txtToatlOrder','value' => set_value('txtToatlOrder',$totorder),'id'=>'txtToatlOrder', 'class' => 'form-control' ,'required' => 'true','readonly' => 'true'); + echo form_input($data); + ?> +
+
+ + + +
+
+ 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction'),'id'=>'txtSpcialInstruction', 'class' => 'form-control','rows' => '3', 'cols' => '40' ); + echo form_textarea($data); + ?> +
+
+
+ +

+ + + + + + + + + +   Save +   Submit + + + + +
+
+
+
+ +
+
+
+
+ + + + + + diff --git a/application/views/editrequisitionform.php b/application/views/editrequisitionform.php old mode 100755 new mode 100644 diff --git a/application/views/employeeListing.php b/application/views/employeeListing.php old mode 100755 new mode 100644 diff --git a/application/views/emppayListing.php b/application/views/emppayListing.php old mode 100755 new mode 100644 diff --git a/application/views/forgotPassword.php b/application/views/forgotPassword.php old mode 100755 new mode 100644 diff --git a/application/views/importpo.php b/application/views/importpo.php old mode 100755 new mode 100644 index c7c7b778..2ba94cb6 --- a/application/views/importpo.php +++ b/application/views/importpo.php @@ -1,3469 +1,3519 @@ -Address; - } -} - -$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); -$CurrentDate = $dt->format('Y-m-d'); - -$MaxPoDate = ''; -if(!empty($MaxPODate)) -{ - foreach ($MaxPODate as $date) - { - $MaxPoDate = $date->PODate; - } -} - -if(!empty($AvlBudAmt)) -{ - - $AvlAmount = $AvlBudAmt; - -} -?> - - - - - - - - -
- 'form-label-left ImportPO ','name' => 'ImportPO','id' => 'ImportPO'); - - echo form_open($this->config->base_url().'/purchaseorder/addPO/',$attributes); ?> - - -
- -
- - -

Siddharth Industries - Import Purchase Order


- - - -
-
-
-
-
- - - 'Selected Requisition Numbers'); - if(!empty($ReqList)) - { - foreach ($ReqList as $SID): - - // print_r($SID->ReqNo); - $options[$SID->ReqNo] = $SID->ReqNo ."-". $SID->ReqBy; - $ReqType = $SID->ReqType; - endforeach; - } - echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' , 'required="true"'); - - ?> -
-
- - - 'Select Currency Type'); - //print_r($Currency); - if(!empty($Currency)) - { //print_r($Currency); - foreach ($Currency as $CUR): - - - $options[$CUR->CurrencyCode] = $CUR->CurrencyCode.' '.' - '.' '.$CUR->CurrencyName; - - endforeach; - } - - echo form_dropdown('currencytype', $options,set_value('currencytype'),'id="currencytype"' ,'required="true"' ,'class="form-control select2'); - ?> - -
- - -
-
-
-
- - - 'Select Supplier'); - //print_r( $options); - if(!empty($Suplist)) - { - foreach ($Suplist as $SID): - - - $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; - - endforeach; - } - - echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); - - ?> - -
-

- -
- 'SupAddress','value' => set_value('SupAddress'),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true','rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - ?> -
-
-
- -
- 'ExchangeRate','value' => set_value('ExchangeRate'),'id'=>'ExchangeRate', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'USRate()'); - echo form_input($data); - ?> -
-
-
-
-
- -
- - 'POType','value' => set_value('POType',IMPORT),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> -
-
-
- -
- 'DeliveryAddr','value' => set_value('DeliveryAddr',$CompanyAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true', 'rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - ?> -
-
-
- -
- 'PODate','value' => set_value('PODate',$CurrentDate),'id'=>'PODate', 'class' => 'form-control' ,'required' => 'true', 'onkeypress'=>'return false;'); - echo form_input($data); - ?> -
-
- -
-
-
- - Select Delivery By
- - - "DateRange", "id"=>"Date", "value"=>"0", 'checked'=>set_radio('DateRange', '0', TRUE))); ?>     - - "DateRange", "id"=>"Schedule", "value"=>"1", 'checked'=>set_radio('DateRange', '1', FALSE))); ?> - - - -
- - -
- - - 'Deliverydt','value' => set_value('Deliverydt'),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true'); - echo form_input($data); - ?> - -
- - -
- -
-
-
- - -
- -
-
-Add Line Item - - - - - - - - - - -
-
- - - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - - - -
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
-
- -
- -
-
- - - 'txttotallanding','value' => set_value('txttotallanding'),'id'=>'txttotallanding', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalhighseas','value' => set_value('txttotalhighseas'),'id'=>'txttotalhighseas', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalcustom','value' => set_value('txttotalcustom'),'id'=>'txttotalcustom', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalexcise','value' => set_value('txttotalexcise'),'id'=>'txttotalexcise', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalexciseED','value' => set_value('txttotalexciseED'),'id'=>'txttotalexciseED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - -
- - - 'txttotalexciseSH','value' => set_value('txttotalexciseSH'),'id'=>'txttotalexciseSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalcustomED','value' => set_value('txttotalcustomED'),'id'=>'txttotalcustomED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalcustomSH','value' => set_value('txttotalcustomSH'),'id'=>'txttotalcustomSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalAdditionalExciseduty','value' => set_value('txttotalAdditionalExciseduty'),'id'=>'txttotalAdditionalExciseduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - -
- - - 'txttotalgrossduty','value' => set_value('txttotalgrossduty'),'id'=>'txttotalgrossduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- -
- - - 'txttotalavlmodvat','value' => set_value('txttotalavlmodvat'),'id'=>'txttotalavlmodvat', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - -
- - - 'txttotalgrossexpense','value' => set_value('txttotalgrossexpense'),'id'=>'txttotalgrossexpense', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
- - - - -
- 'txtToatlOrder','value' => set_value('txtToatlOrder'),'id'=>'txtToatlOrder', 'class' => 'form-control' ,'required' => 'true','readonly' => 'true','style'=>'text-align:right;'); - echo form_input($data); - ?> -
-
- - - -
-
- 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction'),'id'=>'txtSpcialInstruction', 'class' => 'form-control','rows' => '3', 'cols' => '40' ); - echo form_textarea($data); - ?> -
-
-
- -

- - - - - -   Save -   Submit - - -
-
-
-
- -
-
-
-
- - - - - - +Address; + } +} + +$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); +$CurrentDate = $dt->format('Y-m-d'); + +$MaxPoDate = ''; +if(!empty($MaxPODate)) +{ + foreach ($MaxPODate as $date) + { + $MaxPoDate = $date->PODate; + } +} + +if(!empty($AvlBudAmt)) +{ + + $AvlAmount = $AvlBudAmt; + +} +?> + + + + + + + + +
+ 'form-label-left ImportPO ','name' => 'ImportPO','id' => 'ImportPO'); + + echo form_open($this->config->base_url().'/purchaseorder/addPO/',$attributes); ?> + + +
+ +
+ + +

Siddharth Industries - Import Purchase Order


+ + + +
+
+
+
+
+ + + 'Selected Requisition Numbers'); + if(!empty($ReqList)) + { + foreach ($ReqList as $SID): + + // print_r($SID->ReqNo); + $options[$SID->ReqNo] = $SID->ReqNo ."-". $SID->ReqBy; + $ReqType = $SID->ReqType; + endforeach; + } + echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' , 'required="true"'); + + ?> +
+
+ + + 'Select Currency Type'); + //print_r($Currency); + if(!empty($Currency)) + { //print_r($Currency); + foreach ($Currency as $CUR): + + + $options[$CUR->CurrencyCode] = $CUR->CurrencyCode.' '.' - '.' '.$CUR->CurrencyName; + + endforeach; + } + + echo form_dropdown('currencytype', $options,set_value('currencytype'),'id="currencytype"' ,'required="true"' ,'class="form-control select2'); + ?> + +
+ + +
+
+
+
+ + + 'Select Supplier'); + //print_r( $options); + if(!empty($Suplist)) + { + foreach ($Suplist as $SID): + + + $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; + + endforeach; + } + + echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); + + ?> + +
+

+ +
+ 'SupAddress','value' => set_value('SupAddress'),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true','rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + ?> +
+
+
+ +
+ 'ExchangeRate','value' => set_value('ExchangeRate'),'id'=>'ExchangeRate', 'class' => 'form-control' ,'onkeypress'=>'return isNumberKey(event);','onchange'=>'USRate()'); + echo form_input($data); + ?> +
+
+
+
+
+ +
+ + 'POType','value' => set_value('POType',IMPORT),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ +
+ 'DeliveryAddr','value' => set_value('DeliveryAddr',$CompanyAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true', 'rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + ?> +
+
+
+ +
+ 'PODate','value' => set_value('PODate',$CurrentDate),'id'=>'PODate', 'class' => 'form-control' ,'required' => 'true', 'onkeypress'=>'return false;'); + echo form_input($data); + ?> +
+
+ +
+
+
+ + Select Delivery By
+ + + "DateRange", "id"=>"Date", "value"=>"0", 'checked'=>'checked')); ?>     + + "DateRange", "id"=>"Schedule", "value"=>"1")); ?> + + + +
+ + +
+ + + 'Deliverydt','value' => set_value('Deliverydt'),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true'); + echo form_input($data); + ?> + +
+ + +
+ +
+
+
+ + +
+ +
+
+Add Line Item + + + + + + + + + + +
+
+ + + + + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + + +
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
+
+ +
+ +
+
+ + + 'txttotallanding','value' => set_value('txttotallanding'),'id'=>'txttotallanding', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalhighseas','value' => set_value('txttotalhighseas'),'id'=>'txttotalhighseas', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalcustom','value' => set_value('txttotalcustom'),'id'=>'txttotalcustom', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalexcise','value' => set_value('txttotalexcise'),'id'=>'txttotalexcise', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalexciseED','value' => set_value('txttotalexciseED'),'id'=>'txttotalexciseED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + +
+ + + 'txttotalexciseSH','value' => set_value('txttotalexciseSH'),'id'=>'txttotalexciseSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalcustomED','value' => set_value('txttotalcustomED'),'id'=>'txttotalcustomED', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalcustomSH','value' => set_value('txttotalcustomSH'),'id'=>'txttotalcustomSH', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalAdditionalExciseduty','value' => set_value('txttotalAdditionalExciseduty'),'id'=>'txttotalAdditionalExciseduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + +
+ + + 'txttotalgrossduty','value' => set_value('txttotalgrossduty'),'id'=>'txttotalgrossduty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ +
+ + + 'txttotalavlmodvat','value' => set_value('txttotalavlmodvat'),'id'=>'txttotalavlmodvat', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + +
+ + + 'txttotalgrossexpense','value' => set_value('txttotalgrossexpense'),'id'=>'txttotalgrossexpense', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+ + + + +
+ 'txtToatlOrder','value' => set_value('txtToatlOrder'),'id'=>'txtToatlOrder', 'class' => 'form-control' ,'required' => 'true','readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+
+ + + +
+
+ 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction'),'id'=>'txtSpcialInstruction', 'class' => 'form-control','rows' => '3', 'cols' => '40' ); + echo form_textarea($data); + ?> +
+
+
+ +

+ + + + + +   Save +   Submit + + +
+
+
+
+ +
+
+
+
+ + + + + + diff --git a/application/views/importpopdf.php b/application/views/importpopdf.php old mode 100755 new mode 100644 diff --git a/application/views/includes/footer.php b/application/views/includes/footer.php old mode 100755 new mode 100644 diff --git a/application/views/includes/header.php b/application/views/includes/header.php old mode 100755 new mode 100644 index 5f0f8998..12aab97a --- a/application/views/includes/header.php +++ b/application/views/includes/header.php @@ -1,4 +1,3 @@ - @@ -275,7 +274,7 @@ diff --git a/application/views/includes/header.php~ b/application/views/includes/header.php~ old mode 100755 new mode 100644 diff --git a/application/views/includes/pdffooter.php b/application/views/includes/pdffooter.php old mode 100755 new mode 100644 diff --git a/application/views/includes/pdfheader.php b/application/views/includes/pdfheader.php old mode 100755 new mode 100644 diff --git a/application/views/index.html b/application/views/index.html old mode 100755 new mode 100644 diff --git a/application/views/inwardgateregister.php b/application/views/inwardgateregister.php old mode 100755 new mode 100644 index f440537e..116ae4b3 --- a/application/views/inwardgateregister.php +++ b/application/views/inwardgateregister.php @@ -421,14 +421,14 @@ function Save() $.ajax({ data:$('.IGR').serialize(), type:"POST", - //url:"inwardgateregister/addNewigr", + url:"inwardgateregister/addNewigr", success:function(data) { console.log(data); if(data) { alert(data); - //window.location ="inwardgateregister/viewinwardgateregister"; + window.location ="inwardgateregister/viewinwardgateregister"; } else diff --git a/application/views/login.php b/application/views/login.php old mode 100755 new mode 100644 diff --git a/application/views/materialinspectionreport.php b/application/views/materialinspectionreport.php old mode 100755 new mode 100644 diff --git a/application/views/monthlyListing.php b/application/views/monthlyListing.php old mode 100755 new mode 100644 diff --git a/application/views/payslipeditable.php b/application/views/payslipeditable.php old mode 100755 new mode 100644 diff --git a/application/views/payslipgenerate.php b/application/views/payslipgenerate.php old mode 100755 new mode 100644 diff --git a/application/views/payslipgenerateprint.php b/application/views/payslipgenerateprint.php old mode 100755 new mode 100644 diff --git a/application/views/payslipupload.php b/application/views/payslipupload.php old mode 100755 new mode 100644 diff --git a/application/views/payslipupload2.php b/application/views/payslipupload2.php old mode 100755 new mode 100644 diff --git a/application/views/poapproval_view.php b/application/views/poapproval_view.php old mode 100755 new mode 100644 diff --git a/application/views/porelease_view.php b/application/views/porelease_view.php old mode 100755 new mode 100644 diff --git a/application/views/purchaseorder.php b/application/views/purchaseorder.php old mode 100755 new mode 100644 index d841ce33..72506c3b --- a/application/views/purchaseorder.php +++ b/application/views/purchaseorder.php @@ -1,4 +1,3 @@ - Select Delivery By
- "DateRange", "id"=>"Date", "value"=>"0", 'checked'=>set_radio('DateRange', '0', TRUE))); ?>     + "DateRange", "id"=>"Date", "value"=>"0", "checked"=>"checked")); ?>     - "DateRange", "id"=>"Schedule", "value"=>"1", 'checked'=>set_radio('DateRange', '1', FALSE))); ?> + "DateRange", "id"=>"Schedule", "value"=>"1")); ?> diff --git a/application/views/rawmaterialListing.php b/application/views/rawmaterialListing.php old mode 100755 new mode 100644 diff --git a/application/views/requisitionform.php b/application/views/requisitionform.php old mode 100755 new mode 100644 diff --git a/application/views/requisitionlist.php b/application/views/requisitionlist.php old mode 100755 new mode 100644 diff --git a/application/views/requisitionlistapproval.php b/application/views/requisitionlistapproval.php old mode 100755 new mode 100644 diff --git a/application/views/requisitionlisting.php b/application/views/requisitionlisting.php old mode 100755 new mode 100644 diff --git a/application/views/revenuepopdf.php b/application/views/revenuepopdf.php old mode 100755 new mode 100644 diff --git a/application/views/servicePurchaseorder.php b/application/views/servicePurchaseorder.php old mode 100755 new mode 100644 diff --git a/application/views/servicepo.php b/application/views/servicepo.php old mode 100755 new mode 100644 diff --git a/application/views/servicepopdf.php b/application/views/servicepopdf.php old mode 100755 new mode 100644 diff --git a/application/views/supplierListing.php b/application/views/supplierListing.php old mode 100755 new mode 100644 diff --git a/application/views/users.php b/application/views/users.php old mode 100755 new mode 100644 diff --git a/application/views/viewasset.php b/application/views/viewasset.php deleted file mode 100755 index 0d761571..00000000 --- a/application/views/viewasset.php +++ /dev/null @@ -1,149 +0,0 @@ -Asset_Code; - $Asset_Name = $uf->Asset_Name; - $Description = $uf->Description; - $Department = $uf->Department; - $Location = $uf->Location; - $User = $uf->User; - $SupplierName = $uf->SupplierName; - $DateOfPurchase = $uf->DateOfPurchase; - $DateOfCommission = $uf->DateOfCommission; - $AssetValue = $uf->AssetValue; - $Createdby = $uf->Createdby; - $CreatedDate = $uf->CreatedDate; - - } -} - - -?> - -
- -
-

-
View Asset Details
- -

-
- -
-
- Back -
-
-
- -
-
- - - - -
-
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- -
-
- -
-
-
- - \ No newline at end of file diff --git a/application/views/viewcost.php b/application/views/viewcost.php deleted file mode 100755 index ed53f480..00000000 --- a/application/views/viewcost.php +++ /dev/null @@ -1,124 +0,0 @@ -CostCentreID; - $CostName = $uf->CostName; - $Description = $uf->Description; - - } -} - - -?> - -
- -
-

-
Cost Center
- -

-
-
- -
- -
-
- Back -
-
-
- -
- - - - -
-
-

View Cost Details

-
- - - -
-
- -
-
- -
- - - - - - - - - - - - - - - - - -
-
- - - -
-
-
- load->helper('form'); - $error = $this->session->flashdata('error'); - if($error) - { - ?> -
- - session->flashdata('error'); ?> -
- - session->flashdata('success'); - if($success) - { - ?> -
- - session->flashdata('success'); ?> -
- - -
-
- ', '
'); ?> -
-
-
-
-
-
- - \ No newline at end of file diff --git a/application/views/viewemployee.php b/application/views/viewemployee.php deleted file mode 100755 index a3d58a31..00000000 --- a/application/views/viewemployee.php +++ /dev/null @@ -1,197 +0,0 @@ -EmpID; - $FirstName = $uf->FirstName; - $LastName = $uf->LastName; - $DateofBirth = $uf->DateofBirth; - $ContactNumber = $uf->ContactNumber; - $EmailId = $uf->EmailId; - $DateofJoining = $uf->DateofJoining; - $Role = $uf->Role; - $Address1 = $uf->Address1; - $Address2 = $uf->Address2; - $Place = $uf->Place; - $City = $uf->City; - $State = $uf->State; - $Pin = $uf->Pin; - $DepartmentName = $uf->DepartmentName; - $User_Comments = $uf->User_Comments; - } -} - - -?> - -
- -
-

-
Employee details
- -

- -
- -
- -
- -
- - -
- Back -
-
- -
-
-

View Employee Details

-
- - -
-
-
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - -
-
-
- load->helper('form'); - $error = $this->session->flashdata('error'); - if($error) - { - ?> -
- - session->flashdata('error'); ?> -
- - session->flashdata('success'); - if($success) - { - ?> -
- - session->flashdata('success'); ?> -
- - -
-
- ', '
'); ?> -
-
-
-
-
-
- - \ No newline at end of file diff --git a/application/views/viewfullpurchaseorder.php b/application/views/viewfullpurchaseorder.php old mode 100755 new mode 100644 index 7e5632be..5796fa26 --- a/application/views/viewfullpurchaseorder.php +++ b/application/views/viewfullpurchaseorder.php @@ -1,89 +1,89 @@ - - -
- - - -
-
-
-
-
-

Siddharth Industries - Purchase Order Full List

-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
#PONO#Request ByRequest DeptPO DateDelivery DateSupplier NameOrderd QuantityRecived QuantityRemarks
PONO ?>saravana Admin PODate ?>DeliveryDate ?>SupplierName ?>10000 kgs
-
- -
- - -
- -
- -
- -
- - \ No newline at end of file diff --git a/application/views/viewinwardgateregister.php b/application/views/viewinwardgateregister.php old mode 100755 new mode 100644 diff --git a/application/views/viewrawmaterial.php b/application/views/viewrawmaterial.php deleted file mode 100755 index 949a53fb..00000000 --- a/application/views/viewrawmaterial.php +++ /dev/null @@ -1,146 +0,0 @@ -MaterialCode; - $MaterialName = $uf->MaterialName; - $MaterialType = $uf->MaterialType; - $UOM = $uf->UOM; - $CreatedBy = $uf->CreatedBy; - $UpdatedBy = $uf->UpdatedBy; - - } -} - - -?> - -
- -
-

-
Raw Material List
- -

-
- -
-
- Back -
-
-
- -
- - - - -
-
-

View Raw Material Details

-
- - - -
-
- -
-
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- - - -
-
-
- load->helper('form'); - $error = $this->session->flashdata('error'); - if($error) - { - ?> -
- - session->flashdata('error'); ?> -
- - session->flashdata('success'); - if($success) - { - ?> -
- - session->flashdata('success'); ?> -
- - -
-
- ', '
'); ?> -
-
-
-
- -
- - - \ No newline at end of file diff --git a/application/views/viewsupplier.php b/application/views/viewsupplier.php deleted file mode 100755 index 2557c507..00000000 --- a/application/views/viewsupplier.php +++ /dev/null @@ -1,230 +0,0 @@ -SupplierID; - $SupplierName = $uf->SupplierName; - $Address = $uf->Address; - $ContactNumber = $uf->ContactNumber; - $AlternateContactNumber = $uf->AlternateContactNumber; - $EmailAddress = $uf->EmailAddress; - $TIN = $uf->TIN; - $PAN = $uf->PAN; - $GSTNO = $uf->GSTNO; - $GSTRange = $uf->GSTRange; - $CollectrateAddress = $uf->CollectrateAddress; - $UANumber = $uf->UANumber; - $PaymentTerms = $uf->PaymentTerms; - $PaymentDays = $uf->PaymentDays; - $PayableAT = $uf->PayableAT; - $Createdby = $uf->Createdby; - $UpdatedBy = $uf->UpdatedBy; - } -} - - -?> - -
- -
-

-
Supplier Details
- -

-
- -
-
- -
-
- Back -
-
-
- -
- - - - -
-
- -

View Supplier Details

-
- - - -
-
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
- - - -
-
-
- load->helper('form'); - $error = $this->session->flashdata('error'); - if($error) - { - ?> -
- - session->flashdata('error'); ?> -
- - session->flashdata('success'); - if($success) - { - ?> -
- - session->flashdata('success'); ?> -
- - -
-
- ', '
'); ?> -
-
-
-
-
-
- - \ No newline at end of file diff --git a/assets/bootstrap/css/bootstrap.css b/assets/bootstrap/css/bootstrap.css old mode 100755 new mode 100644 diff --git a/assets/bootstrap/css/bootstrap.css.map b/assets/bootstrap/css/bootstrap.css.map old mode 100755 new mode 100644 diff --git a/assets/bootstrap/css/bootstrap.min.css b/assets/bootstrap/css/bootstrap.min.css old mode 100755 new mode 100644 diff --git a/assets/bootstrap/fonts/glyphicons-halflings-regular.eot b/assets/bootstrap/fonts/glyphicons-halflings-regular.eot old mode 100755 new mode 100644 diff --git a/assets/bootstrap/fonts/glyphicons-halflings-regular.svg b/assets/bootstrap/fonts/glyphicons-halflings-regular.svg old mode 100755 new mode 100644 diff --git a/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf b/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf old mode 100755 new mode 100644 diff --git a/assets/bootstrap/fonts/glyphicons-halflings-regular.woff b/assets/bootstrap/fonts/glyphicons-halflings-regular.woff old mode 100755 new mode 100644 diff --git a/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2 b/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2 old mode 100755 new mode 100644 diff --git a/assets/bootstrap/js/bootstrap.js b/assets/bootstrap/js/bootstrap.js old mode 100755 new mode 100644 diff --git a/assets/bootstrap/js/bootstrap.min.js b/assets/bootstrap/js/bootstrap.min.js old mode 100755 new mode 100644 diff --git a/assets/bootstrap/js/npm.js b/assets/bootstrap/js/npm.js old mode 100755 new mode 100644 diff --git a/assets/css/animate.css b/assets/css/animate.css old mode 100755 new mode 100644 diff --git a/assets/css/bootstrap.css b/assets/css/bootstrap.css old mode 100755 new mode 100644 diff --git a/assets/css/bootstrap.min.css b/assets/css/bootstrap.min.css old mode 100755 new mode 100644 diff --git a/assets/css/patterns/congruent_pentagon.png b/assets/css/patterns/congruent_pentagon.png old mode 100755 new mode 100644 diff --git a/assets/css/patterns/header-profile-skin-1.png b/assets/css/patterns/header-profile-skin-1.png old mode 100755 new mode 100644 diff --git a/assets/css/patterns/header-profile-skin-2.png b/assets/css/patterns/header-profile-skin-2.png old mode 100755 new mode 100644 diff --git a/assets/css/patterns/header-profile-skin-3.png b/assets/css/patterns/header-profile-skin-3.png old mode 100755 new mode 100644 diff --git a/assets/css/patterns/header-profile.png b/assets/css/patterns/header-profile.png old mode 100755 new mode 100644 diff --git a/assets/css/patterns/otis_redding.png b/assets/css/patterns/otis_redding.png old mode 100755 new mode 100644 diff --git a/assets/css/patterns/shattered.png b/assets/css/patterns/shattered.png old mode 100755 new mode 100644 diff --git a/assets/css/patterns/triangular.png b/assets/css/patterns/triangular.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/css/blueimp-gallery-indicator.css b/assets/css/plugins/blueimp/css/blueimp-gallery-indicator.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/css/blueimp-gallery-video.css b/assets/css/plugins/blueimp/css/blueimp-gallery-video.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/css/blueimp-gallery.css b/assets/css/plugins/blueimp/css/blueimp-gallery.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/css/blueimp-gallery.min.css b/assets/css/plugins/blueimp/css/blueimp-gallery.min.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/css/demo.css b/assets/css/plugins/blueimp/css/demo.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/img/error.png b/assets/css/plugins/blueimp/img/error.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/img/error.svg b/assets/css/plugins/blueimp/img/error.svg old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/img/loading.gif b/assets/css/plugins/blueimp/img/loading.gif old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/img/play-pause.png b/assets/css/plugins/blueimp/img/play-pause.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/img/play-pause.svg b/assets/css/plugins/blueimp/img/play-pause.svg old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/img/video-play.png b/assets/css/plugins/blueimp/img/video-play.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/blueimp/img/video-play.svg b/assets/css/plugins/blueimp/img/video-play.svg old mode 100755 new mode 100644 diff --git a/assets/css/plugins/bootstrap-rtl/bootstrap-rtl.css b/assets/css/plugins/bootstrap-rtl/bootstrap-rtl.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/bootstrap-rtl/bootstrap-rtl.css.map b/assets/css/plugins/bootstrap-rtl/bootstrap-rtl.css.map old mode 100755 new mode 100644 diff --git a/assets/css/plugins/bootstrap-rtl/bootstrap-rtl.min.css b/assets/css/plugins/bootstrap-rtl/bootstrap-rtl.min.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/chosen/chosen-sprite.png b/assets/css/plugins/chosen/chosen-sprite.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/chosen/chosen-sprite@2x.png b/assets/css/plugins/chosen/chosen-sprite@2x.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/chosen/chosen.css b/assets/css/plugins/chosen/chosen.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/codemirror/ambiance.css b/assets/css/plugins/codemirror/ambiance.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/codemirror/codemirror.css b/assets/css/plugins/codemirror/codemirror.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/colorpicker/bootstrap-colorpicker.min.css b/assets/css/plugins/colorpicker/bootstrap-colorpicker.min.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/cropper/cropper.min.css b/assets/css/plugins/cropper/cropper.min.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/dataTables/dataTables.bootstrap.css b/assets/css/plugins/dataTables/dataTables.bootstrap.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/dataTables/dataTables.responsive.css b/assets/css/plugins/dataTables/dataTables.responsive.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/dataTables/dataTables.tableTools.min.css b/assets/css/plugins/dataTables/dataTables.tableTools.min.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/datapicker/datepicker3.css b/assets/css/plugins/datapicker/datepicker3.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/dropzone/basic.css b/assets/css/plugins/dropzone/basic.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/dropzone/dropzone.css b/assets/css/plugins/dropzone/dropzone.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/fullcalendar/fullcalendar.css b/assets/css/plugins/fullcalendar/fullcalendar.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/fullcalendar/fullcalendar.print.css b/assets/css/plugins/fullcalendar/fullcalendar.print.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/iCheck/custom.css b/assets/css/plugins/iCheck/custom.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/iCheck/green.png b/assets/css/plugins/iCheck/green.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/iCheck/green@2x.png b/assets/css/plugins/iCheck/green@2x.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/bootstrap-colorpicker/alpha-horizontal.png b/assets/css/plugins/images/bootstrap-colorpicker/alpha-horizontal.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/bootstrap-colorpicker/alpha.png b/assets/css/plugins/images/bootstrap-colorpicker/alpha.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/bootstrap-colorpicker/hue-horizontal.png b/assets/css/plugins/images/bootstrap-colorpicker/hue-horizontal.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/bootstrap-colorpicker/hue.png b/assets/css/plugins/images/bootstrap-colorpicker/hue.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/bootstrap-colorpicker/saturation.png b/assets/css/plugins/images/bootstrap-colorpicker/saturation.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/sort.png b/assets/css/plugins/images/sort.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/sort_asc.png b/assets/css/plugins/images/sort_asc.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/sort_desc.png b/assets/css/plugins/images/sort_desc.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/sprite-skin-flat.png b/assets/css/plugins/images/sprite-skin-flat.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/sprite-skin-flat2.png b/assets/css/plugins/images/sprite-skin-flat2.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/sprite-skin-nice.png b/assets/css/plugins/images/sprite-skin-nice.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/sprite-skin-simple.png b/assets/css/plugins/images/sprite-skin-simple.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/spritemap.png b/assets/css/plugins/images/spritemap.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/images/spritemap@2x.png b/assets/css/plugins/images/spritemap@2x.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/ionRangeSlider/ion.rangeSlider.css b/assets/css/plugins/ionRangeSlider/ion.rangeSlider.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/ionRangeSlider/ion.rangeSlider.skinFlat.css b/assets/css/plugins/ionRangeSlider/ion.rangeSlider.skinFlat.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/ionRangeSlider/ion.rangeSlider.skinNice.css b/assets/css/plugins/ionRangeSlider/ion.rangeSlider.skinNice.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/ionRangeSlider/ion.rangeSlider.skinSimple.css b/assets/css/plugins/ionRangeSlider/ion.rangeSlider.skinSimple.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/animated-overlay.gif b/assets/css/plugins/jQueryUI/images/animated-overlay.gif old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-bg_flat_0_aaaaaa_40x100.png b/assets/css/plugins/jQueryUI/images/ui-bg_flat_0_aaaaaa_40x100.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-bg_flat_75_ffffff_40x100.png b/assets/css/plugins/jQueryUI/images/ui-bg_flat_75_ffffff_40x100.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-bg_glass_55_fbf9ee_1x400.png b/assets/css/plugins/jQueryUI/images/ui-bg_glass_55_fbf9ee_1x400.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-bg_glass_65_ffffff_1x400.png b/assets/css/plugins/jQueryUI/images/ui-bg_glass_65_ffffff_1x400.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-bg_glass_75_dadada_1x400.png b/assets/css/plugins/jQueryUI/images/ui-bg_glass_75_dadada_1x400.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-bg_glass_75_e6e6e6_1x400.png b/assets/css/plugins/jQueryUI/images/ui-bg_glass_75_e6e6e6_1x400.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-bg_glass_95_fef1ec_1x400.png b/assets/css/plugins/jQueryUI/images/ui-bg_glass_95_fef1ec_1x400.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/assets/css/plugins/jQueryUI/images/ui-bg_highlight-soft_75_cccccc_1x100.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-icons_222222_256x240.png b/assets/css/plugins/jQueryUI/images/ui-icons_222222_256x240.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-icons_2e83ff_256x240.png b/assets/css/plugins/jQueryUI/images/ui-icons_2e83ff_256x240.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-icons_454545_256x240.png b/assets/css/plugins/jQueryUI/images/ui-icons_454545_256x240.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-icons_888888_256x240.png b/assets/css/plugins/jQueryUI/images/ui-icons_888888_256x240.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/images/ui-icons_cd0a0a_256x240.png b/assets/css/plugins/jQueryUI/images/ui-icons_cd0a0a_256x240.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jQueryUI/jquery-ui-1.10.4.custom.min.css b/assets/css/plugins/jQueryUI/jquery-ui-1.10.4.custom.min.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jasny/jasny-bootstrap.min.css b/assets/css/plugins/jasny/jasny-bootstrap.min.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jqGrid/ui.jqgrid.css b/assets/css/plugins/jqGrid/ui.jqgrid.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jsTree/32px.png b/assets/css/plugins/jsTree/32px.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jsTree/39px.png b/assets/css/plugins/jsTree/39px.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jsTree/40px.png b/assets/css/plugins/jsTree/40px.png old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jsTree/style.css b/assets/css/plugins/jsTree/style.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jsTree/style.min.css b/assets/css/plugins/jsTree/style.min.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/jsTree/throbber.gif b/assets/css/plugins/jsTree/throbber.gif old mode 100755 new mode 100644 diff --git a/assets/css/plugins/morris/morris-0.4.3.min.css b/assets/css/plugins/morris/morris-0.4.3.min.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/nouslider/jquery.nouislider.css b/assets/css/plugins/nouslider/jquery.nouislider.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/social-buttons/social-buttons.css b/assets/css/plugins/social-buttons/social-buttons.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/steps/jquery.steps.css b/assets/css/plugins/steps/jquery.steps.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/summernote/summernote-bs3.css b/assets/css/plugins/summernote/summernote-bs3.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/summernote/summernote.css b/assets/css/plugins/summernote/summernote.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/switchery/switchery.css b/assets/css/plugins/switchery/switchery.css old mode 100755 new mode 100644 diff --git a/assets/css/plugins/toastr/toastr.min.css b/assets/css/plugins/toastr/toastr.min.css old mode 100755 new mode 100644 diff --git a/assets/css/style.css b/assets/css/style.css old mode 100755 new mode 100644 diff --git a/assets/css/style.min.css b/assets/css/style.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/AdminLTE.css b/assets/dist/css/AdminLTE.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/AdminLTE.min.css b/assets/dist/css/AdminLTE.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/add.png b/assets/dist/css/images/add.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/bg.gif b/assets/dist/css/images/bg.gif old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/btn-sprite.gif b/assets/dist/css/images/btn-sprite.gif old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/close.png b/assets/dist/css/images/close.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/ddn.png b/assets/dist/css/images/ddn.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/dn.png b/assets/dist/css/images/dn.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/edit.png b/assets/dist/css/images/edit.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/error.png b/assets/dist/css/images/error.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/export.png b/assets/dist/css/images/export.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/fhbg.gif b/assets/dist/css/images/fhbg.gif old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/first.gif b/assets/dist/css/images/first.gif old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/hl.png b/assets/dist/css/images/hl.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/index.html b/assets/dist/css/images/index.html old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/last.gif b/assets/dist/css/images/last.gif old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/line.gif b/assets/dist/css/images/line.gif old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/load.gif b/assets/dist/css/images/load.gif old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/load.png b/assets/dist/css/images/load.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/magnifier.png b/assets/dist/css/images/magnifier.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/next.gif b/assets/dist/css/images/next.gif old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/prev.gif b/assets/dist/css/images/prev.gif old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/print.png b/assets/dist/css/images/print.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/success.png b/assets/dist/css/images/success.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/up.png b/assets/dist/css/images/up.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/uup.png b/assets/dist/css/images/uup.png old mode 100755 new mode 100644 diff --git a/assets/dist/css/images/wbg.gif b/assets/dist/css/images/wbg.gif old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/_all-skins.css b/assets/dist/css/skins/_all-skins.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/_all-skins.min.css b/assets/dist/css/skins/_all-skins.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-black-light.css b/assets/dist/css/skins/skin-black-light.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-black-light.min.css b/assets/dist/css/skins/skin-black-light.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-black.css b/assets/dist/css/skins/skin-black.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-black.min.css b/assets/dist/css/skins/skin-black.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-blue-light.css b/assets/dist/css/skins/skin-blue-light.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-blue-light.min.css b/assets/dist/css/skins/skin-blue-light.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-blue.css b/assets/dist/css/skins/skin-blue.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-blue.min.css b/assets/dist/css/skins/skin-blue.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-green-light.css b/assets/dist/css/skins/skin-green-light.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-green-light.min.css b/assets/dist/css/skins/skin-green-light.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-green.css b/assets/dist/css/skins/skin-green.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-green.min.css b/assets/dist/css/skins/skin-green.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-purple-light.css b/assets/dist/css/skins/skin-purple-light.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-purple-light.min.css b/assets/dist/css/skins/skin-purple-light.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-purple.css b/assets/dist/css/skins/skin-purple.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-purple.min.css b/assets/dist/css/skins/skin-purple.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-red-light.css b/assets/dist/css/skins/skin-red-light.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-red-light.min.css b/assets/dist/css/skins/skin-red-light.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-red.css b/assets/dist/css/skins/skin-red.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-red.min.css b/assets/dist/css/skins/skin-red.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-yellow-light.css b/assets/dist/css/skins/skin-yellow-light.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-yellow-light.min.css b/assets/dist/css/skins/skin-yellow-light.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-yellow.css b/assets/dist/css/skins/skin-yellow.css old mode 100755 new mode 100644 diff --git a/assets/dist/css/skins/skin-yellow.min.css b/assets/dist/css/skins/skin-yellow.min.css old mode 100755 new mode 100644 diff --git a/assets/dist/img/avatar.png b/assets/dist/img/avatar.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/avatar04.png b/assets/dist/img/avatar04.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/avatar2.png b/assets/dist/img/avatar2.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/avatar3.png b/assets/dist/img/avatar3.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/avatar5.png b/assets/dist/img/avatar5.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/boxed-bg.jpg b/assets/dist/img/boxed-bg.jpg old mode 100755 new mode 100644 diff --git a/assets/dist/img/boxed-bg.png b/assets/dist/img/boxed-bg.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/credit/american-express.png b/assets/dist/img/credit/american-express.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/credit/cirrus.png b/assets/dist/img/credit/cirrus.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/credit/mastercard.png b/assets/dist/img/credit/mastercard.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/credit/mestro.png b/assets/dist/img/credit/mestro.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/credit/paypal.png b/assets/dist/img/credit/paypal.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/credit/paypal2.png b/assets/dist/img/credit/paypal2.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/credit/visa.png b/assets/dist/img/credit/visa.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/default-50x50.gif b/assets/dist/img/default-50x50.gif old mode 100755 new mode 100644 diff --git a/assets/dist/img/icons.png b/assets/dist/img/icons.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/logo.png b/assets/dist/img/logo.png old mode 100755 new mode 100644 diff --git a/assets/dist/img/red.png b/assets/dist/img/red.png old mode 100755 new mode 100644 diff --git a/assets/dist/jquery.loader.css b/assets/dist/jquery.loader.css old mode 100755 new mode 100644 diff --git a/assets/dist/jquery.loader.js b/assets/dist/jquery.loader.js old mode 100755 new mode 100644 diff --git a/assets/dist/js/app.js b/assets/dist/js/app.js old mode 100755 new mode 100644 diff --git a/assets/dist/js/app.min.js b/assets/dist/js/app.min.js old mode 100755 new mode 100644 diff --git a/assets/dist/js/demo.js b/assets/dist/js/demo.js old mode 100755 new mode 100644 diff --git a/assets/dist/js/pages/dashboard.js b/assets/dist/js/pages/dashboard.js old mode 100755 new mode 100644 diff --git a/assets/dist/js/pages/dashboard2.js b/assets/dist/js/pages/dashboard2.js old mode 100755 new mode 100644 diff --git a/assets/dist/loader.gif b/assets/dist/loader.gif old mode 100755 new mode 100644 diff --git a/assets/dist/sweetalert.css b/assets/dist/sweetalert.css old mode 100755 new mode 100644 diff --git a/assets/dist/sweetalert.min.js b/assets/dist/sweetalert.min.js old mode 100755 new mode 100644 diff --git a/assets/email_templates/action.html b/assets/email_templates/action.html old mode 100755 new mode 100644 diff --git a/assets/email_templates/alert.html b/assets/email_templates/alert.html old mode 100755 new mode 100644 diff --git a/assets/email_templates/billing.html b/assets/email_templates/billing.html old mode 100755 new mode 100644 diff --git a/assets/email_templates/img/header.jpg b/assets/email_templates/img/header.jpg old mode 100755 new mode 100644 diff --git a/assets/email_templates/styles.css b/assets/email_templates/styles.css old mode 100755 new mode 100644 diff --git a/assets/flexigrid.css b/assets/flexigrid.css deleted file mode 100755 index e4c6109f..00000000 --- a/assets/flexigrid.css +++ /dev/null @@ -1,1455 +0,0 @@ -@charset "UTF-8"; -table th -{ - padding:0px; - margin:0px; -} - -/* CSS Document */ -.flexigrid { - font-family:Arial,Helvetica,sans-serif; - font-size:14px; - position:relative; - border:0px solid #eee; - overflow:hidden; - color:#000; -} -.flexigrid.crud-form -{ - overflow:visible; -} -.flexigrid .field-sorting -{ - cursor: pointer; -} -.flexigrid.hideBody { - height:26px !important; - border-bottom:1px solid #ccc; -} -.ie6fullwidthbug { - border-right:0px solid #ccc; - padding-right:2px; -} -.flexigrid div.nDiv { - background:#eee url(images/line.gif) repeat-y -1px top; - border:1px solid #ccc; - border-top:0px; - overflow:auto; - left:0px; - position:absolute; - z-index:999; - float:left; -} -.flexigrid div.nDiv table { - margin:2px; -} -.flexigrid div.hDivBox { - padding-right:40px; -} -.flexigrid div.bDiv table { - margin-bottom:10px; - width: 100%; -} -.flexigrid div.bDiv table.autoht { - border-bottom:0px; - margin-bottom:0px; -} -.flexigrid div.nDiv td { - padding:2px 3px; - border:1px solid #eee; - cursor:default; -} -.flexigrid div.nDiv tr:hover td,.flexigrid div.nDiv tr.ndcolover td { - background:#d5effc url(images/hl.png) repeat-x top; - border:1px solid #a8d8eb; -} -.flexigrid div.nDiv td.ndcol1 { - border-right:1px solid #ccc; -} -.flexigrid div.nDiv td.ndcol2 { - border-left:1px solid #fff; - padding-right:10px; -} -.flexigrid div.nDiv tr:hover td.ndcol1,.flexigrid div.nDiv tr.ndcolover td.ndcol1 { - border-right:1px solid #d2e3ec; -} -.flexigrid div.nDiv tr:hover td.ndcol2,.flexigrid div.nDiv tr.ndcolover td.ndcol2 { - border-left:1px solid #eef8ff; -} -.flexigrid div.nBtn { - position:absolute; - height:24px; - width:14px; - z-index:900; - background:#fafafa url(images/fhbg.gif) repeat-x bottom; - border:0px solid #ccc; - border-left:1px solid #ccc; - top:0px; - left:0px; - margin-top:1px; - cursor:pointer; - display:none; -} -.flexigrid div.nBtn div { - height:24px; - width:12px; - border-left:1px solid #fff; - float:left; - background:url(images/ddn.png) no-repeat center; -} -.flexigrid div.nBtn.srtd { - background:url(images/wbg.gif) repeat-x 0px -1px; -} -.flexigrid div.mDiv { - background:url(images/wbg.gif) repeat-x top; - border:1px solid #ccc; - border-bottom:0px; - border-top:0px; - font-weight:bold; - display:block; - overflow:hidden; - white-space:nowrap; - position:relative; -} -.flexigrid div.mDiv div { - padding:6px; - white-space:nowrap; -} -.flexigrid div.mDiv div.ptogtitle { - position:absolute; - top:4px; - right:3px; - padding:0px; - height:16px; - width:16px; - overflow:hidden; - border:1px solid #ccc; - cursor:pointer; -} -.flexigrid div.mDiv div.ptogtitle:hover { - background-position:left -2px; - border-color:#bbb; -} -.flexigrid div.mDiv div.ptogtitle span { - display:block; - border-left:1px solid #eee; - border-top:1px solid #fff; - border-bottom:1px solid #ddd; - width:14px; - height:14px; - background:url(images/uup.png) no-repeat center; -} -.flexigrid div.mDiv div.ptogtitle.vsble span { - background:url(images/ddn.png) no-repeat center; -} -.flexigrid div.tDiv /*toolbar*/ { - background:#fafafa url(images/bg.gif) repeat-x top; - position:relative; - border:1px solid #ccc; - border-bottom:0px; - overflow:hidden; -} -.flexigrid div.tDiv2 { - float:left; - padding:1px; -} -.flexigrid div.tDiv3 { - float:right; - padding:1px; -} -.flexigrid div.sDiv /*toolbar*/ { - background:#fafafa url(images/bg.gif) repeat-x top; - position:relative; - border:1px solid #ccc; - border-top:0px; - overflow:hidden; -} -.flexigrid div.sDiv2 { - float:left; - clear:both; - padding:5px; - padding-left:5px; - width:604px; -} -.flexigrid div.sDiv2 input,.flexigrid div.sDiv2 select { - vertical-align:middle; -} -.flexigrid.crud-form select -{ - min-width: 200px; -} -.flexigrid div.btnseparator { - float:left; - height:22px; - border-left:1px solid #ccc; - border-right:1px solid #fff; - margin:1px; -} -.flexigrid div.fbutton { - float:left; - display:block; - cursor:pointer; - padding:1px; -} -.flexigrid div.fbutton div { - float:left; - padding:1px 3px; -} -.flexigrid div.fbutton span { - float:left; - display:block; - padding:3px; -} -.flexigrid div.fbutton span.add { - background:url(images/add.png) no-repeat; - background-position: 0px 3px; - padding-left: 20px; -} -.flexigrid div.fbutton span.export { - background:url(images/export.png) no-repeat; - background-position: 0px 3px; - padding-left: 20px; -} -.flexigrid div.fbutton span.print { - background:url(images/print.png) no-repeat; - background-position: 0px 3px; - padding-left: 20px; -} -.flexigrid div.fbutton span.delete { - background:url(images/close.png) no-repeat; - padding-left: 20px; -} -.flexigrid div.fbutton:hover,.flexigrid div.fbutton.fbOver { - padding:0px; - border:1px solid #ccc; -} -.flexigrid div.fbutton:hover div,.flexigrid div.fbutton.fbOver div { - padding:0px 2px; - border-left:1px solid #fff; - border-top:1px solid #fff; - border-right:1px solid #eee; - border-bottom: 1px solid #eee; -} -/* end toolbar*/ -.flexigrid div.hDiv table { - border-right:1px solid #fff; -} -.flexigrid table tr.hDiv -{ - background:#fafafa url(images/fhbg.gif) repeat-x bottom; - position:relative; - border:1px solid #ccc; - border-bottom:0px; - overflow:hidden; -} -.flexigrid div.cDrag { - float:left; - position:absolute; - z-index:2; - overflow:visible; -} -.flexigrid div.cDrag div { - float:left; - background:none; - display:block; - position:absolute; - height:24px; - width:5px; - cursor:col-resize; -} -.flexigrid div.cDrag div:hover,.flexigrid div.cDrag div.dragging { - background:url(images/line.gif) repeat-y 2px center; -} -.flexigrid div.iDiv { - border:1px solid #316ac5; - position:absolute; - overflow:visible; - background:none; -} -.flexigrid div.iDiv input,.flexigrid div.iDiv select,.flexigrid div.iDiv textarea { - font-family:Arial,Helvetica,sans-serif; - font-size:11px; -} -.flexigrid div.iDiv input.tb { - border:0px; - padding:0px; - width:100%; - height:100%; - padding:0px; - background:none; -} -.flexigrid div.bDiv { - border:1px solid #ccc; - border-top:0px; - background:#fff; - overflow:auto; - position:relative; -} -.flexigrid div.form-div { - border:1px solid #ccc; - border-top:0px; - background:#fff; - position:relative; - font-size:15px; - padding:0px 0px 10px 0px; -} -.flexigrid div.form-div select -{ - font-size: 15px; - border: 1px solid #AAA; - padding: 5px 5px 5px 5px; - background: #fafafa; -} -.flexigrid div.form-div select option -{ - padding-right: 10px; -} -.flexigrid div.form-div input[type=text], .flexigrid div.form-div input[type=password] -{ - font-size: 15px; - height:20px; - border: 1px solid #AAA; - padding: 5px 5px 5px 5px; -} -.flexigrid input[type=text].form-control { - width: 500px; -} -.flexigrid div.form-div textarea -{ - font-size: 15px; - border: 1px solid #AAA; - padding: 5px 5px 5px 5px; - background: #fafafa; -} - -.flexigrid div.form-div textarea:hover, -.flexigrid div.form-div input[type=text]:hover, -.flexigrid div.form-div select:hover -{ - border: 1px solid #555; - background: #fff; -} -.flexigrid div.form-div textarea:focus, .flexigrid div.form-div input[type=text]:focus, .flexigrid div.form-div select:focus -{ - border: 1px solid #444; -} -div.form-div input.datepicker-input -{ - width: 100px !important; -} -div.form-div input.datetime-input -{ - width:150px !important; -} -.form-field-box -{ - padding: 5px 10px; - margin: 0px 0px 5px 0px; - min-height: 30px; -} -.form-field-box.odd -{ - background: #fff; -} -.form-field-box.even -{ - background: #EFEFEF; -} -.form-display-as-box -{ - float:left; - width:200px; - padding-top:7px; -} -.form-input-box -{ - float:left; -} -.flexigrid div.form-button-box { - float:left; - margin-top:11px; - margin-left:10px; -} -.flexigrid div.bDiv table { - border-bottom:1px solid #ccc; -} -.flexigrid div.hGrip { - position:absolute; - top:0px; - right:0px; - height:5px; - width:5px; - background:url(images/line.gif) repeat-x center; - margin-right:1px; - cursor:col-resize; -} -.flexigrid div.hGrip:hover,.flexigrid div.hGrip.hgOver { - border-right:1px solid #999; - margin-right:0px; -} -.flexigrid div.vGrip { - height:5px; - overflow:hidden; - position:relative; - background:#fafafa url(images/wbg.gif) repeat-x 0px -1px; - border:1px solid #ccc; - border-top:0px; - text-align:center; - cursor:row-resize; -} -.flexigrid div.vGrip span { - display:block; - margin:1px auto; - width:20px; - height:1px; - overflow:hidden; - border-top:1px solid #aaa; - border-bottom:1px solid #aaa; - background:none; -} -.flexigrid table tr.hDiv th,.flexigrid div.bDiv td /* common cell properties*/ { - text-align:left; - border-right:1px solid #ddd; - border-left:1px solid #fff; - overflow:hidden; - vertical-align:top !important; -} -.flexigrid table tr.hDiv th div,.flexigrid div.bDiv td div,div.colCopy div/* common inner cell properties*/ { - padding:5px; - border-left:0px solid #fff; -} -.flexigrid div.hDiv th,div.colCopy { - font-weight:normal; - height:24px; - cursor:default; - white-space:nowrap; - overflow:hidden; -} -div.colCopy { - font-family:Arial,Helvetica,sans-serif; - font-size:11px; - background:#fafafa url(images/fhbg.gif) repeat-x bottom; - border:1px solid #ccc; - border-bottom:0px; - overflow:hidden; -} -.flexigrid div.hDiv th.sorted { - background:url(images/wbg.gif) repeat-x 0px -1px; - border-bottom:0px solid #ccc; -} -.flexigrid div.hDiv th.thOver { -} -.flexigrid div.hDiv th.thOver div,.flexigrid div.hDiv th.sorted.thOver div { - border-bottom:1px solid orange; - padding-bottom:4px; -} -.flexigrid div.hDiv th.sorted div { - border-bottom:0px solid #ccc; - padding-bottom:5px; -} -.flexigrid div.hDiv th.thMove { - background:#fff; - color:#fff; -} -.flexigrid div.hDiv th.sorted.thMove div { - border-bottom:1px solid #fff; - padding-bottom:4px -} -.flexigrid div.hDiv th.thMove div { - background:#fff !important; -} -.flexigrid table tr.hDiv th div.desc { - background:url(images/dn.png) no-repeat center top; -} -.flexigrid table tr.hDiv th div.asc { - background:url(images/up.png) no-repeat center top; -} -.flexigrid div.bDiv td { - border-bottom:1px solid #fff; - vertical-align:top; - white-space:nowrap; -} -.flexigrid div.hDiv th div { - overflow:hidden; -} -.flexigrid span.cdropleft { - display:block; - background:url(images/prev.gif) no-repeat -4px center; - width:24px; - height:24px; - position:relative; - top:-24px; - margin-bottom:-24px; - z-index:3; -} -.flexigrid div.hDiv span.cdropright { - display:block; - background:url(images/next.gif) no-repeat 12px center; - width:24px; - height:24px; - float:right; - position:relative; - top:-24px; - margin-bottom:-24px; -} -.flexigrid div.bDiv td div { - border-top:0px solid #fff; - padding-bottom:4px; -} -.flexigrid tr td.sorted { - background:#f3f3f3; - border-right:1px solid #ddd; - border-bottom:1px solid #f3f3f3; -} -.flexigrid tr td.sorted div { -} -.flexigrid tr.erow td { - background:#f7f7f7; - border-bottom:1px solid #f7f7f7; -} -.flexigrid tr.erow td.sorted { - background:#e3e3e3; - border-bottom:1px solid #e3e3e3; -} -.flexigrid tr.erow td.sorted div { -} -.flexigrid div.bDiv tr:hover td,.flexigrid div.bDiv tr:hover td.sorted,.flexigrid div.bDiv tr.trOver td.sorted,.flexigrid div.bDiv tr.trOver td { - background:#d9ebf5; - border-left:1px solid #eef8ff; - border-bottom:1px dotted #a8d8eb; -} -.flexigrid div.bDiv tr.trSelected:hover td,.flexigrid div.bDiv tr.trSelected:hover td.sorted,.flexigrid div.bDiv tr.trOver.trSelected td.sorted,.flexigrid div.bDiv tr.trOver.trSelected td,.flexigrid tr.trSelected td.sorted,.flexigrid tr.trSelected td { - background:#d5effc url(images/hl.png) repeat-x top; - border-right:1px solid #d2e3ec; - border-left:1px solid #eef8ff; - border-bottom: 1px solid #a8d8eb; -} -/* novstripe adjustments */ -.flexigrid.novstripe .bDiv table { - border-bottom:1px solid #ccc; - border-right:1px solid #ccc; -} -.flexigrid.novstripe div.bDiv td { - border-right-color:#fff; -} -.flexigrid.novstripe div.bDiv tr.erow td.sorted { - border-right-color:#e3e3e3; -} -.flexigrid.novstripe div.bDiv tr td.sorted { - border-right-color:#f3f3f3; -} -.flexigrid.novstripe div.bDiv tr.erow td { - border-right-color:#f7f7f7; - border-left-color:#f7f7f7; -} -.flexigrid.novstripe div.bDiv tr.trSelected:hover td,.flexigrid.novstripe div.bDiv tr.trSelected:hover td.sorted,.flexigrid.novstripe div.bDiv tr.trOver.trSelected td.sorted,.flexigrid.novstripe div.bDiv tr.trOver.trSelected td,.flexigrid.novstripe tr.trSelected td.sorted,.flexigrid.novstripe tr.trSelected td { - border-right:1px solid #0066FF; - border-left:1px solid #0066FF; -} -.flexigrid.novstripe div.bDiv tr.trOver td,.flexigrid.novstripe div.bDiv tr:hover td { - border-left-color:#d9ebf5; - border-right-color: #d9ebf5; -} -/* end novstripe */ -.flexigrid div.pDiv { - background:url(images/wbg.gif) repeat-x 0 -1px; - border:1px solid #ccc; - border-top:0px; - overflow:hidden; - white-space:nowrap; - position:relative; -} -.flexigrid div.pDiv div.pDiv2 { - margin:3px; - margin-left:-2px; - float:left; - width:1024px; -} -div.pGroup { - float:left; - background:none; - height:24px; - margin:0px 5px; -} -.flexigrid div.pDiv .pPageStat,.flexigrid div.pDiv .pcontrol { - position:relative; - top:5px; - overflow:visible; -} -.flexigrid div.pDiv input, .flexigrid div.pDiv select { - vertical-align:text-top; - position:relative; - top:-5px; -} -.flexigrid div.pDiv input{ - top:-5px; -} -.flexigrid div.pDiv select { - top:-3px; -} -.flexigrid div.pDiv div.pButton { - float:left; - width:22px; - height:22px; - border:0px; - cursor:pointer; - overflow:hidden; -} -.flexigrid div.pDiv div.pButton:hover,.flexigrid div.pDiv div.pButton.pBtnOver { - width:20px; - height:20px; - border:1px solid #ccc; - cursor:pointer; -} -.flexigrid div.pDiv div.pButton span { - width:20px; - height:20px; - display:block; - float:left; -} -.flexigrid div.pDiv div.pButton:hover span,.flexigrid div.pDiv div.pButton.pBtnOver span { - width:19px; - height:19px; - border-top:1px solid #fff; - border-left:1px solid #fff; -} -.flexigrid .pSearch { - background:url(images/magnifier.png) no-repeat center; -} -.flexigrid .pFirst { - background:url(images/first.gif) no-repeat center; -} -.flexigrid .pPrev { - background:url(images/prev.gif) no-repeat center; -} -.flexigrid .pNext { - background:url(images/next.gif) no-repeat center; -} -.flexigrid .pLast { - background:url(images/last.gif) no-repeat center; -} -.flexigrid .pReload { - background:url(images/load.png) no-repeat center; -} -.flexigrid .pReload.loading,.flexigrid .fbutton.loading{ - background:url(images/load.gif) no-repeat center; -} -.flexigrid .simple-loading{ - background:url(images/load.gif) no-repeat center; - display:block; - float:left; - width: 16px; - height: 16px; -} -.flexigrid .search-div-clear-button -{ - float:right; - padding:5px; -} -.flexigrid .edit-icon -{ - background:url(images/edit.png) no-repeat; - cursor: pointer; - width: 16px; - height:16px; - float:right; - border: none !important; - padding:0px !important; - padding-bottom:0px !important; - margin-left:5px; - display: block; -} -.flexigrid .delete-icon -{ - background:url(images/close.png) no-repeat; - cursor: pointer; - width: 16px; - height:16px; - float:right; - border: none !important; - padding:0px !important; - padding-bottom:0px !important; - margin-left:5px; - display: block; -} -.flexigrid .read-icon -{ - background:url(images/magnifier.png) no-repeat center; - cursor: pointer; - width: 16px; - height:16px; - float:right; - border: none !important; - padding:0px !important; - padding-bottom:0px !important; - margin-left:5px; - display: block; -} -.flexigrid .tools -{ - white-space: nowrap; - padding:0px; - padding:5px 5px 3px 5px; -} - -/* Some extras */ - -.text-center -{ - text-align: center; -} -.text-left -{ - text-align: left; -} -.text-right -{ - text-align: right; -} -.add-anchor, .delete-anchor, .export-anchor, .print-anchor -{ - color: #000; -} -.floatL -{ - float:left; -} -.floatR -{ - float:right; -} -.clear -{ - clear: both !important; - border: none !important; - padding: 0px !important; - margin: 0px !important; - height:0px; - width:0px; -} -.flexigrid a img -{ - border: none; -} -.flexigrid textarea -{ - width:500px; - height: 80px; -} -/* ie adjustments */ -.flexigrid.ie div.hDiv th div,.flexigrid.ie div.bDiv td div,div.colCopy.ie div/* common inner cell properties*/ { - overflow: hidden; -} -.report-div -{ - padding: 10px; - border-style: solid; - border-width: 1px; - margin-bottom: 10px; - margin-top: 10px; - display:none; - font-family: Arial,Helvetica,sans-serif; -} -.report-div.success -{ - border-color: green; -} -.report-div.success p -{ - background: url(images/success.png) no-repeat left center; - margin: 0px !important; - padding: 10px 0px 10px 25px !important; -} -.report-div.error -{ - border-color: red; -} -.report-div.error p -{ - background: url(images/error.png) no-repeat left center; - margin: 0px !important; - padding: 10px 0px 10px 25px !important; -} -input.field_error -{ - border: 1px solid red !important; -} -.flexigrid .ftitle-left -{ - float: left; - margin:0px !important; - padding: 0px !important; -} -.flexigrid .ftitle-right -{ - float: right; - margin:0px; - padding:0px 25px 0px 0px !important; -} -div.flexigrid .ftitle a -{ - color: blue; - text-decoration: none; -} -div.flexigrid .ftitle a:hover -{ - text-decoration: underline; -} -div.flexigrid a -{ - color: blue; - text-decoration: none; -} -div.flexigrid a:hover -{ - text-decoration: underline; -} -.small-loading -{ - background: url('images/load.gif') no-repeat; - width:16px; - height:15px; - padding-left:25px; - padding-top:1px; - display: none; -} -.crud-action -{ - float:right; - margin-left:5px; - padding:0px; - margin-right: 3px; -} -.readonly_label -{ - padding-top:7px; -} -ul.chzn-choices li.search-field input -{ - box-shadow: none !important; -} -#crudForm .pDiv -{ - background: #FFF !important; - padding-top:10px; - padding-bottom:10px; - border-radius: 0px 0px 5px 5px; -} -textarea.texteditor, textarea.mini-texteditor -{ - width:750px; - height: 200px; -} -.flexigrid div.form-div{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;color: #444;} -.flexigrid div.form-div input[type=text],.flexigrid div.form-div textarea,.flexigrid div.form-div select{display:inline-block;line-height:18px;color:#444;border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.flexigrid div.form-div input[type=text],.flexigrid div.form-div select,.flexigrid div.form-div textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;} -.flexigrid div.form-div input[type=text]{line-height:normal;*overflow:visible;} -.flexigrid div.form-div input[type=text],.flexigrid div.form-div select,.flexigrid div.form-div textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:normal;line-height:normal;} -.flexigrid div.form-div input[type=text],.flexigrid div.form-div textarea{-webkit-transition:border linear 0.2s,box-shadow linear 0.2s;-moz-transition:border linear 0.2s,box-shadow linear 0.2s;-ms-transition:border linear 0.2s,box-shadow linear 0.2s;-o-transition:border linear 0.2s,box-shadow linear 0.2s;transition:border linear 0.2s,box-shadow linear 0.2s;-webkit-box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1);} -.flexigrid div.form-div input[type=text]:focus,.flexigrid div.form-div textarea:focus{outline:0;border-color:rgba(82, 168, 236, 0.8);-webkit-box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1),0 0 8px rgba(82, 168, 236, 0.6);-moz-box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1),0 0 8px rgba(82, 168, 236, 0.6);box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.1),0 0 8px rgba(82, 168, 236, 0.6);} - -/* Some beautiful twitter bootstrap buttons */ -.btn { - display: inline-block; - *display: inline; - padding: 4px 10px 4px; - margin-bottom: 0; - *margin-left: .3em; - font-size: 13px; - line-height: 18px; - *line-height: 20px; - color: #333333; - text-align: center; - text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); - vertical-align: middle; - cursor: pointer; - background-color: #f5f5f5; - *background-color: #e6e6e6; - background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); - background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); - background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); - background-image: linear-gradient(top, #ffffff, #e6e6e6); - background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); - background-repeat: repeat-x; - border: 1px solid #cccccc; - *border: 0; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - border-color: #e6e6e6 #e6e6e6 #bfbfbf; - border-bottom-color: #b3b3b3; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; - filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); - *zoom: 1; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -} - -.btn:hover, -.btn:active, -.btn.active, -.btn.disabled, -.btn[disabled] { - background-color: #e6e6e6; - *background-color: #d9d9d9; -} - -.btn:active, -.btn.active { - background-color: #cccccc \9; -} - -.btn:first-child { - *margin-left: 0; -} - -.btn:hover { - color: #333333; - text-decoration: none; - background-color: #e6e6e6; - *background-color: #d9d9d9; - /* Buttons in IE7 don't get borders, so darken on hover */ - - background-position: 0 -15px; - -webkit-transition: background-position 0.1s linear; - -moz-transition: background-position 0.1s linear; - -ms-transition: background-position 0.1s linear; - -o-transition: background-position 0.1s linear; - transition: background-position 0.1s linear; -} - -.btn:focus { - outline: thin dotted #333; - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -.btn.active, -.btn:active { - background-color: #e6e6e6; - background-color: #d9d9d9 \9; - background-image: none; - outline: 0; - -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -} - -.btn.disabled, -.btn[disabled] { - cursor: default; - background-color: #e6e6e6; - background-image: none; - opacity: 0.65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - -moz-box-shadow: none; - box-shadow: none; -} - -.btn-large { - padding: 9px 14px; - font-size: 15px; - line-height: normal; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; -} - -.btn-large [class^="icon-"] { - margin-top: 1px; -} - -.btn-small { - padding: 5px 9px; - font-size: 11px; - line-height: 16px; -} - -.btn-small [class^="icon-"] { - margin-top: -1px; -} - -.btn-mini { - padding: 2px 6px; - font-size: 11px; - line-height: 14px; -} - -.btn-primary, -.btn-primary:hover, -.btn-warning, -.btn-warning:hover, -.btn-danger, -.btn-danger:hover, -.btn-success, -.btn-success:hover, -.btn-info, -.btn-info:hover, -.btn-inverse, -.btn-inverse:hover { - color: #ffffff; - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} - -.btn-primary.active, -.btn-warning.active, -.btn-danger.active, -.btn-success.active, -.btn-info.active, -.btn-inverse.active { - color: rgba(255, 255, 255, 0.75); -} - -.btn { - border-color: #ccc; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); -} - -.btn-primary { - background-color: #0074cc; - *background-color: #0055cc; - background-image: -ms-linear-gradient(top, #0088cc, #0055cc); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc)); - background-image: -webkit-linear-gradient(top, #0088cc, #0055cc); - background-image: -o-linear-gradient(top, #0088cc, #0055cc); - background-image: -moz-linear-gradient(top, #0088cc, #0055cc); - background-image: linear-gradient(top, #0088cc, #0055cc); - background-repeat: repeat-x; - border-color: #0055cc #0055cc #003580; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} - -.btn-primary:hover, -.btn-primary:active, -.btn-primary.active, -.btn-primary.disabled, -.btn-primary[disabled] { - background-color: #0055cc; - *background-color: #004ab3; -} - -.btn-primary:active, -.btn-primary.active { - background-color: #004099 \9; -} - -.btn-warning { - background-color: #faa732; - *background-color: #f89406; - background-image: -ms-linear-gradient(top, #fbb450, #f89406); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); - background-image: -webkit-linear-gradient(top, #fbb450, #f89406); - background-image: -o-linear-gradient(top, #fbb450, #f89406); - background-image: -moz-linear-gradient(top, #fbb450, #f89406); - background-image: linear-gradient(top, #fbb450, #f89406); - background-repeat: repeat-x; - border-color: #f89406 #f89406 #ad6704; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} - -.btn-warning:hover, -.btn-warning:active, -.btn-warning.active, -.btn-warning.disabled, -.btn-warning[disabled] { - background-color: #f89406; - *background-color: #df8505; -} - -.btn-warning:active, -.btn-warning.active { - background-color: #c67605 \9; -} - -.btn-danger { - background-color: #da4f49; - *background-color: #bd362f; - background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); - background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); - background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); - background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); - background-image: linear-gradient(top, #ee5f5b, #bd362f); - background-repeat: repeat-x; - border-color: #bd362f #bd362f #802420; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} - -.btn-danger:hover, -.btn-danger:active, -.btn-danger.active, -.btn-danger.disabled, -.btn-danger[disabled] { - background-color: #bd362f; - *background-color: #a9302a; -} - -.btn-danger:active, -.btn-danger.active { - background-color: #942a25 \9; -} - -.btn-success { - background-color: #5bb75b; - *background-color: #51a351; - background-image: -ms-linear-gradient(top, #62c462, #51a351); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); - background-image: -webkit-linear-gradient(top, #62c462, #51a351); - background-image: -o-linear-gradient(top, #62c462, #51a351); - background-image: -moz-linear-gradient(top, #62c462, #51a351); - background-image: linear-gradient(top, #62c462, #51a351); - background-repeat: repeat-x; - border-color: #51a351 #51a351 #387038; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} - -.btn-success:hover, -.btn-success:active, -.btn-success.active, -.btn-success.disabled, -.btn-success[disabled] { - background-color: #51a351; - *background-color: #499249; -} - -.btn-success:active, -.btn-success.active { - background-color: #408140 \9; -} - -.btn-info { - background-color: #49afcd; - *background-color: #2f96b4; - background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); - background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); - background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); - background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); - background-image: linear-gradient(top, #5bc0de, #2f96b4); - background-repeat: repeat-x; - border-color: #2f96b4 #2f96b4 #1f6377; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} - -.btn-info:hover, -.btn-info:active, -.btn-info.active, -.btn-info.disabled, -.btn-info[disabled] { - background-color: #2f96b4; - *background-color: #2a85a0; -} - -.btn-info:active, -.btn-info.active { - background-color: #24748c \9; -} - -.btn-inverse { - background-color: #414141; - *background-color: #222222; - background-image: -ms-linear-gradient(top, #555555, #222222); - background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222)); - background-image: -webkit-linear-gradient(top, #555555, #222222); - background-image: -o-linear-gradient(top, #555555, #222222); - background-image: -moz-linear-gradient(top, #555555, #222222); - background-image: linear-gradient(top, #555555, #222222); - background-repeat: repeat-x; - border-color: #222222 #222222 #000000; - border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); - filter: progid:dximagetransform.microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0); - filter: progid:dximagetransform.microsoft.gradient(enabled=false); -} - -.btn-inverse:hover, -.btn-inverse:active, -.btn-inverse.active, -.btn-inverse.disabled, -.btn-inverse[disabled] { - background-color: #222222; - *background-color: #151515; -} - -.btn-inverse:active, -.btn-inverse.active { - background-color: #080808 \9; -} - -button.btn, -input[type="submit"].btn { - *padding-top: 2px; - *padding-bottom: 2px; -} - -button.btn::-moz-focus-inner, -input[type="submit"].btn::-moz-focus-inner { - padding: 0; - border: 0; -} - -button.btn.btn-large, -input[type="submit"].btn.btn-large { - *padding-top: 7px; - *padding-bottom: 7px; -} - -button.btn.btn-small, -input[type="submit"].btn.btn-small { - *padding-top: 3px; - *padding-bottom: 3px; -} - -button.btn.btn-mini, -input[type="submit"].btn.btn-mini { - *padding-top: 1px; - *padding-bottom: 1px; -} - -.btn-group { - position: relative; - *margin-left: .3em; - *zoom: 1; -} - -.btn-group:before, -.btn-group:after { - display: table; - content: ""; -} - -.btn-group:after { - clear: both; -} - -.btn-group:first-child { - *margin-left: 0; -} - -.btn-group + .btn-group { - margin-left: 5px; -} - -.btn-toolbar { - margin-top: 9px; - margin-bottom: 9px; -} - -.btn-toolbar .btn-group { - display: inline-block; - *display: inline; - /* IE7 inline-block hack */ - - *zoom: 1; -} - -.btn-group > .btn { - position: relative; - float: left; - margin-left: -1px; - -webkit-border-radius: 0; - -moz-border-radius: 0; - border-radius: 0; -} - -.btn-group > .btn:first-child { - margin-left: 0; - -webkit-border-bottom-left-radius: 4px; - border-bottom-left-radius: 4px; - -webkit-border-top-left-radius: 4px; - border-top-left-radius: 4px; - -moz-border-radius-bottomleft: 4px; - -moz-border-radius-topleft: 4px; -} - -.btn-group > .btn:last-child, -.btn-group > .dropdown-toggle { - -webkit-border-top-right-radius: 4px; - border-top-right-radius: 4px; - -webkit-border-bottom-right-radius: 4px; - border-bottom-right-radius: 4px; - -moz-border-radius-topright: 4px; - -moz-border-radius-bottomright: 4px; -} - -.btn-group > .btn.large:first-child { - margin-left: 0; - -webkit-border-bottom-left-radius: 6px; - border-bottom-left-radius: 6px; - -webkit-border-top-left-radius: 6px; - border-top-left-radius: 6px; - -moz-border-radius-bottomleft: 6px; - -moz-border-radius-topleft: 6px; -} - -.btn-group > .btn.large:last-child, -.btn-group > .large.dropdown-toggle { - -webkit-border-top-right-radius: 6px; - border-top-right-radius: 6px; - -webkit-border-bottom-right-radius: 6px; - border-bottom-right-radius: 6px; - -moz-border-radius-topright: 6px; - -moz-border-radius-bottomright: 6px; -} - -.btn-group > .btn:hover, -.btn-group > .btn:focus, -.btn-group > .btn:active, -.btn-group > .btn.active { - z-index: 2; -} - -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} - -.btn-group > .dropdown-toggle { - *padding-top: 4px; - padding-right: 8px; - *padding-bottom: 4px; - padding-left: 8px; - -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -} - -.btn-group > .btn-mini.dropdown-toggle { - padding-right: 5px; - padding-left: 5px; -} - -.btn-group > .btn-small.dropdown-toggle { - *padding-top: 4px; - *padding-bottom: 4px; -} - -.btn-group > .btn-large.dropdown-toggle { - padding-right: 12px; - padding-left: 12px; -} - -.btn-group.open .dropdown-toggle { - background-image: none; - -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); -} - -.btn-group.open .btn.dropdown-toggle { - background-color: #e6e6e6; -} - -.btn-group.open .btn-primary.dropdown-toggle { - background-color: #0055cc; -} - -.btn-group.open .btn-warning.dropdown-toggle { - background-color: #f89406; -} - -.btn-group.open .btn-danger.dropdown-toggle { - background-color: #bd362f; -} - -.btn-group.open .btn-success.dropdown-toggle { - background-color: #51a351; -} - -.btn-group.open .btn-info.dropdown-toggle { - background-color: #2f96b4; -} - -.btn-group.open .btn-inverse.dropdown-toggle { - background-color: #222222; -} - -.btn .caret { - margin-top: 7px; - margin-left: 0; -} - -.btn:hover .caret, -.open.btn-group .caret { - opacity: 1; - filter: alpha(opacity=100); -} - -.btn-mini .caret { - margin-top: 5px; -} - -.btn-small .caret { - margin-top: 6px; -} - -.btn-large .caret { - margin-top: 6px; - border-top-width: 5px; - border-right-width: 5px; - border-left-width: 5px; -} - -.dropup .btn-large .caret { - border-top: 0; - border-bottom: 5px solid #000000; -} - -.btn-primary .caret, -.btn-warning .caret, -.btn-danger .caret, -.btn-info .caret, -.btn-success .caret, -.btn-inverse .caret { - border-top-color: #ffffff; - border-bottom-color: #ffffff; - opacity: 0.75; - filter: alpha(opacity=75); -} - -/* End of twitter bootstrap buttons */ - -.pretty-radio-buttons -{ - margin-top: 6px; -} - -.pretty-radio-buttons label -{ - margin-right: 10px; -} -.ui-widget -{ - font-size: 12px !important; -} - - -/** Common CSS */ -.loading-opacity -{ - opacity: 0.5; - pointer-events: none; - cursor: default; -} - -.loading-opacity:before { - font-size: 26px; - position:absolute; - color: #000; - content: "Loading..."; - margin-left: 550px; - z-index: 1000; -} diff --git a/assets/font-awesome/css/font-awesome.css b/assets/font-awesome/css/font-awesome.css old mode 100755 new mode 100644 diff --git a/assets/font-awesome/css/font-awesome.min.css b/assets/font-awesome/css/font-awesome.min.css old mode 100755 new mode 100644 diff --git a/assets/font-awesome/fonts/FontAwesome.otf b/assets/font-awesome/fonts/FontAwesome.otf old mode 100755 new mode 100644 diff --git a/assets/font-awesome/fonts/fontawesome-webfont.eot b/assets/font-awesome/fonts/fontawesome-webfont.eot old mode 100755 new mode 100644 diff --git a/assets/font-awesome/fonts/fontawesome-webfont.svg b/assets/font-awesome/fonts/fontawesome-webfont.svg old mode 100755 new mode 100644 diff --git a/assets/font-awesome/fonts/fontawesome-webfont.ttf b/assets/font-awesome/fonts/fontawesome-webfont.ttf old mode 100755 new mode 100644 diff --git a/assets/font-awesome/fonts/fontawesome-webfont.woff b/assets/font-awesome/fonts/fontawesome-webfont.woff old mode 100755 new mode 100644 diff --git a/assets/font-awesome/fonts/fontawesome-webfont.woff2 b/assets/font-awesome/fonts/fontawesome-webfont.woff2 old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/animated.less b/assets/font-awesome/less/animated.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/bordered-pulled.less b/assets/font-awesome/less/bordered-pulled.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/core.less b/assets/font-awesome/less/core.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/fixed-width.less b/assets/font-awesome/less/fixed-width.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/font-awesome.less b/assets/font-awesome/less/font-awesome.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/icons.less b/assets/font-awesome/less/icons.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/larger.less b/assets/font-awesome/less/larger.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/list.less b/assets/font-awesome/less/list.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/mixins.less b/assets/font-awesome/less/mixins.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/path.less b/assets/font-awesome/less/path.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/rotated-flipped.less b/assets/font-awesome/less/rotated-flipped.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/spinning.less b/assets/font-awesome/less/spinning.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/stacked.less b/assets/font-awesome/less/stacked.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/less/variables.less b/assets/font-awesome/less/variables.less old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_animated.scss b/assets/font-awesome/scss/_animated.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_bordered-pulled.scss b/assets/font-awesome/scss/_bordered-pulled.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_core.scss b/assets/font-awesome/scss/_core.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_fixed-width.scss b/assets/font-awesome/scss/_fixed-width.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_icons.scss b/assets/font-awesome/scss/_icons.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_larger.scss b/assets/font-awesome/scss/_larger.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_list.scss b/assets/font-awesome/scss/_list.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_mixins.scss b/assets/font-awesome/scss/_mixins.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_path.scss b/assets/font-awesome/scss/_path.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_rotated-flipped.scss b/assets/font-awesome/scss/_rotated-flipped.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_spinning.scss b/assets/font-awesome/scss/_spinning.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_stacked.scss b/assets/font-awesome/scss/_stacked.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/_variables.scss b/assets/font-awesome/scss/_variables.scss old mode 100755 new mode 100644 diff --git a/assets/font-awesome/scss/font-awesome.scss b/assets/font-awesome/scss/font-awesome.scss old mode 100755 new mode 100644 diff --git a/assets/fonts/OpenSans/OpenSans-Bold.ttf b/assets/fonts/OpenSans/OpenSans-Bold.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/OpenSans/OpenSans-BoldItalic.ttf b/assets/fonts/OpenSans/OpenSans-BoldItalic.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/OpenSans/OpenSans-ExtraBold.ttf b/assets/fonts/OpenSans/OpenSans-ExtraBold.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf b/assets/fonts/OpenSans/OpenSans-ExtraBoldItalic.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/OpenSans/OpenSans-Italic.ttf b/assets/fonts/OpenSans/OpenSans-Italic.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/OpenSans/OpenSans-Light.ttf b/assets/fonts/OpenSans/OpenSans-Light.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/OpenSans/OpenSans-LightItalic.ttf b/assets/fonts/OpenSans/OpenSans-LightItalic.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/OpenSans/OpenSans-Regular.ttf b/assets/fonts/OpenSans/OpenSans-Regular.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/OpenSans/OpenSans-Semibold.ttf b/assets/fonts/OpenSans/OpenSans-Semibold.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/OpenSans/OpenSans-SemiboldItalic.ttf b/assets/fonts/OpenSans/OpenSans-SemiboldItalic.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/glyphicons-halflings-regular.eot b/assets/fonts/glyphicons-halflings-regular.eot old mode 100755 new mode 100644 diff --git a/assets/fonts/glyphicons-halflings-regular.svg b/assets/fonts/glyphicons-halflings-regular.svg old mode 100755 new mode 100644 diff --git a/assets/fonts/glyphicons-halflings-regular.ttf b/assets/fonts/glyphicons-halflings-regular.ttf old mode 100755 new mode 100644 diff --git a/assets/fonts/glyphicons-halflings-regular.woff b/assets/fonts/glyphicons-halflings-regular.woff old mode 100755 new mode 100644 diff --git a/assets/images/404.png b/assets/images/404.png old mode 100755 new mode 100644 diff --git a/assets/images/access.png b/assets/images/access.png old mode 100755 new mode 100644 diff --git a/assets/images/access1.png b/assets/images/access1.png old mode 100755 new mode 100644 diff --git a/assets/images/access2.jpg b/assets/images/access2.jpg old mode 100755 new mode 100644 diff --git a/assets/images/access3.jpg b/assets/images/access3.jpg old mode 100755 new mode 100644 diff --git a/assets/index.html b/assets/index.html old mode 100755 new mode 100644 diff --git a/assets/jQueryUI/jquery-ui-1.10.3.js b/assets/jQueryUI/jquery-ui-1.10.3.js old mode 100755 new mode 100644 diff --git a/assets/jQueryUI/jquery-ui-1.10.3.min.js b/assets/jQueryUI/jquery-ui-1.10.3.min.js old mode 100755 new mode 100644 diff --git a/assets/js/CreatePOValidation.js b/assets/js/CreatePOValidation.js old mode 100755 new mode 100644 index 968529a8..0c136c3e --- a/assets/js/CreatePOValidation.js +++ b/assets/js/CreatePOValidation.js @@ -54,9 +54,10 @@ function validate() $('#Deliverydt').focus(); return false; } - else if(PoType=='CAPITAL'){ + else if(PoType=='CAPITAL' ){ +alert(PoType); if(currencyType=='0'){ -alert('Please Select the Currency Type'); + alert('Please Select the Currency Type'); $('#currencytype').focus(); return false; } diff --git a/assets/js/CreatePOValidation.js~ b/assets/js/CreatePOValidation.js~ old mode 100755 new mode 100644 diff --git a/assets/js/addUser.js b/assets/js/addUser.js old mode 100755 new mode 100644 diff --git a/assets/js/bootstrap.js b/assets/js/bootstrap.js old mode 100755 new mode 100644 diff --git a/assets/js/bootstrap.min.js b/assets/js/bootstrap.min.js old mode 100755 new mode 100644 diff --git a/assets/js/common.js b/assets/js/common.js old mode 100755 new mode 100644 diff --git a/assets/js/demo/chartjs-demo.js b/assets/js/demo/chartjs-demo.js old mode 100755 new mode 100644 diff --git a/assets/js/demo/dashboard-demo.js b/assets/js/demo/dashboard-demo.js old mode 100755 new mode 100644 diff --git a/assets/js/demo/flot-demo.js b/assets/js/demo/flot-demo.js old mode 100755 new mode 100644 diff --git a/assets/js/demo/flot-demo2.js b/assets/js/demo/flot-demo2.js old mode 100755 new mode 100644 diff --git a/assets/js/demo/morris-demo.js b/assets/js/demo/morris-demo.js old mode 100755 new mode 100644 diff --git a/assets/js/demo/peity-demo.js b/assets/js/demo/peity-demo.js old mode 100755 new mode 100644 diff --git a/assets/js/demo/rickshaw-demo.js b/assets/js/demo/rickshaw-demo.js old mode 100755 new mode 100644 diff --git a/assets/js/demo/sparkline-demo.js b/assets/js/demo/sparkline-demo.js old mode 100755 new mode 100644 diff --git a/assets/js/editUser.js b/assets/js/editUser.js old mode 100755 new mode 100644 diff --git a/assets/js/inspinia.js b/assets/js/inspinia.js old mode 100755 new mode 100644 diff --git a/assets/js/jQuery-2.1.4.min.js b/assets/js/jQuery-2.1.4.min.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery-1.12.4.js b/assets/js/jquery-1.12.4.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery-1.12.4.min.js b/assets/js/jquery-1.12.4.min.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery-2.1.1.js b/assets/js/jquery-2.1.1.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery-ui-1.10.4.min.js b/assets/js/jquery-ui-1.10.4.min.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery-ui.custom.min.js b/assets/js/jquery-ui.custom.min.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery.autocomplete.js b/assets/js/jquery.autocomplete.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery.jeditable.js b/assets/js/jquery.jeditable.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery.min.js b/assets/js/jquery.min.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery.plugin.js b/assets/js/jquery.plugin.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery.validate-rules.js b/assets/js/jquery.validate-rules.js old mode 100755 new mode 100644 diff --git a/assets/js/jquery.validate.js b/assets/js/jquery.validate.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/blueimp/jquery.blueimp-gallery.min.js b/assets/js/plugins/blueimp/jquery.blueimp-gallery.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/chartJs/Chart.min.js b/assets/js/plugins/chartJs/Chart.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/chosen/chosen.jquery.js b/assets/js/plugins/chosen/chosen.jquery.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/codemirror.js b/assets/js/plugins/codemirror/codemirror.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/apl/apl.js b/assets/js/plugins/codemirror/mode/apl/apl.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/apl/index.html b/assets/js/plugins/codemirror/mode/apl/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/asterisk/asterisk.js b/assets/js/plugins/codemirror/mode/asterisk/asterisk.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/asterisk/index.html b/assets/js/plugins/codemirror/mode/asterisk/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/clike/clike.js b/assets/js/plugins/codemirror/mode/clike/clike.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/clike/index.html b/assets/js/plugins/codemirror/mode/clike/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/clike/scala.html b/assets/js/plugins/codemirror/mode/clike/scala.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/clojure/clojure.js b/assets/js/plugins/codemirror/mode/clojure/clojure.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/clojure/index.html b/assets/js/plugins/codemirror/mode/clojure/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/cobol/cobol.js b/assets/js/plugins/codemirror/mode/cobol/cobol.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/cobol/index.html b/assets/js/plugins/codemirror/mode/cobol/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/coffeescript/coffeescript.js b/assets/js/plugins/codemirror/mode/coffeescript/coffeescript.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/coffeescript/index.html b/assets/js/plugins/codemirror/mode/coffeescript/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/commonlisp/commonlisp.js b/assets/js/plugins/codemirror/mode/commonlisp/commonlisp.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/commonlisp/index.html b/assets/js/plugins/codemirror/mode/commonlisp/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/css/css.js b/assets/js/plugins/codemirror/mode/css/css.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/css/index.html b/assets/js/plugins/codemirror/mode/css/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/css/less.html b/assets/js/plugins/codemirror/mode/css/less.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/css/less_test.js b/assets/js/plugins/codemirror/mode/css/less_test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/css/scss.html b/assets/js/plugins/codemirror/mode/css/scss.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/css/scss_test.js b/assets/js/plugins/codemirror/mode/css/scss_test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/css/test.js b/assets/js/plugins/codemirror/mode/css/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/cypher/cypher.js b/assets/js/plugins/codemirror/mode/cypher/cypher.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/cypher/index.html b/assets/js/plugins/codemirror/mode/cypher/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/d/d.js b/assets/js/plugins/codemirror/mode/d/d.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/d/index.html b/assets/js/plugins/codemirror/mode/d/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/diff/diff.js b/assets/js/plugins/codemirror/mode/diff/diff.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/diff/index.html b/assets/js/plugins/codemirror/mode/diff/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/django/django.js b/assets/js/plugins/codemirror/mode/django/django.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/django/index.html b/assets/js/plugins/codemirror/mode/django/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/dtd/dtd.js b/assets/js/plugins/codemirror/mode/dtd/dtd.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/dtd/index.html b/assets/js/plugins/codemirror/mode/dtd/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/dylan/dylan.js b/assets/js/plugins/codemirror/mode/dylan/dylan.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/dylan/index.html b/assets/js/plugins/codemirror/mode/dylan/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/ecl/ecl.js b/assets/js/plugins/codemirror/mode/ecl/ecl.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/ecl/index.html b/assets/js/plugins/codemirror/mode/ecl/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/eiffel/eiffel.js b/assets/js/plugins/codemirror/mode/eiffel/eiffel.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/eiffel/index.html b/assets/js/plugins/codemirror/mode/eiffel/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/erlang/erlang.js b/assets/js/plugins/codemirror/mode/erlang/erlang.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/erlang/index.html b/assets/js/plugins/codemirror/mode/erlang/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/fortran/fortran.js b/assets/js/plugins/codemirror/mode/fortran/fortran.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/fortran/index.html b/assets/js/plugins/codemirror/mode/fortran/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/gas/gas.js b/assets/js/plugins/codemirror/mode/gas/gas.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/gas/index.html b/assets/js/plugins/codemirror/mode/gas/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/gfm/gfm.js b/assets/js/plugins/codemirror/mode/gfm/gfm.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/gfm/index.html b/assets/js/plugins/codemirror/mode/gfm/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/gfm/test.js b/assets/js/plugins/codemirror/mode/gfm/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/gherkin/gherkin.js b/assets/js/plugins/codemirror/mode/gherkin/gherkin.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/gherkin/index.html b/assets/js/plugins/codemirror/mode/gherkin/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/go/go.js b/assets/js/plugins/codemirror/mode/go/go.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/go/index.html b/assets/js/plugins/codemirror/mode/go/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/groovy/groovy.js b/assets/js/plugins/codemirror/mode/groovy/groovy.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/groovy/index.html b/assets/js/plugins/codemirror/mode/groovy/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/haml/haml.js b/assets/js/plugins/codemirror/mode/haml/haml.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/haml/index.html b/assets/js/plugins/codemirror/mode/haml/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/haml/test.js b/assets/js/plugins/codemirror/mode/haml/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/haskell/haskell.js b/assets/js/plugins/codemirror/mode/haskell/haskell.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/haskell/index.html b/assets/js/plugins/codemirror/mode/haskell/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/haxe/haxe.js b/assets/js/plugins/codemirror/mode/haxe/haxe.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/haxe/index.html b/assets/js/plugins/codemirror/mode/haxe/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/htmlembedded/htmlembedded.js b/assets/js/plugins/codemirror/mode/htmlembedded/htmlembedded.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/htmlembedded/index.html b/assets/js/plugins/codemirror/mode/htmlembedded/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/htmlmixed/htmlmixed.js b/assets/js/plugins/codemirror/mode/htmlmixed/htmlmixed.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/htmlmixed/index.html b/assets/js/plugins/codemirror/mode/htmlmixed/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/http/http.js b/assets/js/plugins/codemirror/mode/http/http.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/http/index.html b/assets/js/plugins/codemirror/mode/http/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/index.html b/assets/js/plugins/codemirror/mode/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/jade/index.html b/assets/js/plugins/codemirror/mode/jade/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/jade/jade.js b/assets/js/plugins/codemirror/mode/jade/jade.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/javascript/index.html b/assets/js/plugins/codemirror/mode/javascript/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/javascript/javascript.js b/assets/js/plugins/codemirror/mode/javascript/javascript.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/javascript/json-ld.html b/assets/js/plugins/codemirror/mode/javascript/json-ld.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/javascript/test.js b/assets/js/plugins/codemirror/mode/javascript/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/javascript/typescript.html b/assets/js/plugins/codemirror/mode/javascript/typescript.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/jinja2/index.html b/assets/js/plugins/codemirror/mode/jinja2/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/jinja2/jinja2.js b/assets/js/plugins/codemirror/mode/jinja2/jinja2.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/julia/index.html b/assets/js/plugins/codemirror/mode/julia/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/julia/julia.js b/assets/js/plugins/codemirror/mode/julia/julia.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/kotlin/index.html b/assets/js/plugins/codemirror/mode/kotlin/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/kotlin/kotlin.js b/assets/js/plugins/codemirror/mode/kotlin/kotlin.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/livescript/index.html b/assets/js/plugins/codemirror/mode/livescript/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/livescript/livescript.js b/assets/js/plugins/codemirror/mode/livescript/livescript.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/lua/index.html b/assets/js/plugins/codemirror/mode/lua/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/lua/lua.js b/assets/js/plugins/codemirror/mode/lua/lua.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/markdown/index.html b/assets/js/plugins/codemirror/mode/markdown/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/markdown/markdown.js b/assets/js/plugins/codemirror/mode/markdown/markdown.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/markdown/test.js b/assets/js/plugins/codemirror/mode/markdown/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/meta.js b/assets/js/plugins/codemirror/mode/meta.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/mirc/index.html b/assets/js/plugins/codemirror/mode/mirc/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/mirc/mirc.js b/assets/js/plugins/codemirror/mode/mirc/mirc.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/mllike/index.html b/assets/js/plugins/codemirror/mode/mllike/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/mllike/mllike.js b/assets/js/plugins/codemirror/mode/mllike/mllike.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/modelica/index.html b/assets/js/plugins/codemirror/mode/modelica/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/modelica/modelica.js b/assets/js/plugins/codemirror/mode/modelica/modelica.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/nginx/index.html b/assets/js/plugins/codemirror/mode/nginx/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/nginx/nginx.js b/assets/js/plugins/codemirror/mode/nginx/nginx.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/ntriples/index.html b/assets/js/plugins/codemirror/mode/ntriples/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/ntriples/ntriples.js b/assets/js/plugins/codemirror/mode/ntriples/ntriples.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/octave/index.html b/assets/js/plugins/codemirror/mode/octave/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/octave/octave.js b/assets/js/plugins/codemirror/mode/octave/octave.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/pascal/index.html b/assets/js/plugins/codemirror/mode/pascal/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/pascal/pascal.js b/assets/js/plugins/codemirror/mode/pascal/pascal.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/pegjs/index.html b/assets/js/plugins/codemirror/mode/pegjs/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/pegjs/pegjs.js b/assets/js/plugins/codemirror/mode/pegjs/pegjs.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/perl/index.html b/assets/js/plugins/codemirror/mode/perl/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/perl/perl.js b/assets/js/plugins/codemirror/mode/perl/perl.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/php/index.html b/assets/js/plugins/codemirror/mode/php/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/php/php.js b/assets/js/plugins/codemirror/mode/php/php.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/php/test.js b/assets/js/plugins/codemirror/mode/php/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/pig/index.html b/assets/js/plugins/codemirror/mode/pig/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/pig/pig.js b/assets/js/plugins/codemirror/mode/pig/pig.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/properties/index.html b/assets/js/plugins/codemirror/mode/properties/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/properties/properties.js b/assets/js/plugins/codemirror/mode/properties/properties.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/puppet/index.html b/assets/js/plugins/codemirror/mode/puppet/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/puppet/puppet.js b/assets/js/plugins/codemirror/mode/puppet/puppet.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/python/index.html b/assets/js/plugins/codemirror/mode/python/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/python/python.js b/assets/js/plugins/codemirror/mode/python/python.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/q/index.html b/assets/js/plugins/codemirror/mode/q/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/q/q.js b/assets/js/plugins/codemirror/mode/q/q.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/r/index.html b/assets/js/plugins/codemirror/mode/r/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/r/r.js b/assets/js/plugins/codemirror/mode/r/r.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/rpm/changes/index.html b/assets/js/plugins/codemirror/mode/rpm/changes/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/rpm/index.html b/assets/js/plugins/codemirror/mode/rpm/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/rpm/rpm.js b/assets/js/plugins/codemirror/mode/rpm/rpm.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/rst/index.html b/assets/js/plugins/codemirror/mode/rst/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/rst/rst.js b/assets/js/plugins/codemirror/mode/rst/rst.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/ruby/index.html b/assets/js/plugins/codemirror/mode/ruby/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/ruby/ruby.js b/assets/js/plugins/codemirror/mode/ruby/ruby.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/ruby/test.js b/assets/js/plugins/codemirror/mode/ruby/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/rust/index.html b/assets/js/plugins/codemirror/mode/rust/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/rust/rust.js b/assets/js/plugins/codemirror/mode/rust/rust.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/sass/index.html b/assets/js/plugins/codemirror/mode/sass/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/sass/sass.js b/assets/js/plugins/codemirror/mode/sass/sass.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/scheme/index.html b/assets/js/plugins/codemirror/mode/scheme/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/scheme/scheme.js b/assets/js/plugins/codemirror/mode/scheme/scheme.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/shell/index.html b/assets/js/plugins/codemirror/mode/shell/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/shell/shell.js b/assets/js/plugins/codemirror/mode/shell/shell.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/shell/test.js b/assets/js/plugins/codemirror/mode/shell/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/sieve/index.html b/assets/js/plugins/codemirror/mode/sieve/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/sieve/sieve.js b/assets/js/plugins/codemirror/mode/sieve/sieve.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/slim/index.html b/assets/js/plugins/codemirror/mode/slim/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/slim/slim.js b/assets/js/plugins/codemirror/mode/slim/slim.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/slim/test.js b/assets/js/plugins/codemirror/mode/slim/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/smalltalk/index.html b/assets/js/plugins/codemirror/mode/smalltalk/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/smalltalk/smalltalk.js b/assets/js/plugins/codemirror/mode/smalltalk/smalltalk.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/smarty/index.html b/assets/js/plugins/codemirror/mode/smarty/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/smarty/smarty.js b/assets/js/plugins/codemirror/mode/smarty/smarty.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/smartymixed/index.html b/assets/js/plugins/codemirror/mode/smartymixed/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/smartymixed/smartymixed.js b/assets/js/plugins/codemirror/mode/smartymixed/smartymixed.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/solr/index.html b/assets/js/plugins/codemirror/mode/solr/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/solr/solr.js b/assets/js/plugins/codemirror/mode/solr/solr.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/sparql/index.html b/assets/js/plugins/codemirror/mode/sparql/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/sparql/sparql.js b/assets/js/plugins/codemirror/mode/sparql/sparql.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/sql/index.html b/assets/js/plugins/codemirror/mode/sql/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/sql/sql.js b/assets/js/plugins/codemirror/mode/sql/sql.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/stex/index.html b/assets/js/plugins/codemirror/mode/stex/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/stex/stex.js b/assets/js/plugins/codemirror/mode/stex/stex.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/stex/test.js b/assets/js/plugins/codemirror/mode/stex/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/tcl/index.html b/assets/js/plugins/codemirror/mode/tcl/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/tcl/tcl.js b/assets/js/plugins/codemirror/mode/tcl/tcl.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/textile/index.html b/assets/js/plugins/codemirror/mode/textile/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/textile/test.js b/assets/js/plugins/codemirror/mode/textile/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/textile/textile.js b/assets/js/plugins/codemirror/mode/textile/textile.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/tiddlywiki/index.html b/assets/js/plugins/codemirror/mode/tiddlywiki/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css b/assets/js/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js b/assets/js/plugins/codemirror/mode/tiddlywiki/tiddlywiki.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/tiki/index.html b/assets/js/plugins/codemirror/mode/tiki/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/tiki/tiki.css b/assets/js/plugins/codemirror/mode/tiki/tiki.css old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/tiki/tiki.js b/assets/js/plugins/codemirror/mode/tiki/tiki.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/toml/index.html b/assets/js/plugins/codemirror/mode/toml/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/toml/toml.js b/assets/js/plugins/codemirror/mode/toml/toml.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/tornado/index.html b/assets/js/plugins/codemirror/mode/tornado/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/tornado/tornado.js b/assets/js/plugins/codemirror/mode/tornado/tornado.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/turtle/index.html b/assets/js/plugins/codemirror/mode/turtle/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/turtle/turtle.js b/assets/js/plugins/codemirror/mode/turtle/turtle.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/vb/index.html b/assets/js/plugins/codemirror/mode/vb/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/vb/vb.js b/assets/js/plugins/codemirror/mode/vb/vb.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/vbscript/index.html b/assets/js/plugins/codemirror/mode/vbscript/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/vbscript/vbscript.js b/assets/js/plugins/codemirror/mode/vbscript/vbscript.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/velocity/index.html b/assets/js/plugins/codemirror/mode/velocity/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/velocity/velocity.js b/assets/js/plugins/codemirror/mode/velocity/velocity.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/verilog/index.html b/assets/js/plugins/codemirror/mode/verilog/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/verilog/test.js b/assets/js/plugins/codemirror/mode/verilog/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/verilog/verilog.js b/assets/js/plugins/codemirror/mode/verilog/verilog.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/xml/index.html b/assets/js/plugins/codemirror/mode/xml/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/xml/test.js b/assets/js/plugins/codemirror/mode/xml/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/xml/xml.js b/assets/js/plugins/codemirror/mode/xml/xml.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/xquery/index.html b/assets/js/plugins/codemirror/mode/xquery/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/xquery/test.js b/assets/js/plugins/codemirror/mode/xquery/test.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/xquery/xquery.js b/assets/js/plugins/codemirror/mode/xquery/xquery.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/yaml/index.html b/assets/js/plugins/codemirror/mode/yaml/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/yaml/yaml.js b/assets/js/plugins/codemirror/mode/yaml/yaml.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/z80/index.html b/assets/js/plugins/codemirror/mode/z80/index.html old mode 100755 new mode 100644 diff --git a/assets/js/plugins/codemirror/mode/z80/z80.js b/assets/js/plugins/codemirror/mode/z80/z80.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/colorpicker/bootstrap-colorpicker.min.js b/assets/js/plugins/colorpicker/bootstrap-colorpicker.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/cropper/cropper.min.js b/assets/js/plugins/cropper/cropper.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/dataTables/dataTables.bootstrap.js b/assets/js/plugins/dataTables/dataTables.bootstrap.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/dataTables/dataTables.responsive.js b/assets/js/plugins/dataTables/dataTables.responsive.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/dataTables/dataTables.tableTools.min.js b/assets/js/plugins/dataTables/dataTables.tableTools.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/dataTables/jquery.dataTables.js b/assets/js/plugins/dataTables/jquery.dataTables.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/dataTables/swf/copy_csv_xls.swf b/assets/js/plugins/dataTables/swf/copy_csv_xls.swf old mode 100755 new mode 100644 diff --git a/assets/js/plugins/dataTables/swf/copy_csv_xls_pdf.swf b/assets/js/plugins/dataTables/swf/copy_csv_xls_pdf.swf old mode 100755 new mode 100644 diff --git a/assets/js/plugins/datapicker/bootstrap-datepicker.js b/assets/js/plugins/datapicker/bootstrap-datepicker.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/dropzone/dropzone.js b/assets/js/plugins/dropzone/dropzone.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/easypiechart/easypiechart.js b/assets/js/plugins/easypiechart/easypiechart.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/easypiechart/jquery.easypiechart.js b/assets/js/plugins/easypiechart/jquery.easypiechart.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/flot/curvedLines.js b/assets/js/plugins/flot/curvedLines.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/flot/excanvas.min.js b/assets/js/plugins/flot/excanvas.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/flot/jquery.flot.js b/assets/js/plugins/flot/jquery.flot.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/flot/jquery.flot.pie.js b/assets/js/plugins/flot/jquery.flot.pie.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/flot/jquery.flot.resize.js b/assets/js/plugins/flot/jquery.flot.resize.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/flot/jquery.flot.spline.js b/assets/js/plugins/flot/jquery.flot.spline.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/flot/jquery.flot.symbol.js b/assets/js/plugins/flot/jquery.flot.symbol.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/flot/jquery.flot.time.js b/assets/js/plugins/flot/jquery.flot.time.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/flot/jquery.flot.tooltip.min.js b/assets/js/plugins/flot/jquery.flot.tooltip.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/fullcalendar/fullcalendar.min.js b/assets/js/plugins/fullcalendar/fullcalendar.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/fullcalendar/moment.min.js b/assets/js/plugins/fullcalendar/moment.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/gritter/images/gritter-light.png b/assets/js/plugins/gritter/images/gritter-light.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/gritter/images/gritter-long.png b/assets/js/plugins/gritter/images/gritter-long.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/gritter/images/gritter.png b/assets/js/plugins/gritter/images/gritter.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/gritter/images/ie-spacer.gif b/assets/js/plugins/gritter/images/ie-spacer.gif old mode 100755 new mode 100644 diff --git a/assets/js/plugins/gritter/jquery.gritter.css b/assets/js/plugins/gritter/jquery.gritter.css old mode 100755 new mode 100644 diff --git a/assets/js/plugins/gritter/jquery.gritter.min.js b/assets/js/plugins/gritter/jquery.gritter.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/iCheck/icheck.min.js b/assets/js/plugins/iCheck/icheck.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/ionRangeSlider/ion.rangeSlider.min.js b/assets/js/plugins/ionRangeSlider/ion.rangeSlider.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jasny/jasny-bootstrap.min.js b/assets/js/plugins/jasny/jasny-bootstrap.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jeditable/jquery.jeditable.js b/assets/js/plugins/jeditable/jquery.jeditable.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-ar.js b/assets/js/plugins/jqGrid/i18n/grid.locale-ar.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-bg.js b/assets/js/plugins/jqGrid/i18n/grid.locale-bg.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-bg1251.js b/assets/js/plugins/jqGrid/i18n/grid.locale-bg1251.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-cat.js b/assets/js/plugins/jqGrid/i18n/grid.locale-cat.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-cn.js b/assets/js/plugins/jqGrid/i18n/grid.locale-cn.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-cs.js b/assets/js/plugins/jqGrid/i18n/grid.locale-cs.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-da.js b/assets/js/plugins/jqGrid/i18n/grid.locale-da.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-de.js b/assets/js/plugins/jqGrid/i18n/grid.locale-de.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-dk.js b/assets/js/plugins/jqGrid/i18n/grid.locale-dk.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-el.js b/assets/js/plugins/jqGrid/i18n/grid.locale-el.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-en.js b/assets/js/plugins/jqGrid/i18n/grid.locale-en.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-es.js b/assets/js/plugins/jqGrid/i18n/grid.locale-es.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-fa.js b/assets/js/plugins/jqGrid/i18n/grid.locale-fa.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-fi.js b/assets/js/plugins/jqGrid/i18n/grid.locale-fi.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-fr.js b/assets/js/plugins/jqGrid/i18n/grid.locale-fr.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-gl.js b/assets/js/plugins/jqGrid/i18n/grid.locale-gl.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-he.js b/assets/js/plugins/jqGrid/i18n/grid.locale-he.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-hr.js b/assets/js/plugins/jqGrid/i18n/grid.locale-hr.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-hr1250.js b/assets/js/plugins/jqGrid/i18n/grid.locale-hr1250.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-hu.js b/assets/js/plugins/jqGrid/i18n/grid.locale-hu.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-id.js b/assets/js/plugins/jqGrid/i18n/grid.locale-id.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-is.js b/assets/js/plugins/jqGrid/i18n/grid.locale-is.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-it.js b/assets/js/plugins/jqGrid/i18n/grid.locale-it.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-ja.js b/assets/js/plugins/jqGrid/i18n/grid.locale-ja.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-kr.js b/assets/js/plugins/jqGrid/i18n/grid.locale-kr.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-lt.js b/assets/js/plugins/jqGrid/i18n/grid.locale-lt.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-mne.js b/assets/js/plugins/jqGrid/i18n/grid.locale-mne.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-nl.js b/assets/js/plugins/jqGrid/i18n/grid.locale-nl.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-no.js b/assets/js/plugins/jqGrid/i18n/grid.locale-no.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-pl.js b/assets/js/plugins/jqGrid/i18n/grid.locale-pl.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-pt-br.js b/assets/js/plugins/jqGrid/i18n/grid.locale-pt-br.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-pt.js b/assets/js/plugins/jqGrid/i18n/grid.locale-pt.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-ro.js b/assets/js/plugins/jqGrid/i18n/grid.locale-ro.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-ru.js b/assets/js/plugins/jqGrid/i18n/grid.locale-ru.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-sk.js b/assets/js/plugins/jqGrid/i18n/grid.locale-sk.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-sr-latin.js b/assets/js/plugins/jqGrid/i18n/grid.locale-sr-latin.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-sr.js b/assets/js/plugins/jqGrid/i18n/grid.locale-sr.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-sv.js b/assets/js/plugins/jqGrid/i18n/grid.locale-sv.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-th.js b/assets/js/plugins/jqGrid/i18n/grid.locale-th.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-tr.js b/assets/js/plugins/jqGrid/i18n/grid.locale-tr.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-tw.js b/assets/js/plugins/jqGrid/i18n/grid.locale-tw.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-ua.js b/assets/js/plugins/jqGrid/i18n/grid.locale-ua.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/i18n/grid.locale-vi.js b/assets/js/plugins/jqGrid/i18n/grid.locale-vi.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jqGrid/jquery.jqGrid.min.js b/assets/js/plugins/jqGrid/jquery.jqGrid.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery-ui-i18n.min.js b/assets/js/plugins/jquery-ui/i18n/jquery-ui-i18n.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-af.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-af.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ar-DZ.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ar-DZ.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ar.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ar.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-az.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-az.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-be.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-be.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-bg.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-bg.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-bs.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-bs.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ca.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ca.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-cs.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-cs.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-cy-GB.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-cy-GB.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-da.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-da.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-de.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-de.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-el.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-el.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-en-AU.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-en-AU.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-en-GB.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-en-GB.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-en-NZ.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-en-NZ.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-eo.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-eo.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-es.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-es.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-et.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-et.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-eu.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-eu.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fa.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fa.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fi.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fi.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fo.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fo.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fr-CA.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fr-CA.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fr-CH.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fr-CH.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fr.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fr.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-gl.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-gl.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-he.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-he.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hi.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hi.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hr.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hr.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hu.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hu.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hy.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hy.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-id.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-id.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-is.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-is.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-it.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-it.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ja.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ja.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ka.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ka.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-kk.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-kk.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-km.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-km.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ko.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ko.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ky.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ky.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-lb.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-lb.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-lt.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-lt.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-lv.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-lv.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-mk.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-mk.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ml.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ml.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ms.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ms.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nb.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nb.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nl-BE.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nl-BE.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nl.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nl.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nn.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nn.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-no.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-no.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-pl.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-pl.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-pt-BR.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-pt-BR.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-pt.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-pt.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-rm.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-rm.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ro.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ro.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ru.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ru.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sk.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sk.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sl.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sl.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sq.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sq.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sr-SR.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sr-SR.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sr.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sr.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sv.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sv.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ta.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ta.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-th.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-th.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-tj.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-tj.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-tr.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-tr.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-uk.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-uk.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-vi.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-vi.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-zh-CN.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-zh-CN.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-zh-HK.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-zh-HK.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-zh-TW.min.js b/assets/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-zh-TW.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/animated-overlay.gif b/assets/js/plugins/jquery-ui/images/animated-overlay.gif old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png b/assets/js/plugins/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png b/assets/js/plugins/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png b/assets/js/plugins/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png b/assets/js/plugins/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png b/assets/js/plugins/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png b/assets/js/plugins/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png b/assets/js/plugins/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/assets/js/plugins/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-icons_222222_256x240.png b/assets/js/plugins/jquery-ui/images/ui-icons_222222_256x240.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-icons_2e83ff_256x240.png b/assets/js/plugins/jquery-ui/images/ui-icons_2e83ff_256x240.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-icons_454545_256x240.png b/assets/js/plugins/jquery-ui/images/ui-icons_454545_256x240.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-icons_888888_256x240.png b/assets/js/plugins/jquery-ui/images/ui-icons_888888_256x240.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/images/ui-icons_cd0a0a_256x240.png b/assets/js/plugins/jquery-ui/images/ui-icons_cd0a0a_256x240.png old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/jquery-ui.css b/assets/js/plugins/jquery-ui/jquery-ui.css old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/jquery-ui.js b/assets/js/plugins/jquery-ui/jquery-ui.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/jquery-ui.min.css b/assets/js/plugins/jquery-ui/jquery-ui.min.css old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jquery-ui/jquery-ui.min.js b/assets/js/plugins/jquery-ui/jquery-ui.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jsKnob/jquery.knob.js b/assets/js/plugins/jsKnob/jquery.knob.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jsTree/jstree.min.js b/assets/js/plugins/jsTree/jstree.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/justified-gallery/README.md b/assets/js/plugins/justified-gallery/README.md old mode 100755 new mode 100644 diff --git a/assets/js/plugins/justified-gallery/jquery.justifiedgallery.css b/assets/js/plugins/justified-gallery/jquery.justifiedgallery.css old mode 100755 new mode 100644 diff --git a/assets/js/plugins/justified-gallery/jquery.justifiedgallery.js b/assets/js/plugins/justified-gallery/jquery.justifiedgallery.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/justified-gallery/jquery.justifiedgallery.min.css b/assets/js/plugins/justified-gallery/jquery.justifiedgallery.min.css old mode 100755 new mode 100644 diff --git a/assets/js/plugins/justified-gallery/jquery.justifiedgallery.min.js b/assets/js/plugins/justified-gallery/jquery.justifiedgallery.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/justified-gallery/loading.gif b/assets/js/plugins/justified-gallery/loading.gif old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js b/assets/js/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/jvectormap/jquery-jvectormap-world-mill-en.js b/assets/js/plugins/jvectormap/jquery-jvectormap-world-mill-en.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/metisMenu/jquery.metisMenu.js b/assets/js/plugins/metisMenu/jquery.metisMenu.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/morris/morris.js b/assets/js/plugins/morris/morris.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/morris/raphael-2.1.0.min.js b/assets/js/plugins/morris/raphael-2.1.0.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/nestable/jquery.nestable.js b/assets/js/plugins/nestable/jquery.nestable.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/nouslider/jquery.nouislider.min.js b/assets/js/plugins/nouslider/jquery.nouislider.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/pace/pace.min.js b/assets/js/plugins/pace/pace.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/peity/jquery.peity.min.js b/assets/js/plugins/peity/jquery.peity.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/rickshaw/rickshaw.min.js b/assets/js/plugins/rickshaw/rickshaw.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/rickshaw/vendor/d3.v3.js b/assets/js/plugins/rickshaw/vendor/d3.v3.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/slimscroll/jquery.slimscroll.js b/assets/js/plugins/slimscroll/jquery.slimscroll.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/slimscroll/jquery.slimscroll.min.js b/assets/js/plugins/slimscroll/jquery.slimscroll.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/sparkline/jquery.sparkline.min.js b/assets/js/plugins/sparkline/jquery.sparkline.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/staps/jquery.steps.min.js b/assets/js/plugins/staps/jquery.steps.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/summernote/summernote.min.js b/assets/js/plugins/summernote/summernote.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/switchery/switchery.js b/assets/js/plugins/switchery/switchery.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/toastr/toastr.min.js b/assets/js/plugins/toastr/toastr.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/validate/jquery.validate.min.js b/assets/js/plugins/validate/jquery.validate.min.js old mode 100755 new mode 100644 diff --git a/assets/js/plugins/video/responsible-video.js b/assets/js/plugins/video/responsible-video.js old mode 100755 new mode 100644 diff --git a/assets/js/tsort.min.js b/assets/js/tsort.min.js old mode 100755 new mode 100644 diff --git a/assets/js/underscore.js b/assets/js/underscore.js old mode 100755 new mode 100644 diff --git a/assets/js/upload.min.js b/assets/js/upload.min.js old mode 100755 new mode 100644 diff --git a/assets/js/validation.js b/assets/js/validation.js old mode 100755 new mode 100644 diff --git a/assets/plugins/bootstrap-slider/bootstrap-slider.js b/assets/plugins/bootstrap-slider/bootstrap-slider.js old mode 100755 new mode 100644 diff --git a/assets/plugins/bootstrap-slider/slider.css b/assets/plugins/bootstrap-slider/slider.css old mode 100755 new mode 100644 diff --git a/assets/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js b/assets/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.css b/assets/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.css old mode 100755 new mode 100644 diff --git a/assets/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.js b/assets/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.js old mode 100755 new mode 100644 diff --git a/assets/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css b/assets/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/chartjs/Chart.js b/assets/plugins/chartjs/Chart.js old mode 100755 new mode 100644 diff --git a/assets/plugins/chartjs/Chart.min.js b/assets/plugins/chartjs/Chart.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/CHANGES.md b/assets/plugins/ckeditor/CHANGES.md old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/LICENSE.md b/assets/plugins/ckeditor/LICENSE.md old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/README.md b/assets/plugins/ckeditor/README.md old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/adapters/jquery.js b/assets/plugins/ckeditor/adapters/jquery.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/build-config.js b/assets/plugins/ckeditor/build-config.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/ckeditor.js b/assets/plugins/ckeditor/ckeditor.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/config.js b/assets/plugins/ckeditor/config.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/contents.css b/assets/plugins/ckeditor/contents.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/af.js b/assets/plugins/ckeditor/lang/af.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/ar.js b/assets/plugins/ckeditor/lang/ar.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/bg.js b/assets/plugins/ckeditor/lang/bg.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/bn.js b/assets/plugins/ckeditor/lang/bn.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/bs.js b/assets/plugins/ckeditor/lang/bs.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/ca.js b/assets/plugins/ckeditor/lang/ca.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/cs.js b/assets/plugins/ckeditor/lang/cs.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/cy.js b/assets/plugins/ckeditor/lang/cy.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/da.js b/assets/plugins/ckeditor/lang/da.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/de.js b/assets/plugins/ckeditor/lang/de.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/el.js b/assets/plugins/ckeditor/lang/el.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/en-au.js b/assets/plugins/ckeditor/lang/en-au.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/en-ca.js b/assets/plugins/ckeditor/lang/en-ca.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/en-gb.js b/assets/plugins/ckeditor/lang/en-gb.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/en.js b/assets/plugins/ckeditor/lang/en.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/eo.js b/assets/plugins/ckeditor/lang/eo.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/es.js b/assets/plugins/ckeditor/lang/es.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/et.js b/assets/plugins/ckeditor/lang/et.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/eu.js b/assets/plugins/ckeditor/lang/eu.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/fa.js b/assets/plugins/ckeditor/lang/fa.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/fi.js b/assets/plugins/ckeditor/lang/fi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/fo.js b/assets/plugins/ckeditor/lang/fo.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/fr-ca.js b/assets/plugins/ckeditor/lang/fr-ca.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/fr.js b/assets/plugins/ckeditor/lang/fr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/gl.js b/assets/plugins/ckeditor/lang/gl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/gu.js b/assets/plugins/ckeditor/lang/gu.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/he.js b/assets/plugins/ckeditor/lang/he.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/hi.js b/assets/plugins/ckeditor/lang/hi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/hr.js b/assets/plugins/ckeditor/lang/hr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/hu.js b/assets/plugins/ckeditor/lang/hu.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/id.js b/assets/plugins/ckeditor/lang/id.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/is.js b/assets/plugins/ckeditor/lang/is.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/it.js b/assets/plugins/ckeditor/lang/it.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/ja.js b/assets/plugins/ckeditor/lang/ja.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/ka.js b/assets/plugins/ckeditor/lang/ka.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/km.js b/assets/plugins/ckeditor/lang/km.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/ko.js b/assets/plugins/ckeditor/lang/ko.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/ku.js b/assets/plugins/ckeditor/lang/ku.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/lt.js b/assets/plugins/ckeditor/lang/lt.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/lv.js b/assets/plugins/ckeditor/lang/lv.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/mk.js b/assets/plugins/ckeditor/lang/mk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/mn.js b/assets/plugins/ckeditor/lang/mn.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/ms.js b/assets/plugins/ckeditor/lang/ms.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/nb.js b/assets/plugins/ckeditor/lang/nb.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/nl.js b/assets/plugins/ckeditor/lang/nl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/no.js b/assets/plugins/ckeditor/lang/no.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/pl.js b/assets/plugins/ckeditor/lang/pl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/pt-br.js b/assets/plugins/ckeditor/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/pt.js b/assets/plugins/ckeditor/lang/pt.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/ro.js b/assets/plugins/ckeditor/lang/ro.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/ru.js b/assets/plugins/ckeditor/lang/ru.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/si.js b/assets/plugins/ckeditor/lang/si.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/sk.js b/assets/plugins/ckeditor/lang/sk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/sl.js b/assets/plugins/ckeditor/lang/sl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/sq.js b/assets/plugins/ckeditor/lang/sq.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/sr-latn.js b/assets/plugins/ckeditor/lang/sr-latn.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/sr.js b/assets/plugins/ckeditor/lang/sr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/sv.js b/assets/plugins/ckeditor/lang/sv.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/th.js b/assets/plugins/ckeditor/lang/th.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/tr.js b/assets/plugins/ckeditor/lang/tr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/ug.js b/assets/plugins/ckeditor/lang/ug.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/uk.js b/assets/plugins/ckeditor/lang/uk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/vi.js b/assets/plugins/ckeditor/lang/vi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/zh-cn.js b/assets/plugins/ckeditor/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/lang/zh.js b/assets/plugins/ckeditor/lang/zh.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/da.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/da.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/de.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/de.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/el.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/el.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/en.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/en.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/es.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/es.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/et.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/et.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/he.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/he.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/id.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/id.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/it.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/it.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/km.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/km.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/no.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/no.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/si.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/si.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/th.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/th.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js b/assets/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/about/dialogs/about.js b/assets/plugins/ckeditor/plugins/about/dialogs/about.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png b/assets/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png b/assets/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/clipboard/dialogs/paste.js b/assets/plugins/ckeditor/plugins/clipboard/dialogs/paste.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/dialog/dialogDefinition.js b/assets/plugins/ckeditor/plugins/dialog/dialogDefinition.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif b/assets/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/icons.png b/assets/plugins/ckeditor/plugins/icons.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/icons_hidpi.png b/assets/plugins/ckeditor/plugins/icons_hidpi.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/image/dialogs/image.js b/assets/plugins/ckeditor/plugins/image/dialogs/image.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/image/images/noimage.png b/assets/plugins/ckeditor/plugins/image/images/noimage.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/link/dialogs/anchor.js b/assets/plugins/ckeditor/plugins/link/dialogs/anchor.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/link/dialogs/link.js b/assets/plugins/ckeditor/plugins/link/dialogs/link.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/link/images/anchor.png b/assets/plugins/ckeditor/plugins/link/images/anchor.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png b/assets/plugins/ckeditor/plugins/link/images/hidpi/anchor.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png b/assets/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/magicline/images/icon.png b/assets/plugins/ckeditor/plugins/magicline/images/icon.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/pastefromword/filter/default.js b/assets/plugins/ckeditor/plugins/pastefromword/filter/default.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/scayt/LICENSE.md b/assets/plugins/ckeditor/plugins/scayt/LICENSE.md old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/scayt/README.md b/assets/plugins/ckeditor/plugins/scayt/README.md old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/scayt/dialogs/options.js b/assets/plugins/ckeditor/plugins/scayt/dialogs/options.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/scayt/dialogs/toolbar.css b/assets/plugins/ckeditor/plugins/scayt/dialogs/toolbar.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ar.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ar.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/bg.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/bg.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ca.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ca.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/cs.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/cs.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/cy.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/cy.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/de.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/de.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/el.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/el.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/en.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/en.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/eo.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/eo.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/es.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/es.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/et.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/et.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/fa.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/fa.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/fi.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/fi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/fr.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/fr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/gl.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/gl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/he.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/he.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/hr.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/hr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/hu.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/hu.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/id.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/id.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/it.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/it.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ja.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ja.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/km.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/km.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ku.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ku.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/lv.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/lv.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/nb.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/nb.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/nl.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/nl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/no.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/no.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/pl.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/pl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/pt.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/pt.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ru.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ru.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/si.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/si.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/sk.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/sk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/sl.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/sl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/sq.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/sq.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/sv.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/sv.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/th.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/th.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/tr.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/tr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ug.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/ug.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/uk.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/uk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/vi.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/vi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/zh.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/lang/zh.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/specialchar/dialogs/specialchar.js b/assets/plugins/ckeditor/plugins/specialchar/dialogs/specialchar.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/table/dialogs/table.js b/assets/plugins/ckeditor/plugins/table/dialogs/table.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/tabletools/dialogs/tableCell.js b/assets/plugins/ckeditor/plugins/tabletools/dialogs/tableCell.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/wsc/LICENSE.md b/assets/plugins/ckeditor/plugins/wsc/LICENSE.md old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/wsc/README.md b/assets/plugins/ckeditor/plugins/wsc/README.md old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/wsc/dialogs/ciframe.html b/assets/plugins/ckeditor/plugins/wsc/dialogs/ciframe.html old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/wsc/dialogs/tmp.html b/assets/plugins/ckeditor/plugins/wsc/dialogs/tmp.html old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/assets/plugins/ckeditor/plugins/wsc/dialogs/tmpFrameset.html old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/wsc/dialogs/wsc.css b/assets/plugins/ckeditor/plugins/wsc/dialogs/wsc.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/wsc/dialogs/wsc.js b/assets/plugins/ckeditor/plugins/wsc/dialogs/wsc.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/plugins/wsc/dialogs/wsc_ie.js b/assets/plugins/ckeditor/plugins/wsc/dialogs/wsc_ie.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/dialog.css b/assets/plugins/ckeditor/skins/moono/dialog.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/dialog_ie.css b/assets/plugins/ckeditor/skins/moono/dialog_ie.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/dialog_ie7.css b/assets/plugins/ckeditor/skins/moono/dialog_ie7.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/dialog_ie8.css b/assets/plugins/ckeditor/skins/moono/dialog_ie8.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/dialog_iequirks.css b/assets/plugins/ckeditor/skins/moono/dialog_iequirks.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/dialog_opera.css b/assets/plugins/ckeditor/skins/moono/dialog_opera.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/editor.css b/assets/plugins/ckeditor/skins/moono/editor.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/editor_gecko.css b/assets/plugins/ckeditor/skins/moono/editor_gecko.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/editor_ie.css b/assets/plugins/ckeditor/skins/moono/editor_ie.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/editor_ie7.css b/assets/plugins/ckeditor/skins/moono/editor_ie7.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/editor_ie8.css b/assets/plugins/ckeditor/skins/moono/editor_ie8.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/editor_iequirks.css b/assets/plugins/ckeditor/skins/moono/editor_iequirks.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/icons.png b/assets/plugins/ckeditor/skins/moono/icons.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/icons_hidpi.png b/assets/plugins/ckeditor/skins/moono/icons_hidpi.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/images/arrow.png b/assets/plugins/ckeditor/skins/moono/images/arrow.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/images/close.png b/assets/plugins/ckeditor/skins/moono/images/close.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/images/hidpi/close.png b/assets/plugins/ckeditor/skins/moono/images/hidpi/close.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png b/assets/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/images/hidpi/lock.png b/assets/plugins/ckeditor/skins/moono/images/hidpi/lock.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/images/hidpi/refresh.png b/assets/plugins/ckeditor/skins/moono/images/hidpi/refresh.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/images/lock-open.png b/assets/plugins/ckeditor/skins/moono/images/lock-open.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/images/lock.png b/assets/plugins/ckeditor/skins/moono/images/lock.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/images/refresh.png b/assets/plugins/ckeditor/skins/moono/images/refresh.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/skins/moono/readme.md b/assets/plugins/ckeditor/skins/moono/readme.md old mode 100755 new mode 100644 diff --git a/assets/plugins/ckeditor/styles.js b/assets/plugins/ckeditor/styles.js old mode 100755 new mode 100644 diff --git a/assets/plugins/colorpicker/bootstrap-colorpicker.css b/assets/plugins/colorpicker/bootstrap-colorpicker.css old mode 100755 new mode 100644 diff --git a/assets/plugins/colorpicker/bootstrap-colorpicker.js b/assets/plugins/colorpicker/bootstrap-colorpicker.js old mode 100755 new mode 100644 diff --git a/assets/plugins/colorpicker/bootstrap-colorpicker.min.css b/assets/plugins/colorpicker/bootstrap-colorpicker.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/colorpicker/bootstrap-colorpicker.min.js b/assets/plugins/colorpicker/bootstrap-colorpicker.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/colorpicker/img/alpha-horizontal.png b/assets/plugins/colorpicker/img/alpha-horizontal.png old mode 100755 new mode 100644 diff --git a/assets/plugins/colorpicker/img/alpha.png b/assets/plugins/colorpicker/img/alpha.png old mode 100755 new mode 100644 diff --git a/assets/plugins/colorpicker/img/hue-horizontal.png b/assets/plugins/colorpicker/img/hue-horizontal.png old mode 100755 new mode 100644 diff --git a/assets/plugins/colorpicker/img/hue.png b/assets/plugins/colorpicker/img/hue.png old mode 100755 new mode 100644 diff --git a/assets/plugins/colorpicker/img/saturation.png b/assets/plugins/colorpicker/img/saturation.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/dataTables.bootstrap.css b/assets/plugins/datatables/dataTables.bootstrap.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/dataTables.bootstrap.js b/assets/plugins/datatables/dataTables.bootstrap.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/dataTables.bootstrap.min.js b/assets/plugins/datatables/dataTables.bootstrap.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/Readme.txt b/assets/plugins/datatables/extensions/AutoFill/Readme.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.css b/assets/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css b/assets/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/examples/columns.html b/assets/plugins/datatables/extensions/AutoFill/examples/columns.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/examples/complete-callback.html b/assets/plugins/datatables/extensions/AutoFill/examples/complete-callback.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/examples/fill-both.html b/assets/plugins/datatables/extensions/AutoFill/examples/fill-both.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/examples/fill-horizontal.html b/assets/plugins/datatables/extensions/AutoFill/examples/fill-horizontal.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/examples/index.html b/assets/plugins/datatables/extensions/AutoFill/examples/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/examples/scrolling.html b/assets/plugins/datatables/extensions/AutoFill/examples/scrolling.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/examples/simple.html b/assets/plugins/datatables/extensions/AutoFill/examples/simple.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/examples/step-callback.html b/assets/plugins/datatables/extensions/AutoFill/examples/step-callback.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/images/filler.png b/assets/plugins/datatables/extensions/AutoFill/images/filler.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/js/dataTables.autoFill.js b/assets/plugins/datatables/extensions/AutoFill/js/dataTables.autoFill.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/AutoFill/js/dataTables.autoFill.min.js b/assets/plugins/datatables/extensions/AutoFill/js/dataTables.autoFill.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/License.txt b/assets/plugins/datatables/extensions/ColVis/License.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/Readme.md b/assets/plugins/datatables/extensions/ColVis/Readme.md old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/css/dataTables.colVis.css b/assets/plugins/datatables/extensions/ColVis/css/dataTables.colVis.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/css/dataTables.colVis.min.css b/assets/plugins/datatables/extensions/ColVis/css/dataTables.colVis.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/css/dataTables.colvis.jqueryui.css b/assets/plugins/datatables/extensions/ColVis/css/dataTables.colvis.jqueryui.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/button_order.html b/assets/plugins/datatables/extensions/ColVis/examples/button_order.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/exclude_columns.html b/assets/plugins/datatables/extensions/ColVis/examples/exclude_columns.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/group_columns.html b/assets/plugins/datatables/extensions/ColVis/examples/group_columns.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/index.html b/assets/plugins/datatables/extensions/ColVis/examples/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/jqueryui.html b/assets/plugins/datatables/extensions/ColVis/examples/jqueryui.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/mouseover.html b/assets/plugins/datatables/extensions/ColVis/examples/mouseover.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/new_init.html b/assets/plugins/datatables/extensions/ColVis/examples/new_init.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/restore.html b/assets/plugins/datatables/extensions/ColVis/examples/restore.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/simple.html b/assets/plugins/datatables/extensions/ColVis/examples/simple.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/text.html b/assets/plugins/datatables/extensions/ColVis/examples/text.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/title_callback.html b/assets/plugins/datatables/extensions/ColVis/examples/title_callback.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/two_tables.html b/assets/plugins/datatables/extensions/ColVis/examples/two_tables.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/examples/two_tables_identical.html b/assets/plugins/datatables/extensions/ColVis/examples/two_tables_identical.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/js/dataTables.colVis.js b/assets/plugins/datatables/extensions/ColVis/js/dataTables.colVis.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/ColVis/js/dataTables.colVis.min.js b/assets/plugins/datatables/extensions/ColVis/js/dataTables.colVis.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/License.txt b/assets/plugins/datatables/extensions/FixedColumns/License.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/Readme.md b/assets/plugins/datatables/extensions/FixedColumns/Readme.md old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css b/assets/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css b/assets/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/bootstrap.html b/assets/plugins/datatables/extensions/FixedColumns/examples/bootstrap.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/col_filter.html b/assets/plugins/datatables/extensions/FixedColumns/examples/col_filter.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/colvis.html b/assets/plugins/datatables/extensions/FixedColumns/examples/colvis.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/css_size.html b/assets/plugins/datatables/extensions/FixedColumns/examples/css_size.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/index.html b/assets/plugins/datatables/extensions/FixedColumns/examples/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/index_column.html b/assets/plugins/datatables/extensions/FixedColumns/examples/index_column.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/left_right_columns.html b/assets/plugins/datatables/extensions/FixedColumns/examples/left_right_columns.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/right_column.html b/assets/plugins/datatables/extensions/FixedColumns/examples/right_column.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/rowspan.html b/assets/plugins/datatables/extensions/FixedColumns/examples/rowspan.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/server-side-processing.html b/assets/plugins/datatables/extensions/FixedColumns/examples/server-side-processing.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/simple.html b/assets/plugins/datatables/extensions/FixedColumns/examples/simple.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/size_fixed.html b/assets/plugins/datatables/extensions/FixedColumns/examples/size_fixed.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/size_fluid.html b/assets/plugins/datatables/extensions/FixedColumns/examples/size_fluid.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/examples/two_columns.html b/assets/plugins/datatables/extensions/FixedColumns/examples/two_columns.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/js/dataTables.fixedColumns.js b/assets/plugins/datatables/extensions/FixedColumns/js/dataTables.fixedColumns.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedColumns/js/dataTables.fixedColumns.min.js b/assets/plugins/datatables/extensions/FixedColumns/js/dataTables.fixedColumns.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/Readme.txt b/assets/plugins/datatables/extensions/FixedHeader/Readme.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css b/assets/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css b/assets/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/examples/header_footer.html b/assets/plugins/datatables/extensions/FixedHeader/examples/header_footer.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/examples/index.html b/assets/plugins/datatables/extensions/FixedHeader/examples/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/examples/simple.html b/assets/plugins/datatables/extensions/FixedHeader/examples/simple.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/examples/top_left_right.html b/assets/plugins/datatables/extensions/FixedHeader/examples/top_left_right.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/examples/two_tables.html b/assets/plugins/datatables/extensions/FixedHeader/examples/two_tables.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/examples/zIndexes.html b/assets/plugins/datatables/extensions/FixedHeader/examples/zIndexes.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/js/dataTables.fixedHeader.js b/assets/plugins/datatables/extensions/FixedHeader/js/dataTables.fixedHeader.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/FixedHeader/js/dataTables.fixedHeader.min.js b/assets/plugins/datatables/extensions/FixedHeader/js/dataTables.fixedHeader.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/KeyTable/Readme.txt b/assets/plugins/datatables/extensions/KeyTable/Readme.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css b/assets/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css b/assets/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/KeyTable/examples/events.html b/assets/plugins/datatables/extensions/KeyTable/examples/events.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/KeyTable/examples/html.html b/assets/plugins/datatables/extensions/KeyTable/examples/html.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/KeyTable/examples/index.html b/assets/plugins/datatables/extensions/KeyTable/examples/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/KeyTable/examples/scrolling.html b/assets/plugins/datatables/extensions/KeyTable/examples/scrolling.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/KeyTable/examples/simple.html b/assets/plugins/datatables/extensions/KeyTable/examples/simple.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/KeyTable/js/dataTables.keyTable.js b/assets/plugins/datatables/extensions/KeyTable/js/dataTables.keyTable.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/KeyTable/js/dataTables.keyTable.min.js b/assets/plugins/datatables/extensions/KeyTable/js/dataTables.keyTable.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/License.txt b/assets/plugins/datatables/extensions/Responsive/License.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/Readme.md b/assets/plugins/datatables/extensions/Responsive/Readme.md old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/css/dataTables.responsive.css b/assets/plugins/datatables/extensions/Responsive/css/dataTables.responsive.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/css/dataTables.responsive.scss b/assets/plugins/datatables/extensions/Responsive/css/dataTables.responsive.scss old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/child-rows/column-control.html b/assets/plugins/datatables/extensions/Responsive/examples/child-rows/column-control.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/child-rows/custom-renderer.html b/assets/plugins/datatables/extensions/Responsive/examples/child-rows/custom-renderer.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/child-rows/disable-child-rows.html b/assets/plugins/datatables/extensions/Responsive/examples/child-rows/disable-child-rows.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/child-rows/index.html b/assets/plugins/datatables/extensions/Responsive/examples/child-rows/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/child-rows/right-column.html b/assets/plugins/datatables/extensions/Responsive/examples/child-rows/right-column.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/child-rows/whole-row-control.html b/assets/plugins/datatables/extensions/Responsive/examples/child-rows/whole-row-control.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/display-control/auto.html b/assets/plugins/datatables/extensions/Responsive/examples/display-control/auto.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/display-control/classes.html b/assets/plugins/datatables/extensions/Responsive/examples/display-control/classes.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/display-control/complexHeader.html b/assets/plugins/datatables/extensions/Responsive/examples/display-control/complexHeader.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/display-control/fixedHeader.html b/assets/plugins/datatables/extensions/Responsive/examples/display-control/fixedHeader.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/display-control/index.html b/assets/plugins/datatables/extensions/Responsive/examples/display-control/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/display-control/init-classes.html b/assets/plugins/datatables/extensions/Responsive/examples/display-control/init-classes.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/index.html b/assets/plugins/datatables/extensions/Responsive/examples/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/initialisation/ajax.html b/assets/plugins/datatables/extensions/Responsive/examples/initialisation/ajax.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/initialisation/className.html b/assets/plugins/datatables/extensions/Responsive/examples/initialisation/className.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/initialisation/default.html b/assets/plugins/datatables/extensions/Responsive/examples/initialisation/default.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/initialisation/index.html b/assets/plugins/datatables/extensions/Responsive/examples/initialisation/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/initialisation/new.html b/assets/plugins/datatables/extensions/Responsive/examples/initialisation/new.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/initialisation/option.html b/assets/plugins/datatables/extensions/Responsive/examples/initialisation/option.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/styling/bootstrap.html b/assets/plugins/datatables/extensions/Responsive/examples/styling/bootstrap.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/styling/compact.html b/assets/plugins/datatables/extensions/Responsive/examples/styling/compact.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/styling/foundation.html b/assets/plugins/datatables/extensions/Responsive/examples/styling/foundation.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/styling/index.html b/assets/plugins/datatables/extensions/Responsive/examples/styling/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/examples/styling/scrolling.html b/assets/plugins/datatables/extensions/Responsive/examples/styling/scrolling.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/js/dataTables.responsive.js b/assets/plugins/datatables/extensions/Responsive/js/dataTables.responsive.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Responsive/js/dataTables.responsive.min.js b/assets/plugins/datatables/extensions/Responsive/js/dataTables.responsive.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/Readme.txt b/assets/plugins/datatables/extensions/Scroller/Readme.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/css/dataTables.scroller.css b/assets/plugins/datatables/extensions/Scroller/css/dataTables.scroller.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/css/dataTables.scroller.min.css b/assets/plugins/datatables/extensions/Scroller/css/dataTables.scroller.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/examples/api_scrolling.html b/assets/plugins/datatables/extensions/Scroller/examples/api_scrolling.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/examples/data/2500.txt b/assets/plugins/datatables/extensions/Scroller/examples/data/2500.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/examples/data/ssp.php b/assets/plugins/datatables/extensions/Scroller/examples/data/ssp.php old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/examples/index.html b/assets/plugins/datatables/extensions/Scroller/examples/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/examples/large_js_source.html b/assets/plugins/datatables/extensions/Scroller/examples/large_js_source.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/examples/server-side_processing.html b/assets/plugins/datatables/extensions/Scroller/examples/server-side_processing.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/examples/simple.html b/assets/plugins/datatables/extensions/Scroller/examples/simple.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/examples/state_saving.html b/assets/plugins/datatables/extensions/Scroller/examples/state_saving.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/images/loading-background.png b/assets/plugins/datatables/extensions/Scroller/images/loading-background.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/js/dataTables.scroller.js b/assets/plugins/datatables/extensions/Scroller/js/dataTables.scroller.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/Scroller/js/dataTables.scroller.min.js b/assets/plugins/datatables/extensions/Scroller/js/dataTables.scroller.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/Readme.md b/assets/plugins/datatables/extensions/TableTools/Readme.md old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/css/dataTables.tableTools.css b/assets/plugins/datatables/extensions/TableTools/css/dataTables.tableTools.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/css/dataTables.tableTools.min.css b/assets/plugins/datatables/extensions/TableTools/css/dataTables.tableTools.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/ajax.html b/assets/plugins/datatables/extensions/TableTools/examples/ajax.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/alter_buttons.html b/assets/plugins/datatables/extensions/TableTools/examples/alter_buttons.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/bootstrap.html b/assets/plugins/datatables/extensions/TableTools/examples/bootstrap.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/button_text.html b/assets/plugins/datatables/extensions/TableTools/examples/button_text.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/collection.html b/assets/plugins/datatables/extensions/TableTools/examples/collection.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/defaults.html b/assets/plugins/datatables/extensions/TableTools/examples/defaults.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/index.html b/assets/plugins/datatables/extensions/TableTools/examples/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/jqueryui.html b/assets/plugins/datatables/extensions/TableTools/examples/jqueryui.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/multi_instance.html b/assets/plugins/datatables/extensions/TableTools/examples/multi_instance.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/multiple_tables.html b/assets/plugins/datatables/extensions/TableTools/examples/multiple_tables.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/new_init.html b/assets/plugins/datatables/extensions/TableTools/examples/new_init.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/pdf_message.html b/assets/plugins/datatables/extensions/TableTools/examples/pdf_message.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/plug-in.html b/assets/plugins/datatables/extensions/TableTools/examples/plug-in.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/select_column.html b/assets/plugins/datatables/extensions/TableTools/examples/select_column.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/select_multi.html b/assets/plugins/datatables/extensions/TableTools/examples/select_multi.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/select_os.html b/assets/plugins/datatables/extensions/TableTools/examples/select_os.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/select_single.html b/assets/plugins/datatables/extensions/TableTools/examples/select_single.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/simple.html b/assets/plugins/datatables/extensions/TableTools/examples/simple.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/examples/swf_path.html b/assets/plugins/datatables/extensions/TableTools/examples/swf_path.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/collection.png b/assets/plugins/datatables/extensions/TableTools/images/collection.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/collection_hover.png b/assets/plugins/datatables/extensions/TableTools/images/collection_hover.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/copy.png b/assets/plugins/datatables/extensions/TableTools/images/copy.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/copy_hover.png b/assets/plugins/datatables/extensions/TableTools/images/copy_hover.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/csv.png b/assets/plugins/datatables/extensions/TableTools/images/csv.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/csv_hover.png b/assets/plugins/datatables/extensions/TableTools/images/csv_hover.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/pdf.png b/assets/plugins/datatables/extensions/TableTools/images/pdf.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/pdf_hover.png b/assets/plugins/datatables/extensions/TableTools/images/pdf_hover.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/print.png b/assets/plugins/datatables/extensions/TableTools/images/print.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/print_hover.png b/assets/plugins/datatables/extensions/TableTools/images/print_hover.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/psd/collection.psd b/assets/plugins/datatables/extensions/TableTools/images/psd/collection.psd old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/psd/copy document.psd b/assets/plugins/datatables/extensions/TableTools/images/psd/copy document.psd old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/psd/file_types.psd b/assets/plugins/datatables/extensions/TableTools/images/psd/file_types.psd old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/psd/printer.psd b/assets/plugins/datatables/extensions/TableTools/images/psd/printer.psd old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/xls.png b/assets/plugins/datatables/extensions/TableTools/images/xls.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/images/xls_hover.png b/assets/plugins/datatables/extensions/TableTools/images/xls_hover.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/js/dataTables.tableTools.js b/assets/plugins/datatables/extensions/TableTools/js/dataTables.tableTools.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/js/dataTables.tableTools.min.js b/assets/plugins/datatables/extensions/TableTools/js/dataTables.tableTools.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf b/assets/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf b/assets/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/License.txt b/assets/plugins/datatables/extensions/colreorder/License.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/Readme.md b/assets/plugins/datatables/extensions/colreorder/Readme.md old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/css/dataTables.colReorder.css b/assets/plugins/datatables/extensions/colreorder/css/dataTables.colReorder.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/css/dataTables.colReorder.min.css b/assets/plugins/datatables/extensions/colreorder/css/dataTables.colReorder.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/alt_insert.html b/assets/plugins/datatables/extensions/colreorder/examples/alt_insert.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/col_filter.html b/assets/plugins/datatables/extensions/colreorder/examples/col_filter.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/colvis.html b/assets/plugins/datatables/extensions/colreorder/examples/colvis.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/fixedcolumns.html b/assets/plugins/datatables/extensions/colreorder/examples/fixedcolumns.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/fixedheader.html b/assets/plugins/datatables/extensions/colreorder/examples/fixedheader.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/index.html b/assets/plugins/datatables/extensions/colreorder/examples/index.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/jqueryui.html b/assets/plugins/datatables/extensions/colreorder/examples/jqueryui.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/new_init.html b/assets/plugins/datatables/extensions/colreorder/examples/new_init.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/predefined.html b/assets/plugins/datatables/extensions/colreorder/examples/predefined.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/realtime.html b/assets/plugins/datatables/extensions/colreorder/examples/realtime.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/reset.html b/assets/plugins/datatables/extensions/colreorder/examples/reset.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/scrolling.html b/assets/plugins/datatables/extensions/colreorder/examples/scrolling.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/server_side.html b/assets/plugins/datatables/extensions/colreorder/examples/server_side.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/simple.html b/assets/plugins/datatables/extensions/colreorder/examples/simple.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/examples/state_save.html b/assets/plugins/datatables/extensions/colreorder/examples/state_save.html old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/images/insert.png b/assets/plugins/datatables/extensions/colreorder/images/insert.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/js/dataTables.colReorder.js b/assets/plugins/datatables/extensions/colreorder/js/dataTables.colReorder.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/extensions/colreorder/js/dataTables.colReorder.min.js b/assets/plugins/datatables/extensions/colreorder/js/dataTables.colReorder.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/images/sort_asc.png b/assets/plugins/datatables/images/sort_asc.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/images/sort_asc_disabled.png b/assets/plugins/datatables/images/sort_asc_disabled.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/images/sort_both.png b/assets/plugins/datatables/images/sort_both.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/images/sort_desc.png b/assets/plugins/datatables/images/sort_desc.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/images/sort_desc_disabled.png b/assets/plugins/datatables/images/sort_desc_disabled.png old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/jquery.dataTables.css b/assets/plugins/datatables/jquery.dataTables.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/jquery.dataTables.js b/assets/plugins/datatables/jquery.dataTables.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/jquery.dataTables.min.css b/assets/plugins/datatables/jquery.dataTables.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/jquery.dataTables.min.js b/assets/plugins/datatables/jquery.dataTables.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datatables/jquery.dataTables_themeroller.css b/assets/plugins/datatables/jquery.dataTables_themeroller.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/bootstrap-datepicker.js b/assets/plugins/datepicker/bootstrap-datepicker.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/datepicker3.css b/assets/plugins/datepicker/datepicker3.css old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.ar.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.ar.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.az.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.az.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.bg.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.bg.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.ca.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.ca.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.cs.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.cs.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.cy.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.cy.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.da.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.da.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.de.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.de.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.el.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.el.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.es.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.es.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.et.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.et.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.fa.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.fa.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.fi.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.fi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.fr.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.fr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.gl.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.gl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.he.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.he.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.hr.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.hr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.hu.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.hu.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.id.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.id.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.is.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.is.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.it.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.it.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.ja.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.ja.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.ka.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.ka.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.kk.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.kk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.kr.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.kr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.lt.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.lt.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.lv.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.lv.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.mk.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.mk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.ms.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.ms.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.nb.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.nb.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.nl-BE.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.nl-BE.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.nl.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.nl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.no.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.no.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.pl.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.pl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.pt.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.pt.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.ro.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.ro.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.rs.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.rs.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.ru.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.ru.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.sk.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.sk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.sl.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.sl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.sq.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.sq.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.sv.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.sv.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.sw.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.sw.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.th.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.th.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.tr.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.tr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.ua.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.ua.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.vi.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.vi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js old mode 100755 new mode 100644 diff --git a/assets/plugins/datepicker/locales/bootstrap-datepicker.zh-TW.js b/assets/plugins/datepicker/locales/bootstrap-datepicker.zh-TW.js old mode 100755 new mode 100644 diff --git a/assets/plugins/daterangepicker/daterangepicker-bs3.css b/assets/plugins/daterangepicker/daterangepicker-bs3.css old mode 100755 new mode 100644 diff --git a/assets/plugins/daterangepicker/daterangepicker.css b/assets/plugins/daterangepicker/daterangepicker.css old mode 100755 new mode 100644 diff --git a/assets/plugins/daterangepicker/daterangepicker.js b/assets/plugins/daterangepicker/daterangepicker.js old mode 100755 new mode 100644 diff --git a/assets/plugins/daterangepicker/moment.js b/assets/plugins/daterangepicker/moment.js old mode 100755 new mode 100644 diff --git a/assets/plugins/daterangepicker/moment.min.js b/assets/plugins/daterangepicker/moment.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/fastclick/fastclick.js b/assets/plugins/fastclick/fastclick.js old mode 100755 new mode 100644 diff --git a/assets/plugins/fastclick/fastclick.min.js b/assets/plugins/fastclick/fastclick.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/excanvas.js b/assets/plugins/flot/excanvas.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/excanvas.min.js b/assets/plugins/flot/excanvas.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.colorhelpers.js b/assets/plugins/flot/jquery.colorhelpers.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.colorhelpers.min.js b/assets/plugins/flot/jquery.colorhelpers.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.canvas.js b/assets/plugins/flot/jquery.flot.canvas.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.canvas.min.js b/assets/plugins/flot/jquery.flot.canvas.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.categories.js b/assets/plugins/flot/jquery.flot.categories.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.categories.min.js b/assets/plugins/flot/jquery.flot.categories.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.crosshair.js b/assets/plugins/flot/jquery.flot.crosshair.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.crosshair.min.js b/assets/plugins/flot/jquery.flot.crosshair.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.errorbars.js b/assets/plugins/flot/jquery.flot.errorbars.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.errorbars.min.js b/assets/plugins/flot/jquery.flot.errorbars.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.fillbetween.js b/assets/plugins/flot/jquery.flot.fillbetween.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.fillbetween.min.js b/assets/plugins/flot/jquery.flot.fillbetween.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.image.js b/assets/plugins/flot/jquery.flot.image.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.image.min.js b/assets/plugins/flot/jquery.flot.image.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.js b/assets/plugins/flot/jquery.flot.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.min.js b/assets/plugins/flot/jquery.flot.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.navigate.js b/assets/plugins/flot/jquery.flot.navigate.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.navigate.min.js b/assets/plugins/flot/jquery.flot.navigate.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.pie.js b/assets/plugins/flot/jquery.flot.pie.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.pie.min.js b/assets/plugins/flot/jquery.flot.pie.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.resize.js b/assets/plugins/flot/jquery.flot.resize.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.resize.min.js b/assets/plugins/flot/jquery.flot.resize.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.selection.js b/assets/plugins/flot/jquery.flot.selection.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.selection.min.js b/assets/plugins/flot/jquery.flot.selection.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.stack.js b/assets/plugins/flot/jquery.flot.stack.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.stack.min.js b/assets/plugins/flot/jquery.flot.stack.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.symbol.js b/assets/plugins/flot/jquery.flot.symbol.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.symbol.min.js b/assets/plugins/flot/jquery.flot.symbol.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.threshold.js b/assets/plugins/flot/jquery.flot.threshold.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.threshold.min.js b/assets/plugins/flot/jquery.flot.threshold.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.time.js b/assets/plugins/flot/jquery.flot.time.js old mode 100755 new mode 100644 diff --git a/assets/plugins/flot/jquery.flot.time.min.js b/assets/plugins/flot/jquery.flot.time.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/fullcalendar/fullcalendar.css b/assets/plugins/fullcalendar/fullcalendar.css old mode 100755 new mode 100644 diff --git a/assets/plugins/fullcalendar/fullcalendar.js b/assets/plugins/fullcalendar/fullcalendar.js old mode 100755 new mode 100644 diff --git a/assets/plugins/fullcalendar/fullcalendar.min.css b/assets/plugins/fullcalendar/fullcalendar.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/fullcalendar/fullcalendar.min.js b/assets/plugins/fullcalendar/fullcalendar.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/fullcalendar/fullcalendar.print.css b/assets/plugins/fullcalendar/fullcalendar.print.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/all.css b/assets/plugins/iCheck/all.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/_all.css b/assets/plugins/iCheck/flat/_all.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/aero.css b/assets/plugins/iCheck/flat/aero.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/aero.png b/assets/plugins/iCheck/flat/aero.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/aero@2x.png b/assets/plugins/iCheck/flat/aero@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/blue.css b/assets/plugins/iCheck/flat/blue.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/blue.png b/assets/plugins/iCheck/flat/blue.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/blue@2x.png b/assets/plugins/iCheck/flat/blue@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/flat.css b/assets/plugins/iCheck/flat/flat.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/flat.png b/assets/plugins/iCheck/flat/flat.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/flat@2x.png b/assets/plugins/iCheck/flat/flat@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/green.css b/assets/plugins/iCheck/flat/green.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/green.png b/assets/plugins/iCheck/flat/green.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/green@2x.png b/assets/plugins/iCheck/flat/green@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/grey.css b/assets/plugins/iCheck/flat/grey.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/grey.png b/assets/plugins/iCheck/flat/grey.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/grey@2x.png b/assets/plugins/iCheck/flat/grey@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/orange.css b/assets/plugins/iCheck/flat/orange.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/orange.png b/assets/plugins/iCheck/flat/orange.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/orange@2x.png b/assets/plugins/iCheck/flat/orange@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/pink.css b/assets/plugins/iCheck/flat/pink.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/pink.png b/assets/plugins/iCheck/flat/pink.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/pink@2x.png b/assets/plugins/iCheck/flat/pink@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/purple.css b/assets/plugins/iCheck/flat/purple.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/purple.png b/assets/plugins/iCheck/flat/purple.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/purple@2x.png b/assets/plugins/iCheck/flat/purple@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/red.css b/assets/plugins/iCheck/flat/red.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/red.png b/assets/plugins/iCheck/flat/red.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/red@2x.png b/assets/plugins/iCheck/flat/red@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/yellow.css b/assets/plugins/iCheck/flat/yellow.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/yellow.png b/assets/plugins/iCheck/flat/yellow.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/flat/yellow@2x.png b/assets/plugins/iCheck/flat/yellow@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/futurico/futurico.css b/assets/plugins/iCheck/futurico/futurico.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/futurico/futurico.png b/assets/plugins/iCheck/futurico/futurico.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/futurico/futurico@2x.png b/assets/plugins/iCheck/futurico/futurico@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/icheck.js b/assets/plugins/iCheck/icheck.js old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/icheck.min.js b/assets/plugins/iCheck/icheck.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/_all.css b/assets/plugins/iCheck/line/_all.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/aero.css b/assets/plugins/iCheck/line/aero.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/blue.css b/assets/plugins/iCheck/line/blue.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/green.css b/assets/plugins/iCheck/line/green.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/grey.css b/assets/plugins/iCheck/line/grey.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/line.css b/assets/plugins/iCheck/line/line.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/line.png b/assets/plugins/iCheck/line/line.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/line@2x.png b/assets/plugins/iCheck/line/line@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/orange.css b/assets/plugins/iCheck/line/orange.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/pink.css b/assets/plugins/iCheck/line/pink.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/purple.css b/assets/plugins/iCheck/line/purple.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/red.css b/assets/plugins/iCheck/line/red.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/line/yellow.css b/assets/plugins/iCheck/line/yellow.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/_all.css b/assets/plugins/iCheck/minimal/_all.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/aero.css b/assets/plugins/iCheck/minimal/aero.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/aero.png b/assets/plugins/iCheck/minimal/aero.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/aero@2x.png b/assets/plugins/iCheck/minimal/aero@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/blue.css b/assets/plugins/iCheck/minimal/blue.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/blue.png b/assets/plugins/iCheck/minimal/blue.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/blue@2x.png b/assets/plugins/iCheck/minimal/blue@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/green.css b/assets/plugins/iCheck/minimal/green.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/green.png b/assets/plugins/iCheck/minimal/green.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/green@2x.png b/assets/plugins/iCheck/minimal/green@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/grey.css b/assets/plugins/iCheck/minimal/grey.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/grey.png b/assets/plugins/iCheck/minimal/grey.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/grey@2x.png b/assets/plugins/iCheck/minimal/grey@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/minimal.css b/assets/plugins/iCheck/minimal/minimal.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/minimal.png b/assets/plugins/iCheck/minimal/minimal.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/minimal@2x.png b/assets/plugins/iCheck/minimal/minimal@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/orange.css b/assets/plugins/iCheck/minimal/orange.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/orange.png b/assets/plugins/iCheck/minimal/orange.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/orange@2x.png b/assets/plugins/iCheck/minimal/orange@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/pink.css b/assets/plugins/iCheck/minimal/pink.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/pink.png b/assets/plugins/iCheck/minimal/pink.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/pink@2x.png b/assets/plugins/iCheck/minimal/pink@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/purple.css b/assets/plugins/iCheck/minimal/purple.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/purple.png b/assets/plugins/iCheck/minimal/purple.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/purple@2x.png b/assets/plugins/iCheck/minimal/purple@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/red.css b/assets/plugins/iCheck/minimal/red.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/red.png b/assets/plugins/iCheck/minimal/red.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/red@2x.png b/assets/plugins/iCheck/minimal/red@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/yellow.css b/assets/plugins/iCheck/minimal/yellow.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/yellow.png b/assets/plugins/iCheck/minimal/yellow.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/minimal/yellow@2x.png b/assets/plugins/iCheck/minimal/yellow@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/polaris/polaris.css b/assets/plugins/iCheck/polaris/polaris.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/polaris/polaris.png b/assets/plugins/iCheck/polaris/polaris.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/polaris/polaris@2x.png b/assets/plugins/iCheck/polaris/polaris@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/_all.css b/assets/plugins/iCheck/square/_all.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/aero.css b/assets/plugins/iCheck/square/aero.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/aero.png b/assets/plugins/iCheck/square/aero.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/aero@2x.png b/assets/plugins/iCheck/square/aero@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/blue.css b/assets/plugins/iCheck/square/blue.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/blue.png b/assets/plugins/iCheck/square/blue.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/blue@2x.png b/assets/plugins/iCheck/square/blue@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/green.css b/assets/plugins/iCheck/square/green.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/green.png b/assets/plugins/iCheck/square/green.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/green@2x.png b/assets/plugins/iCheck/square/green@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/grey.css b/assets/plugins/iCheck/square/grey.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/grey.png b/assets/plugins/iCheck/square/grey.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/grey@2x.png b/assets/plugins/iCheck/square/grey@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/orange.css b/assets/plugins/iCheck/square/orange.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/orange.png b/assets/plugins/iCheck/square/orange.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/orange@2x.png b/assets/plugins/iCheck/square/orange@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/pink.css b/assets/plugins/iCheck/square/pink.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/pink.png b/assets/plugins/iCheck/square/pink.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/pink@2x.png b/assets/plugins/iCheck/square/pink@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/purple.css b/assets/plugins/iCheck/square/purple.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/purple.png b/assets/plugins/iCheck/square/purple.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/purple@2x.png b/assets/plugins/iCheck/square/purple@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/red.css b/assets/plugins/iCheck/square/red.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/red.png b/assets/plugins/iCheck/square/red.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/red@2x.png b/assets/plugins/iCheck/square/red@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/square.css b/assets/plugins/iCheck/square/square.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/square.png b/assets/plugins/iCheck/square/square.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/square@2x.png b/assets/plugins/iCheck/square/square@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/yellow.css b/assets/plugins/iCheck/square/yellow.css old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/yellow.png b/assets/plugins/iCheck/square/yellow.png old mode 100755 new mode 100644 diff --git a/assets/plugins/iCheck/square/yellow@2x.png b/assets/plugins/iCheck/square/yellow@2x.png old mode 100755 new mode 100644 diff --git a/assets/plugins/input-mask/jquery.inputmask.date.extensions.js b/assets/plugins/input-mask/jquery.inputmask.date.extensions.js old mode 100755 new mode 100644 diff --git a/assets/plugins/input-mask/jquery.inputmask.extensions.js b/assets/plugins/input-mask/jquery.inputmask.extensions.js old mode 100755 new mode 100644 diff --git a/assets/plugins/input-mask/jquery.inputmask.js b/assets/plugins/input-mask/jquery.inputmask.js old mode 100755 new mode 100644 diff --git a/assets/plugins/input-mask/jquery.inputmask.numeric.extensions.js b/assets/plugins/input-mask/jquery.inputmask.numeric.extensions.js old mode 100755 new mode 100644 diff --git a/assets/plugins/input-mask/jquery.inputmask.phone.extensions.js b/assets/plugins/input-mask/jquery.inputmask.phone.extensions.js old mode 100755 new mode 100644 diff --git a/assets/plugins/input-mask/jquery.inputmask.regex.extensions.js b/assets/plugins/input-mask/jquery.inputmask.regex.extensions.js old mode 100755 new mode 100644 diff --git a/assets/plugins/input-mask/phone-codes/phone-be.json b/assets/plugins/input-mask/phone-codes/phone-be.json old mode 100755 new mode 100644 diff --git a/assets/plugins/input-mask/phone-codes/phone-codes.json b/assets/plugins/input-mask/phone-codes/phone-codes.json old mode 100755 new mode 100644 diff --git a/assets/plugins/input-mask/phone-codes/readme.txt b/assets/plugins/input-mask/phone-codes/readme.txt old mode 100755 new mode 100644 diff --git a/assets/plugins/ionslider/img/sprite-skin-flat.png b/assets/plugins/ionslider/img/sprite-skin-flat.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ionslider/img/sprite-skin-nice.png b/assets/plugins/ionslider/img/sprite-skin-nice.png old mode 100755 new mode 100644 diff --git a/assets/plugins/ionslider/ion.rangeSlider.css b/assets/plugins/ionslider/ion.rangeSlider.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ionslider/ion.rangeSlider.min.js b/assets/plugins/ionslider/ion.rangeSlider.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/ionslider/ion.rangeSlider.skinFlat.css b/assets/plugins/ionslider/ion.rangeSlider.skinFlat.css old mode 100755 new mode 100644 diff --git a/assets/plugins/ionslider/ion.rangeSlider.skinNice.css b/assets/plugins/ionslider/ion.rangeSlider.skinNice.css old mode 100755 new mode 100644 diff --git a/assets/plugins/jQuery/jQuery-2.1.4.min.js b/assets/plugins/jQuery/jQuery-2.1.4.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/jQueryUI/jquery-ui-1.10.3.js b/assets/plugins/jQueryUI/jquery-ui-1.10.3.js old mode 100755 new mode 100644 diff --git a/assets/plugins/jQueryUI/jquery-ui-1.10.3.min.js b/assets/plugins/jQueryUI/jquery-ui-1.10.3.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/jvectormap/jquery-jvectormap-1.2.2.css b/assets/plugins/jvectormap/jquery-jvectormap-1.2.2.css old mode 100755 new mode 100644 diff --git a/assets/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js b/assets/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/jvectormap/jquery-jvectormap-world-mill-en.js b/assets/plugins/jvectormap/jquery-jvectormap-world-mill-en.js old mode 100755 new mode 100644 diff --git a/assets/plugins/knob/jquery.knob.js b/assets/plugins/knob/jquery.knob.js old mode 100755 new mode 100644 diff --git a/assets/plugins/morris/morris.css b/assets/plugins/morris/morris.css old mode 100755 new mode 100644 diff --git a/assets/plugins/morris/morris.js b/assets/plugins/morris/morris.js old mode 100755 new mode 100644 diff --git a/assets/plugins/morris/morris.min.js b/assets/plugins/morris/morris.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/pace/pace.js b/assets/plugins/pace/pace.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/ar.js b/assets/plugins/select2/i18n/ar.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/az.js b/assets/plugins/select2/i18n/az.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/bg.js b/assets/plugins/select2/i18n/bg.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/ca.js b/assets/plugins/select2/i18n/ca.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/cs.js b/assets/plugins/select2/i18n/cs.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/da.js b/assets/plugins/select2/i18n/da.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/de.js b/assets/plugins/select2/i18n/de.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/el.js b/assets/plugins/select2/i18n/el.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/en.js b/assets/plugins/select2/i18n/en.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/es.js b/assets/plugins/select2/i18n/es.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/et.js b/assets/plugins/select2/i18n/et.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/eu.js b/assets/plugins/select2/i18n/eu.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/fa.js b/assets/plugins/select2/i18n/fa.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/fi.js b/assets/plugins/select2/i18n/fi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/fr.js b/assets/plugins/select2/i18n/fr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/gl.js b/assets/plugins/select2/i18n/gl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/he.js b/assets/plugins/select2/i18n/he.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/hi.js b/assets/plugins/select2/i18n/hi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/hr.js b/assets/plugins/select2/i18n/hr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/hu.js b/assets/plugins/select2/i18n/hu.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/id.js b/assets/plugins/select2/i18n/id.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/is.js b/assets/plugins/select2/i18n/is.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/it.js b/assets/plugins/select2/i18n/it.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/ja.js b/assets/plugins/select2/i18n/ja.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/km.js b/assets/plugins/select2/i18n/km.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/ko.js b/assets/plugins/select2/i18n/ko.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/lt.js b/assets/plugins/select2/i18n/lt.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/lv.js b/assets/plugins/select2/i18n/lv.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/mk.js b/assets/plugins/select2/i18n/mk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/ms.js b/assets/plugins/select2/i18n/ms.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/nb.js b/assets/plugins/select2/i18n/nb.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/nl.js b/assets/plugins/select2/i18n/nl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/pl.js b/assets/plugins/select2/i18n/pl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/pt-BR.js b/assets/plugins/select2/i18n/pt-BR.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/pt.js b/assets/plugins/select2/i18n/pt.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/ro.js b/assets/plugins/select2/i18n/ro.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/ru.js b/assets/plugins/select2/i18n/ru.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/sk.js b/assets/plugins/select2/i18n/sk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/sr-Cyrl.js b/assets/plugins/select2/i18n/sr-Cyrl.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/sr.js b/assets/plugins/select2/i18n/sr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/sv.js b/assets/plugins/select2/i18n/sv.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/th.js b/assets/plugins/select2/i18n/th.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/tr.js b/assets/plugins/select2/i18n/tr.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/uk.js b/assets/plugins/select2/i18n/uk.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/vi.js b/assets/plugins/select2/i18n/vi.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/zh-CN.js b/assets/plugins/select2/i18n/zh-CN.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/i18n/zh-TW.js b/assets/plugins/select2/i18n/zh-TW.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/select2.css b/assets/plugins/select2/select2.css old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/select2.full.js b/assets/plugins/select2/select2.full.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/select2.full.min.js b/assets/plugins/select2/select2.full.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/select2.js b/assets/plugins/select2/select2.js old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/select2.min.css b/assets/plugins/select2/select2.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/select2/select2.min.js b/assets/plugins/select2/select2.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/slimScroll/jquery.slimscroll.js b/assets/plugins/slimScroll/jquery.slimscroll.js old mode 100755 new mode 100644 diff --git a/assets/plugins/slimScroll/jquery.slimscroll.min.js b/assets/plugins/slimScroll/jquery.slimscroll.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/sparkline/jquery.sparkline.js b/assets/plugins/sparkline/jquery.sparkline.js old mode 100755 new mode 100644 diff --git a/assets/plugins/sparkline/jquery.sparkline.min.js b/assets/plugins/sparkline/jquery.sparkline.min.js old mode 100755 new mode 100644 diff --git a/assets/plugins/timepicker/bootstrap-timepicker.css b/assets/plugins/timepicker/bootstrap-timepicker.css old mode 100755 new mode 100644 diff --git a/assets/plugins/timepicker/bootstrap-timepicker.js b/assets/plugins/timepicker/bootstrap-timepicker.js old mode 100755 new mode 100644 diff --git a/assets/plugins/timepicker/bootstrap-timepicker.min.css b/assets/plugins/timepicker/bootstrap-timepicker.min.css old mode 100755 new mode 100644 diff --git a/assets/plugins/timepicker/bootstrap-timepicker.min.js b/assets/plugins/timepicker/bootstrap-timepicker.min.js old mode 100755 new mode 100644 diff --git a/assets/purchase_order.html b/assets/purchase_order.html old mode 100755 new mode 100644 diff --git a/assets/raw_material.html b/assets/raw_material.html old mode 100755 new mode 100644 diff --git a/assets/register.html b/assets/register.html old mode 100755 new mode 100644 diff --git a/assets/scss/badgets_labels.scss b/assets/scss/badgets_labels.scss old mode 100755 new mode 100644 diff --git a/assets/scss/base.scss b/assets/scss/base.scss old mode 100755 new mode 100644 diff --git a/assets/scss/buttons.scss b/assets/scss/buttons.scss old mode 100755 new mode 100644 diff --git a/assets/scss/custom.scss b/assets/scss/custom.scss old mode 100755 new mode 100644 diff --git a/assets/scss/elements.scss b/assets/scss/elements.scss old mode 100755 new mode 100644 diff --git a/assets/scss/media.scss b/assets/scss/media.scss old mode 100755 new mode 100644 diff --git a/assets/scss/mixins.scss b/assets/scss/mixins.scss old mode 100755 new mode 100644 diff --git a/assets/scss/navigation.scss b/assets/scss/navigation.scss old mode 100755 new mode 100644 diff --git a/assets/scss/pages.scss b/assets/scss/pages.scss old mode 100755 new mode 100644 diff --git a/assets/scss/rtl.scss b/assets/scss/rtl.scss old mode 100755 new mode 100644 diff --git a/assets/scss/sidebar.scss b/assets/scss/sidebar.scss old mode 100755 new mode 100644 diff --git a/assets/scss/skins.scss b/assets/scss/skins.scss old mode 100755 new mode 100644 diff --git a/assets/scss/style.scss b/assets/scss/style.scss old mode 100755 new mode 100644 diff --git a/assets/scss/theme-config.scss b/assets/scss/theme-config.scss old mode 100755 new mode 100644 diff --git a/assets/scss/top_navigation.scss b/assets/scss/top_navigation.scss old mode 100755 new mode 100644 diff --git a/assets/scss/typography.scss b/assets/scss/typography.scss old mode 100755 new mode 100644 diff --git a/assets/scss/variables.scss b/assets/scss/variables.scss old mode 100755 new mode 100644 diff --git a/assets/supplier.html b/assets/supplier.html old mode 100755 new mode 100644