This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
sosuke.iwabuchi
/
KT-MyPage
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
口座振替登録結果の取り込み対象をマイページからのみにフィルター対応
master
sosuke.iwabuchi
1 year ago
parent
5bfc6fb301
commit
596eb00e04
1 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
app/Http/API/SMBC/BankAccountRegister/PollResult.php
+ 5
- 0
app/Http/API/SMBC/BankAccountRegister/PollResult.php
View File
@@ -116,6 +116,11 @@ class PollResult
return false;
}
// Mypage経由で登録したものだけを対象とする
$this->body = $this->body->filter(function (PollResultRecord $record) {
return $record->address5 === SMBC::CONDITION_ADDR5_FROM_MY_PAGE;
});
return true;
}
Write
Preview
Loading…
Cancel
Save