mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
d14b21f471
* Fix for setting a currency! * Additional logic to ensure invites are only created for the client_contact -> client * Move credit number generation after the save to ensure we do not fail on the credit creation because of a number race condition * fixes for migration
660 lines
19 KiB
PHP
660 lines
19 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Console\Commands\TestData\CreateTestCreditJob;
|
|
use App\Console\Commands\TestData\CreateTestInvoiceJob;
|
|
use App\Console\Commands\TestData\CreateTestQuoteJob;
|
|
use App\DataMapper\DefaultSettings;
|
|
use App\Events\Invoice\InvoiceWasCreated;
|
|
use App\Events\Invoice\InvoiceWasMarkedSent;
|
|
use App\Events\Payment\PaymentWasCreated;
|
|
use App\Factory\ClientFactory;
|
|
use App\Factory\InvoiceFactory;
|
|
use App\Factory\InvoiceItemFactory;
|
|
use App\Factory\PaymentFactory;
|
|
use App\Factory\QuoteFactory;
|
|
use App\Helpers\Invoice\InvoiceSum;
|
|
use App\Jobs\Quote\CreateQuoteInvitations;
|
|
use App\Listeners\Credit\CreateCreditInvitation;
|
|
use App\Listeners\Invoice\CreateInvoiceInvitation;
|
|
use App\Models\CompanyToken;
|
|
use App\Models\Payment;
|
|
use App\Models\PaymentType;
|
|
use App\Models\Product;
|
|
use App\Models\User;
|
|
use App\Repositories\InvoiceRepository;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Carbon\Carbon;
|
|
use Faker\Factory;
|
|
use Illuminate\Console\Command;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class CreateTestData extends Command
|
|
{
|
|
use MakesHash;
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $description = 'Create Test Data';
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $signature = 'ninja:create-test-data {count=1}';
|
|
|
|
protected $invoice_repo;
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(InvoiceRepository $invoice_repo)
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->invoice_repo = $invoice_repo;
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
$this->info(date('r').' Running CreateTestData...');
|
|
$this->count = $this->argument('count');
|
|
|
|
$this->info('Warming up cache');
|
|
|
|
$this->warmCache();
|
|
|
|
$this->createSmallAccount();
|
|
$this->createMediumAccount();
|
|
$this->createLargeAccount();
|
|
}
|
|
|
|
|
|
private function createSmallAccount()
|
|
{
|
|
$this->info('Creating Small Account and Company');
|
|
|
|
$account = factory(\App\Models\Account::class)->create();
|
|
$company = factory(\App\Models\Company::class)->create([
|
|
'account_id' => $account->id,
|
|
'slack_webhook_url' => config('ninja.notification.slack'),
|
|
]);
|
|
|
|
|
|
$account->default_company_id = $company->id;
|
|
$account->save();
|
|
|
|
$user = User::whereEmail('small@example.com')->first();
|
|
|
|
if (!$user) {
|
|
$user = factory(\App\Models\User::class)->create([
|
|
// 'account_id' => $account->id,
|
|
'email' => 'small@example.com',
|
|
'confirmation_code' => $this->createDbHash(config('database.default'))
|
|
]);
|
|
}
|
|
|
|
$token = \Illuminate\Support\Str::random(64);
|
|
|
|
$company_token = CompanyToken::create([
|
|
'user_id' => $user->id,
|
|
'company_id' => $company->id,
|
|
'account_id' => $account->id,
|
|
'name' => 'test token',
|
|
'token' => $token,
|
|
]);
|
|
|
|
$user->companies()->attach($company->id, [
|
|
'account_id' => $account->id,
|
|
'is_owner' => 1,
|
|
'is_admin' => 1,
|
|
'is_locked' => 0,
|
|
'permissions' => '',
|
|
'settings' => null,
|
|
]);
|
|
|
|
factory(\App\Models\Product::class,50)->create([
|
|
'user_id' => $user->id,
|
|
'company_id' => $company->id,
|
|
]);
|
|
|
|
$this->info('Creating '.$this->count. ' clients');
|
|
|
|
for ($x=0; $x<$this->count; $x++) {
|
|
$z = $x+1;
|
|
$this->info("Creating client # ".$z);
|
|
|
|
$this->createClient($company, $user);
|
|
}
|
|
|
|
foreach($company->clients as $client) {
|
|
|
|
$this->info('creating invoice for client #'.$client->id);
|
|
$this->createInvoice($client);
|
|
|
|
$this->info('creating credit for client #'.$client->id);
|
|
$this->createCredit($client);
|
|
|
|
$this->info('creating quote for client #'.$client->id);
|
|
$this->createQuote($client);
|
|
|
|
$this->info('creating expense for client #'.$client->id);
|
|
$this->createExpense($client);
|
|
|
|
$this->info('creating vendor for client #'.$client->id);
|
|
$this->createVendor($client);
|
|
|
|
$this->info('creating task for client #'.$client->id);
|
|
$this->createTask($client);
|
|
|
|
$this->info('creating project for client #'.$client->id);
|
|
$this->createProject($client);
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private function createMediumAccount()
|
|
{
|
|
$this->info('Creating Medium Account and Company');
|
|
|
|
$account = factory(\App\Models\Account::class)->create();
|
|
$company = factory(\App\Models\Company::class)->create([
|
|
'account_id' => $account->id,
|
|
'slack_webhook_url' => config('ninja.notification.slack'),
|
|
]);
|
|
|
|
$account->default_company_id = $company->id;
|
|
$account->save();
|
|
|
|
$user = User::whereEmail('medium@example.com')->first();
|
|
|
|
if (!$user) {
|
|
$user = factory(\App\Models\User::class)->create([
|
|
// 'account_id' => $account->id,
|
|
'email' => 'medium@example.com',
|
|
'confirmation_code' => $this->createDbHash(config('database.default'))
|
|
]);
|
|
}
|
|
|
|
$token = \Illuminate\Support\Str::random(64);
|
|
|
|
$company_token = CompanyToken::create([
|
|
'user_id' => $user->id,
|
|
'company_id' => $company->id,
|
|
'account_id' => $account->id,
|
|
'name' => 'test token',
|
|
'token' => $token,
|
|
]);
|
|
|
|
$user->companies()->attach($company->id, [
|
|
'account_id' => $account->id,
|
|
'is_owner' => 1,
|
|
'is_admin' => 1,
|
|
'is_locked' => 0,
|
|
'permissions' => '',
|
|
'settings' => null,
|
|
]);
|
|
|
|
|
|
factory(\App\Models\Product::class,50)->create([
|
|
'user_id' => $user->id,
|
|
'company_id' => $company->id,
|
|
]);
|
|
|
|
$this->count = $this->count*10;
|
|
|
|
$this->info('Creating '.$this->count. ' clients');
|
|
|
|
for ($x=0; $x<$this->count; $x++) {
|
|
$z = $x+1;
|
|
$this->info("Creating client # ".$z);
|
|
|
|
$this->createClient($company, $user);
|
|
}
|
|
|
|
foreach($company->clients as $client) {
|
|
|
|
$this->info('creating invoice for client #'.$client->id);
|
|
|
|
for($i=0; $i<$this->count; $i++)
|
|
$this->createInvoice($client);
|
|
|
|
$this->info('creating credit for client #'.$client->id);
|
|
|
|
for($i=0; $i<$this->count; $i++)
|
|
$this->createCredit($client);
|
|
|
|
|
|
$this->info('creating quote for client #'.$client->id);
|
|
|
|
for($i=0; $i<$this->count; $i++)
|
|
$this->createQuote($client);
|
|
|
|
$this->info('creating expense for client #'.$client->id);
|
|
|
|
for($i=0; $i<$this->count; $i++)
|
|
$this->createExpense($client);
|
|
|
|
$this->info('creating vendor for client #'.$client->id);
|
|
|
|
for($i=0; $i<$this->count; $i++)
|
|
$this->createVendor($client);
|
|
|
|
$this->info('creating task for client #'.$client->id);
|
|
|
|
for($i=0; $i<$this->count; $i++)
|
|
$this->createTask($client);
|
|
|
|
$this->info('creating project for client #'.$client->id);
|
|
|
|
for($i=0; $i<$this->count; $i++)
|
|
$this->createProject($client);
|
|
}
|
|
}
|
|
|
|
private function createLargeAccount()
|
|
{
|
|
$this->info('Creating Large Account and Company');
|
|
|
|
$account = factory(\App\Models\Account::class)->create();
|
|
$company = factory(\App\Models\Company::class)->create([
|
|
'account_id' => $account->id,
|
|
'slack_webhook_url' => config('ninja.notification.slack'),
|
|
]);
|
|
|
|
$account->default_company_id = $company->id;
|
|
$account->save();
|
|
|
|
$user = User::whereEmail('large@example.com')->first();
|
|
|
|
if (!$user) {
|
|
$user = factory(\App\Models\User::class)->create([
|
|
// 'account_id' => $account->id,
|
|
'email' => 'large@example.com',
|
|
'confirmation_code' => $this->createDbHash(config('database.default'))
|
|
]);
|
|
}
|
|
|
|
$token = \Illuminate\Support\Str::random(64);
|
|
|
|
$company_token = CompanyToken::create([
|
|
'user_id' => $user->id,
|
|
'company_id' => $company->id,
|
|
'account_id' => $account->id,
|
|
'name' => 'test token',
|
|
'token' => $token,
|
|
]);
|
|
|
|
$user->companies()->attach($company->id, [
|
|
'account_id' => $account->id,
|
|
'is_owner' => 1,
|
|
'is_admin' => 1,
|
|
'is_locked' => 0,
|
|
'permissions' => '',
|
|
'settings' => null,
|
|
]);
|
|
|
|
|
|
factory(\App\Models\Product::class,50)->create([
|
|
'user_id' => $user->id,
|
|
'company_id' => $company->id,
|
|
]);
|
|
|
|
$this->count = $this->count*100;
|
|
|
|
$this->info('Creating '.$this->count. ' clients');
|
|
|
|
|
|
for ($x=0; $x<$this->count; $x++) {
|
|
$z = $x+1;
|
|
$this->info("Creating client # ".$z);
|
|
|
|
$this->createClient($company, $user);
|
|
}
|
|
|
|
foreach($company->clients as $client) {
|
|
|
|
$this->info('creating invoice for client #'.$client->id);
|
|
$this->createInvoice($client);
|
|
|
|
$this->info('creating credit for client #'.$client->id);
|
|
$this->createCredit($client);
|
|
|
|
$this->info('creating quote for client #'.$client->id);
|
|
$this->createQuote($client);
|
|
|
|
$this->info('creating expense for client #'.$client->id);
|
|
$this->createExpense($client);
|
|
|
|
$this->info('creating vendor for client #'.$client->id);
|
|
$this->createVendor($client);
|
|
|
|
$this->info('creating task for client #'.$client->id);
|
|
$this->createTask($client);
|
|
|
|
$this->info('creating project for client #'.$client->id);
|
|
$this->createProject($client);
|
|
}
|
|
|
|
}
|
|
|
|
private function createClient($company, $user)
|
|
{
|
|
|
|
// dispatch(function () use ($company, $user) {
|
|
|
|
// });
|
|
$client = factory(\App\Models\Client::class)->create([
|
|
'user_id' => $user->id,
|
|
'company_id' => $company->id
|
|
]);
|
|
|
|
factory(\App\Models\ClientContact::class, 1)->create([
|
|
'user_id' => $user->id,
|
|
'client_id' => $client->id,
|
|
'company_id' => $company->id,
|
|
'is_primary' => 1
|
|
]);
|
|
|
|
factory(\App\Models\ClientContact::class, rand(1, 5))->create([
|
|
'user_id' => $user->id,
|
|
'client_id' => $client->id,
|
|
'company_id' => $company->id
|
|
]);
|
|
|
|
|
|
|
|
}
|
|
|
|
private function createExpense($client)
|
|
{
|
|
|
|
factory(\App\Models\Expense::class, rand(1, 5))->create([
|
|
'user_id' => $client->user->id,
|
|
'client_id' => $client->id,
|
|
'company_id' => $client->company->id
|
|
]);
|
|
|
|
}
|
|
|
|
private function createVendor($client)
|
|
{
|
|
|
|
$vendor = factory(\App\Models\Vendor::class)->create([
|
|
'user_id' => $client->user->id,
|
|
'company_id' => $client->company->id
|
|
]);
|
|
|
|
|
|
factory(\App\Models\VendorContact::class, 1)->create([
|
|
'user_id' => $client->user->id,
|
|
'vendor_id' => $vendor->id,
|
|
'company_id' => $client->company->id,
|
|
'is_primary' => 1
|
|
]);
|
|
|
|
factory(\App\Models\VendorContact::class, rand(1, 5))->create([
|
|
'user_id' => $client->user->id,
|
|
'vendor_id' => $vendor->id,
|
|
'company_id' => $client->company->id,
|
|
'is_primary' => 0
|
|
]);
|
|
|
|
}
|
|
|
|
private function createTask($client)
|
|
{
|
|
|
|
$vendor = factory(\App\Models\Task::class)->create([
|
|
'user_id' => $client->user->id,
|
|
'company_id' => $client->company->id
|
|
]);
|
|
}
|
|
|
|
private function createProject($client)
|
|
{
|
|
|
|
$vendor = factory(\App\Models\Project::class)->create([
|
|
'user_id' => $client->user->id,
|
|
'company_id' => $client->company->id
|
|
]);
|
|
}
|
|
|
|
private function createInvoice($client)
|
|
{
|
|
// for($x=0; $x<$this->count; $x++){
|
|
// dispatch(new CreateTestInvoiceJob($client));
|
|
// }
|
|
|
|
$faker = \Faker\Factory::create();
|
|
|
|
$invoice = InvoiceFactory::create($client->company->id, $client->user->id);//stub the company and user_id
|
|
$invoice->client_id = $client->id;
|
|
// $invoice->date = $faker->date();
|
|
$dateable = Carbon::now()->subDays(rand(0,90));
|
|
$invoice->date = $dateable;
|
|
|
|
$invoice->line_items = $this->buildLineItems(rand(1,10));
|
|
$invoice->uses_inclusive_taxes = false;
|
|
|
|
if (rand(0, 1)) {
|
|
$invoice->tax_name1 = 'GST';
|
|
$invoice->tax_rate1 = 10.00;
|
|
}
|
|
|
|
if (rand(0, 1)) {
|
|
$invoice->tax_name2 = 'VAT';
|
|
$invoice->tax_rate2 = 17.50;
|
|
}
|
|
|
|
if (rand(0, 1)) {
|
|
$invoice->tax_name3 = 'CA Sales Tax';
|
|
$invoice->tax_rate3 = 5;
|
|
}
|
|
|
|
$invoice->save();
|
|
|
|
$invoice_calc = new InvoiceSum($invoice);
|
|
$invoice_calc->build();
|
|
|
|
$invoice = $invoice_calc->getInvoice();
|
|
|
|
$invoice->save();
|
|
$invoice->service()->createInvitations();
|
|
|
|
$invoice->ledger()->updateInvoiceBalance($invoice->balance);
|
|
|
|
//UpdateCompanyLedgerWithInvoice::dispatchNow($invoice, $invoice->balance, $invoice->company);
|
|
|
|
$this->invoice_repo->markSent($invoice);
|
|
|
|
$invoice->service()->createInvitations();
|
|
|
|
if (rand(0, 1)) {
|
|
$payment = PaymentFactory::create($client->company->id, $client->user->id);
|
|
$payment->date = $dateable;
|
|
$payment->client_id = $client->id;
|
|
$payment->amount = $invoice->balance;
|
|
$payment->transaction_reference = rand(0, 500);
|
|
$payment->type_id = PaymentType::CREDIT_CARD_OTHER;
|
|
$payment->status_id = Payment::STATUS_COMPLETED;
|
|
$payment->number = $client->getNextPaymentNumber($client);
|
|
$payment->save();
|
|
|
|
$payment->invoices()->save($invoice);
|
|
|
|
event(new PaymentWasCreated($payment, $payment->company));
|
|
|
|
$payment->service()->updateInvoicePayment();
|
|
//UpdateInvoicePayment::dispatchNow($payment, $payment->company);
|
|
}
|
|
//@todo this slow things down, but gives us PDFs of the invoices for inspection whilst debugging.
|
|
event(new InvoiceWasCreated($invoice, $invoice->company));
|
|
}
|
|
|
|
private function createCredit($client)
|
|
{
|
|
// for($x=0; $x<$this->count; $x++){
|
|
|
|
// dispatch(new CreateTestCreditJob($client));
|
|
|
|
// }
|
|
$faker = \Faker\Factory::create();
|
|
|
|
$credit = factory(\App\Models\Credit::class)->create(['user_id' => $client->user->id, 'company_id' => $client->company->id, 'client_id' => $client->id]);
|
|
|
|
$dateable = Carbon::now()->subDays(rand(0,90));
|
|
$credit->date = $dateable;
|
|
|
|
$credit->line_items = $this->buildLineItems(rand(1,10));
|
|
$credit->uses_inclusive_taxes = false;
|
|
|
|
if (rand(0, 1)) {
|
|
$credit->tax_name1 = 'GST';
|
|
$credit->tax_rate1 = 10.00;
|
|
}
|
|
|
|
if (rand(0, 1)) {
|
|
$credit->tax_name2 = 'VAT';
|
|
$credit->tax_rate2 = 17.50;
|
|
}
|
|
|
|
if (rand(0, 1)) {
|
|
$credit->tax_name3 = 'CA Sales Tax';
|
|
$credit->tax_rate3 = 5;
|
|
}
|
|
|
|
$credit->save();
|
|
|
|
$invoice_calc = new InvoiceSum($credit);
|
|
$invoice_calc->build();
|
|
|
|
$credit = $invoice_calc->getCredit();
|
|
|
|
$credit->save();
|
|
|
|
event(new CreateCreditInvitation($credit));
|
|
|
|
}
|
|
|
|
private function createQuote($client)
|
|
{
|
|
// for($x=0; $x<$this->count; $x++){
|
|
|
|
// dispatch(new CreateTestQuoteJob($client));
|
|
// }
|
|
$faker = \Faker\Factory::create();
|
|
|
|
$quote =factory(\App\Models\Quote::class)->create(['user_id' => $client->user->id, 'company_id' => $client->company->id, 'client_id' => $client->id]);
|
|
$quote->date = $faker->date();
|
|
|
|
$quote->line_items = $this->buildLineItems(rand(1,10));
|
|
$quote->uses_inclusive_taxes = false;
|
|
|
|
if (rand(0, 1)) {
|
|
$quote->tax_name1 = 'GST';
|
|
$quote->tax_rate1 = 10.00;
|
|
}
|
|
|
|
if (rand(0, 1)) {
|
|
$quote->tax_name2 = 'VAT';
|
|
$quote->tax_rate2 = 17.50;
|
|
}
|
|
|
|
if (rand(0, 1)) {
|
|
$quote->tax_name3 = 'CA Sales Tax';
|
|
$quote->tax_rate3 = 5;
|
|
}
|
|
|
|
$quote->save();
|
|
|
|
$quote_calc = new InvoiceSum($quote);
|
|
$quote_calc->build();
|
|
|
|
$quote = $quote_calc->getQuote();
|
|
$quote->service()->markSent()->save();
|
|
|
|
CreateQuoteInvitations::dispatch($quote, $quote->company);
|
|
}
|
|
|
|
private function buildLineItems($count = 1)
|
|
{
|
|
$line_items = [];
|
|
|
|
for($x=0; $x<$count; $x++)
|
|
{
|
|
$item = InvoiceItemFactory::create();
|
|
$item->quantity = 1;
|
|
//$item->cost = 10;
|
|
|
|
if (rand(0, 1)) {
|
|
$item->tax_name1 = 'GST';
|
|
$item->tax_rate1 = 10.00;
|
|
}
|
|
|
|
if (rand(0, 1)) {
|
|
$item->tax_name1 = 'VAT';
|
|
$item->tax_rate1 = 17.50;
|
|
}
|
|
|
|
if (rand(0, 1)) {
|
|
$item->tax_name1 = 'Sales Tax';
|
|
$item->tax_rate1 = 5;
|
|
}
|
|
|
|
$product = Product::all()->random();
|
|
|
|
$item->cost = (float)$product->cost;
|
|
$item->product_key = $product->product_key;
|
|
$item->notes = $product->notes;
|
|
$item->custom_value1 = $product->custom_value1;
|
|
$item->custom_value2 = $product->custom_value2;
|
|
$item->custom_value3 = $product->custom_value3;
|
|
$item->custom_value4 = $product->custom_value4;
|
|
|
|
|
|
|
|
$line_items[] = $item;
|
|
}
|
|
|
|
return $line_items;
|
|
}
|
|
|
|
private function warmCache()
|
|
{
|
|
/* Warm up the cache !*/
|
|
$cached_tables = config('ninja.cached_tables');
|
|
|
|
foreach ($cached_tables as $name => $class) {
|
|
if (! Cache::has($name)) {
|
|
// check that the table exists in case the migration is pending
|
|
if (! Schema::hasTable((new $class())->getTable())) {
|
|
continue;
|
|
}
|
|
if ($name == 'payment_terms') {
|
|
$orderBy = 'num_days';
|
|
} elseif ($name == 'fonts') {
|
|
$orderBy = 'sort_order';
|
|
} elseif (in_array($name, ['currencies', 'industries', 'languages', 'countries', 'banks'])) {
|
|
$orderBy = 'name';
|
|
} else {
|
|
$orderBy = 'id';
|
|
}
|
|
$tableData = $class::orderBy($orderBy)->get();
|
|
if ($tableData->count()) {
|
|
Cache::forever($name, $tableData);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|