Explorar el Código

口座振替登録結果の取り込み対象をマイページからのみにフィルター対応

master
sosuke.iwabuchi hace 1 año
padre
commit
596eb00e04
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      app/Http/API/SMBC/BankAccountRegister/PollResult.php

+ 5
- 0
app/Http/API/SMBC/BankAccountRegister/PollResult.php Ver fichero

@@ -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;
}



Cargando…
Cancelar
Guardar