osb/app/Console/Commands/Intuit/AccountAdd.php

58 lines
1.2 KiB
PHP
Raw Normal View History

2023-05-10 08:56:52 +00:00
<?php
namespace App\Console\Commands\Intuit;
2023-05-10 08:56:52 +00:00
use Illuminate\Console\Command;
2024-08-12 13:31:59 +00:00
use Intuit\Exceptions\NotTokenException;
2023-05-10 08:56:52 +00:00
use Intuit\Jobs\AccountingCustomerUpdate;
use Intuit\Models\Customer as AccAccount;
2024-08-12 13:31:59 +00:00
use Intuit\Traits\ProviderTokenTrait;
2023-05-10 08:56:52 +00:00
2024-08-12 13:31:59 +00:00
use App\Models\Account;
2023-05-10 08:56:52 +00:00
class AccountAdd extends Command
2023-05-10 08:56:52 +00:00
{
2024-08-12 13:31:59 +00:00
use ProviderTokenTrait;
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'intuit:account:add'
.' {id : Account ID}'
.' {user? : User Email}';
2023-05-10 08:56:52 +00:00
/**
* The console command description.
*
* @var string
*/
protected $description = 'Add an account to quickbooks';
/**
* Execute the console command.
*
* @return int
2024-08-12 13:31:59 +00:00
* @throws NotTokenException
*/
public function handle()
{
$o = Account::findOrFail($this->argument('id'));
$acc = new AccAccount;
$acc->PrimaryEmailAddr = (object)['Address'=>$o->user->email];
$acc->ResaleNum = $o->sid;
$acc->GivenName = $o->user->firstname;
$acc->FamilyName = $o->user->lastname;
$acc->CompanyName = $o->name;
$acc->DisplayName = $o->name;
$acc->FullyQualifiedName = $o->name;
$acc->Active = (bool)$o->active;
2024-08-12 13:31:59 +00:00
return AccountingCustomerUpdate::dispatchSync(
$this->providerToken($this->argument('user')),
$acc
);
}
}