testing seat api
This commit is contained in:
@@ -29,8 +29,9 @@ class FinancesController extends Controller
|
||||
}
|
||||
|
||||
public function displayWallet() {
|
||||
$helper = new SeatHelper();
|
||||
$helper->GetCorpJournal(98287666, 3);
|
||||
$helper = new Finances();
|
||||
|
||||
$data = $helper->GetWalletJournal(1, 92626011);
|
||||
}
|
||||
|
||||
public function displayTaxes() {
|
||||
|
||||
@@ -98,6 +98,7 @@ class Finances {
|
||||
}
|
||||
//Decode the journal from json into an array for future processing
|
||||
$journals = json_decode($journal->raw, true);
|
||||
dd($journals);
|
||||
//For each journal array, attempt to store in the database
|
||||
foreach($journals as $entry) {
|
||||
if($entry['ref_type'] == 'brokers_fee' || $entry['ref_type'] == 'reprocessing_tax') {
|
||||
|
||||
@@ -25,7 +25,9 @@ class SeatHelper {
|
||||
]);
|
||||
$data = $guzzle->request('GET', 'https://seat.warpedintentions.com/api/v2/corporation/wallet-journal/' . $corporationId . '?page=' . $page);
|
||||
$body = $data->getBody()->getContents();
|
||||
dd($body);
|
||||
$response = json_decode($body);
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
private function DecodeDate($date) {
|
||||
|
||||
Reference in New Issue
Block a user