コード例 #1
0
ファイル: GeneralRevision.php プロジェクト: armic/erpts
 function initBarangayList()
 {
     $this->tpl->set_block("rptsTemplate", "BarangayList", "BarangayListBlock");
     $BarangayList = new SoapObject(NCCBIZ . "BarangayList.php", "urn:Object");
     if (!($xmlStr = $BarangayList->getBarangayList(0, " WHERE " . BARANGAY_TABLE . ".status='active' ORDER BY description"))) {
         $this->tpl->set_var("barangayID", "");
         $this->tpl->set_var("barangay", "empty barangay list");
         $this->tpl->parse("BarangayListBlock", "BarangayList", true);
     } else {
         if (!($domDoc = domxml_open_mem($xmlStr))) {
             $this->tpl->set_var("barangayID", "");
             $this->tpl->set_var("barangay", "empty barangay list");
             $this->tpl->parse("BarangayListBlock", "BarangayList", true);
         } else {
             $barangayRecords = new BarangayRecords();
             $barangayRecords->parseDomDocument($domDoc);
             if (is_array($barangayRecords->arrayList)) {
                 foreach ($barangayRecords->arrayList as $key => $value) {
                     $this->tpl->set_var("barangayID", $value->getBarangayID());
                     $this->tpl->set_var("barangay", $value->getDescription());
                     $this->tpl->parse("BarangayListBlock", "BarangayList", true);
                 }
             }
         }
     }
 }
コード例 #2
0
ファイル: BarangayList.php プロジェクト: armic/erpts
 function searchBarangay($searchKey, $page = 0)
 {
     if ($page > 0) {
         $page = ($page - 1) * PAGE_BY;
         $limit = "LIMIT {$page}," . PAGE_BY;
     }
     $fields = array("code", "description", "status");
     $barangayRecords = new BarangayRecords();
     if ($barangayRecords->searchRecords($searchKey, $fields, $limit)) {
         if (!($domDoc = $barangayRecords->getDomDocument())) {
             return false;
         } else {
             $xmlStr = $domDoc->dump_mem(true);
             return $xmlStr;
         }
     } else {
         return false;
     }
 }
コード例 #3
0
ファイル: BarangayEncode.php プロジェクト: armic/erpts
 function codeAlreadyExists()
 {
     // allow duplicates if LGU type is Province
     $lguType = $this->getLGUType();
     if ($lguType == "Province") {
         return false;
     }
     $BarangayList = new SoapObject(NCCBIZ . "BarangayList.php", "urn:Object");
     if (!($xmlStr = $BarangayList->getBarangayList())) {
         return false;
     } else {
         if (!($domDoc = domxml_open_mem($xmlStr))) {
             return false;
         } else {
             $barangayRecords = new BarangayRecords();
             $barangayRecords->parseDomDocument($domDoc);
             $list = $barangayRecords->getArrayList();
             foreach ($list as $key => $barangay) {
                 if (strtoupper($this->formArray["code"]) == strtoupper($barangay->getCode())) {
                     if ($this->formArray["barangayID"] != $barangay->getBarangayID()) {
                         return true;
                     }
                 }
             }
         }
     }
 }
コード例 #4
0
ファイル: BarangayList.php プロジェクト: armic/erpts
 function Main()
 {
     switch ($this->formArray["formAction"]) {
         case "delete":
             if (count($this->formArray["barangayID"]) > 0) {
                 $BarangayList = new SoapObject(NCCBIZ . "BarangayList.php", "urn:Object");
                 if (!($deletedRows = $BarangayList->deleteBarangay($this->formArray["barangayID"]))) {
                     $this->tpl->set_var("msg", "SOAP failed");
                 } else {
                     $this->tpl->set_var("msg", $deletedRows . " records deleted");
                 }
             } else {
                 $this->tpl->set_var("msg", "0 records deleted");
             }
             break;
         case "activate":
             $BarangayList = new SoapObject(NCCBIZ . "BarangayList.php", "urn:Object");
             if (!($activeRows = $BarangayList->updateStatus($this->formArray["status"]))) {
                 $this->tpl->set_var("msg", "All records have status made <i>inactive</i>");
             } else {
                 $this->tpl->set_var("msg", $activeRows . " records have status made <i>active</i>");
             }
             break;
         case "cancel":
             header("location: BarangayList.php?" . $this->sess->name . "=" . $this->sess->id);
             exit;
             break;
         default:
             $this->tpl->set_var("msg", "");
     }
     $BarangayList = new SoapObject(NCCBIZ . "BarangayList.php", "urn:Object");
     $condition = $this->showHideInactive();
     $condition .= $this->sortBlocks();
     if (!($xmlStr = $BarangayList->getBarangayList(0, $condition))) {
         $this->tpl->set_block("rptsTemplate", "Table", "TableBlock");
         $this->tpl->set_var("TableBlock", "database is empty");
     } else {
         if (!($domDoc = domxml_open_mem($xmlStr))) {
             $this->tpl->set_block("rptsTemplate", "Table", "TableBlock");
             $this->tpl->set_var("TableBlock", "error xmlDoc");
         } else {
             $barangayRecords = new BarangayRecords();
             $barangayRecords->parseDomDocument($domDoc);
             $list = $barangayRecords->getArrayList();
             $this->tpl->set_block("rptsTemplate", "BarangayList", "BarangayListBlock");
             foreach ($list as $key => $value) {
                 $this->tpl->set_var("barangayID", $value->getBarangayID());
                 $this->tpl->set_var("code", $value->getCode());
                 $this->tpl->set_var("district", $this->getDistrict($value->getDistrictID()));
                 $this->tpl->set_var("municipalityCity", $this->getMunicipalityCity($this->getMunicipalityCityID($value->getDistrictID())));
                 $this->tpl->set_var("description", $value->getDescription());
                 $this->tpl->set_var("status", $value->getStatus());
                 $this->tpl->set_var("statusCheck", $this->getStatusCheck($value->getStatus()));
                 $this->tpl->parse("BarangayListBlock", "BarangayList", true);
             }
         }
     }
     $this->setForm();
     $this->tpl->set_var("uname", $this->user["uname"]);
     $this->tpl->set_var("today", date("F j, Y"));
     $this->tpl->parse("templatePage", "rptsTemplate");
     $this->tpl->finish("templatePage");
     $this->tpl->p("templatePage");
 }
コード例 #5
0
ファイル: BarangayListPrint.php プロジェクト: armic/erpts
 function Main()
 {
     switch ($this->formArray["formAction"]) {
         default:
             $this->tpl->set_var("msg", "");
     }
     $eRPTSSettingsDetails = new SoapObject(NCCBIZ . "eRPTSSettingsDetails.php", "urn:Object");
     if (!($xmlStr = $eRPTSSettingsDetails->getERPTSSettingsDetails(1))) {
         $this->tpl->set_block("rptsTemplate", "Table", "TableBlock");
         $this->tpl->set_var("TableBlock", "record not found");
     } else {
         if (!($domDoc = domxml_open_mem($xmlStr))) {
             $this->tpl->set_block("rptsTemplate", "Table", "TableBlock");
             $this->tpl->set_var("TableBlock", "error xmlDoc");
         } else {
             $erptsSettings = new eRPTSSettings();
             $erptsSettings->parseDomDocument($domDoc);
             $this->formArray["eRPTSSettingsID"] = $erptsSettings->getERPTSSettingsID();
             $this->formArray["lguName"] = $erptsSettings->getLguName();
             $this->formArray["lguType"] = $erptsSettings->getLguType();
             $this->formArray["chiefExecutiveDesignation"] = $erptsSettings->getChiefExecutiveDesignation();
             $this->formArray["chiefExecutiveFirstName"] = $erptsSettings->getChiefExecutiveFirstName();
             $this->formArray["chiefExecutiveMiddleName"] = $erptsSettings->getChiefExecutiveMiddleName();
             $this->formArray["chiefExecutiveLastName"] = $erptsSettings->getChiefExecutiveLastName();
             $this->formArray["assessorDesignation"] = $erptsSettings->getAssessorDesignation();
             $this->formArray["assessorFirstName"] = $erptsSettings->getAssessorFirstName();
             $this->formArray["assessorMiddleName"] = $erptsSettings->getAssessorMiddleName();
             $this->formArray["assessorLastName"] = $erptsSettings->getAssessorLastName();
             $this->formArray["treasurerDesignation"] = $erptsSettings->getTreasurerDesignation();
             $this->formArray["treasurerFirstName"] = $erptsSettings->getTreasurerFirstName();
             $this->formArray["treasurerMiddleName"] = $erptsSettings->getTreasurerMiddleName();
             $this->formArray["treasurerLastName"] = $erptsSettings->getTreasurerLastName();
         }
     }
     $BarangayList = new SoapObject(NCCBIZ . "BarangayList.php", "urn:Object");
     $condition = " WHERE " . BARANGAY_TABLE . ".status='active' ";
     $this->tpl->set_var("activeInactive", "(active ONLY)");
     $condition .= $this->sortBlocks();
     if (!($xmlStr = $BarangayList->getBarangayList(0, $condition))) {
         $this->tpl->set_block("rptsTemplate", "Table", "TableBlock");
         $this->tpl->set_var("TableBlock", "database is empty");
     } else {
         if (!($domDoc = domxml_open_mem($xmlStr))) {
             $this->tpl->set_block("rptsTemplate", "Table", "TableBlock");
             $this->tpl->set_var("TableBlock", "error xmlDoc");
         } else {
             $barangayRecords = new BarangayRecords();
             $barangayRecords->parseDomDocument($domDoc);
             $list = $barangayRecords->getArrayList();
             $this->tpl->set_var("totalRecords", count($list));
             $this->tpl->set_block("rptsTemplate", "BarangayList", "BarangayListBlock");
             foreach ($list as $key => $value) {
                 $this->tpl->set_var("barangayID", $value->getBarangayID());
                 $this->tpl->set_var("code", $value->getCode());
                 $this->tpl->set_var("district", $this->getDistrict($value->getDistrictID()));
                 $this->tpl->set_var("municipalityCity", $this->getMunicipalityCity($this->getMunicipalityCityID($value->getDistrictID())));
                 $this->tpl->set_var("description", $value->getDescription());
                 $this->tpl->set_var("status", $value->getStatus());
                 $this->tpl->set_var("statusCheck", $this->getStatusCheck($value->getStatus()));
                 $this->tpl->parse("BarangayListBlock", "BarangayList", true);
             }
         }
     }
     $this->setForm();
     $this->tpl->parse("templatePage", "rptsTemplate");
     $this->tpl->finish("templatePage");
     $this->tpl->p("templatePage");
 }