mirror of
https://github.com/mbirth/tcl_update_db.git
synced 2024-12-26 12:34:07 +00:00
Fix: Convert CU Ref to upper case.
This commit is contained in:
parent
0d75037078
commit
b598ed8d0c
@ -28,7 +28,7 @@ class GotuObject
|
|||||||
{
|
{
|
||||||
return $this->attrs;
|
return $this->attrs;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function fromXmlParser(XmlParser $xp)
|
public static function fromXmlParser(XmlParser $xp)
|
||||||
{
|
{
|
||||||
if (!$xp->validateGOTU()) {
|
if (!$xp->validateGOTU()) {
|
||||||
@ -39,6 +39,7 @@ class GotuObject
|
|||||||
if ($attrs['fv'] == 'AAA000') {
|
if ($attrs['fv'] == 'AAA000') {
|
||||||
$attrs['fv'] = null;
|
$attrs['fv'] = null;
|
||||||
}
|
}
|
||||||
|
$attrs['curef'] = strtoupper($attrs['curef']);
|
||||||
$g->attrs = $attrs;
|
$g->attrs = $attrs;
|
||||||
return $g;
|
return $g;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user