|
@@ -6,7 +6,6 @@ class ParserFile
|
6
|
6
|
|
7
|
7
|
protected $rutaDiaria = "";
|
8
|
8
|
protected $rutaMensual = FCPATH . "DOWNLOADS/MONTH/format";
|
9
|
|
- protected $esquema = array('cbc-place-ext', 'cac-place-ext', 'cbc', 'cac', 'ns1');
|
10
|
9
|
|
11
|
10
|
//TODO: Añadir los nodos que falten mirando la libreria de java
|
12
|
11
|
|
|
@@ -36,31 +35,31 @@ class ParserFile
|
36
|
35
|
|
37
|
36
|
$resultEntries[$filename][$aux]['general'] = $this->nodoEntry($row, $datosPerfil->id);
|
38
|
37
|
|
39
|
|
- $resultEntries[$filename][$aux]['contractInfo'] = $this->nodoContractFolderStatus($row); //
|
|
38
|
+ $resultEntries[$filename][$aux]['contractInfo'] = $this->nodoContractFolderStatus($row);
|
40
|
39
|
|
41
|
|
- $resultEntries[$filename][$aux]['locatedContractingParty'] = $this->nodoLocatedContractingParty($row); //
|
|
40
|
+ $resultEntries[$filename][$aux]['locatedContractingParty'] = $this->nodoLocatedContractingParty($row);
|
42
|
41
|
|
43
|
|
- $resultEntries[$filename][$aux]['party'] = $this->nodoParty($row); //
|
|
42
|
+ $resultEntries[$filename][$aux]['party'] = $this->nodoParty($row);
|
44
|
43
|
|
45
|
|
- $resultEntries[$filename][$aux]['procurementProject'] = $this->nodoPresupuesto($row); //
|
|
44
|
+ $resultEntries[$filename][$aux]['procurementProject'] = $this->nodoPresupuesto($row);
|
46
|
45
|
|
47
|
|
- $resultEntries[$filename][$aux]['procurementProjectLot'] = $this->nodoProcurementProjectLot($row); //
|
|
46
|
+ $resultEntries[$filename][$aux]['procurementProjectLot'] = $this->nodoProcurementProjectLot($row);
|
48
|
47
|
|
49
|
|
- $resultEntries[$filename][$aux]['tenderingTerms'] = $this->nodoTenderingTerms($row); //
|
|
48
|
+ $resultEntries[$filename][$aux]['tenderingTerms'] = $this->nodoTenderingTerms($row);
|
50
|
49
|
|
51
|
|
- $resultEntries[$filename][$aux]['tenderingProcess'] = $this->nodoTenderingProcess($row); //
|
|
50
|
+ $resultEntries[$filename][$aux]['tenderingProcess'] = $this->nodoTenderingProcess($row);
|
52
|
51
|
|
53
|
|
- $resultEntries[$filename][$aux]['tenderingResult'] = $this->nodoTenderResult($row); //
|
|
52
|
+ $resultEntries[$filename][$aux]['tenderingResult'] = $this->nodoTenderResult($row);
|
54
|
53
|
|
55
|
54
|
$resultEntries[$filename][$aux]['validNoticeInfo'] = $this->nodoValidNoticeInfo($row);
|
56
|
55
|
|
57
|
|
- $resultEntries[$filename][$aux]['legalDocs'] = $this->nodoLegalDoc($row); //
|
|
56
|
+ $resultEntries[$filename][$aux]['legalDocs'] = $this->nodoLegalDoc($row);
|
58
|
57
|
|
59
|
|
- $resultEntries[$filename][$aux]['technicalDocs'] = $this->nodoTechnicalDocumentReference($row); //
|
|
58
|
+ $resultEntries[$filename][$aux]['technicalDocs'] = $this->nodoTechnicalDocumentReference($row);
|
60
|
59
|
|
61
|
|
- $resultEntries[$filename][$aux]['generalDocs'] = $this->nodoGeneralDocuments($row); //
|
|
60
|
+ $resultEntries[$filename][$aux]['generalDocs'] = $this->nodoGeneralDocuments($row);
|
62
|
61
|
|
63
|
|
- $resultEntries[$filename][$aux]['additionalDocs'] = $this->nodoAdditionalDocumentReference($row); //
|
|
62
|
+ $resultEntries[$filename][$aux]['additionalDocs'] = $this->nodoAdditionalDocumentReference($row);
|
64
|
63
|
|
65
|
64
|
$aux++;
|
66
|
65
|
}
|