Sfoglia il codice sorgente

fixed wfs A_RECORD_%_DATE fields

Piotr Labudda 9 anni fa
parent
commit
825e5be5a4
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      SE/se-lib/TableAcl.php

+ 2 - 0
SE/se-lib/TableAcl.php

@@ -1797,6 +1797,8 @@ class TableAcl extends Core_AclBase {
 
 	public function getXsdFieldType($fldName) {// @returns string - xsd type, TODO: throw Exception when field not found
 		$fldType = 'xsd:string';
+		if ('A_RECORD_UPDATE_DATE' == $fldName) return 'xsd:string';
+		if ('A_RECORD_CREATE_DATE' == $fldName) return 'xsd:string';
 		if ($this->isIntegerField($fldName)) return 'xsd:integer';
 		else if ($this->isDecimalField($fldName)) return 'xsd:decimal';
 		else if ($this->isDateField($fldName)) return 'xsd:date';