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