|
|
@@ -191,13 +191,13 @@ class TransferForm extends Model {
|
|
|
$this->_periodNum = Period::instance()->getNowPeriodNum();
|
|
|
|
|
|
// 发起人
|
|
|
- $initiator = Info::baseInfo($toUserId);
|
|
|
+ $initiator = Info::getBaseUserByUserName($fromUser['USER_NAME']);
|
|
|
// 发起人是否报单中心
|
|
|
$initiatorIsDec = $initiator['IS_DEC'] == 1;
|
|
|
$initiatorId = $initiator['ID'];
|
|
|
|
|
|
// 接受者
|
|
|
- $recipient = Info::baseInfo($fromUserId);
|
|
|
+ $recipient = Info::getBaseUserByUserName($this->toUserName);
|
|
|
// 发起人是否报单中心
|
|
|
$recipientIsDec = $recipient['IS_DEC'] == 1;
|
|
|
$recipientId = $recipient['ID'];
|