Solving conflicts with branch 3.1-CONTENT
This commit is contained in:
@@ -1658,7 +1658,7 @@ abstract class BaseProcess extends BaseObject implements Persistent
|
|||||||
|
|
||||||
$this->pro_unit_cost = $rs->getString($startcol + 36);
|
$this->pro_unit_cost = $rs->getString($startcol + 36);
|
||||||
|
|
||||||
$this->pro_itee = $rs->getString($startcol + 35);
|
$this->pro_itee = $rs->getString($startcol + 37);
|
||||||
|
|
||||||
$this->resetModified();
|
$this->resetModified();
|
||||||
|
|
||||||
@@ -1980,7 +1980,7 @@ abstract class BaseProcess extends BaseObject implements Persistent
|
|||||||
case 36:
|
case 36:
|
||||||
return $this->getProUnitCost();
|
return $this->getProUnitCost();
|
||||||
break;
|
break;
|
||||||
case 35:
|
case 37:
|
||||||
return $this->getProItee();
|
return $this->getProItee();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
@@ -2183,7 +2183,7 @@ abstract class BaseProcess extends BaseObject implements Persistent
|
|||||||
case 36:
|
case 36:
|
||||||
$this->setProUnitCost($value);
|
$this->setProUnitCost($value);
|
||||||
break;
|
break;
|
||||||
case 35:
|
case 37:
|
||||||
$this->setProItee($value);
|
$this->setProItee($value);
|
||||||
break;
|
break;
|
||||||
} // switch()
|
} // switch()
|
||||||
@@ -2357,8 +2357,8 @@ abstract class BaseProcess extends BaseObject implements Persistent
|
|||||||
$this->setProUnitCost($arr[$keys[36]]);
|
$this->setProUnitCost($arr[$keys[36]]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (array_key_exists($keys[35], $arr)) {
|
if (array_key_exists($keys[37], $arr)) {
|
||||||
$this->setProItee($arr[$keys[35]]);
|
$this->setProItee($arr[$keys[37]]);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user