| @@ 93-103 (lines=11) @@ | ||
| 90 | * @param DataObject $data |
|
| 91 | * @return $this |
|
| 92 | */ |
|
| 93 | public function assignData(DataObject $data) |
|
| 94 | { |
|
| 95 | parent::assignData($data); |
|
| 96 | ||
| 97 | $oInfoInstance = $this->getInfoInstance(); |
|
| 98 | $oInfoInstance->setAdditionalInformation('bank_country', $this->toolkitHelper->getAdditionalDataEntry($data, 'bank_country')); |
|
| 99 | $oInfoInstance->setAdditionalInformation('iban', $this->toolkitHelper->getAdditionalDataEntry($data, 'iban')); |
|
| 100 | $oInfoInstance->setAdditionalInformation('bic', $this->toolkitHelper->getAdditionalDataEntry($data, 'bic')); |
|
| 101 | ||
| 102 | return $this; |
|
| 103 | } |
|
| 104 | } |
|
| 105 | ||
| @@ 96-106 (lines=11) @@ | ||
| 93 | * @param DataObject $data |
|
| 94 | * @return $this |
|
| 95 | */ |
|
| 96 | public function assignData(DataObject $data) |
|
| 97 | { |
|
| 98 | parent::assignData($data); |
|
| 99 | ||
| 100 | $oInfoInstance = $this->getInfoInstance(); |
|
| 101 | $oInfoInstance->setAdditionalInformation('iban', $this->toolkitHelper->getAdditionalDataEntry($data, 'iban')); |
|
| 102 | $oInfoInstance->setAdditionalInformation('bic', $this->toolkitHelper->getAdditionalDataEntry($data, 'bic')); |
|
| 103 | $oInfoInstance->setAdditionalInformation('duration', $this->toolkitHelper->getAdditionalDataEntry($data, 'duration')); |
|
| 104 | ||
| 105 | return $this; |
|
| 106 | } |
|
| 107 | } |
|
| 108 | ||