mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Minor fixes for import
This commit is contained in:
parent
f29c1dbdf5
commit
0810d55087
@ -233,7 +233,7 @@ class Import implements ShouldQueue
|
|||||||
$account->save();
|
$account->save();
|
||||||
|
|
||||||
//company size check
|
//company size check
|
||||||
if ($this->company->invoices()->count() > 1000 || $this->company->products()->count() > 1000 || $this->company->clients()->count() > 1000) {
|
if ($this->company->invoices()->count() > 500 || $this->company->products()->count() > 500 || $this->company->clients()->count() > 500) {
|
||||||
$this->company->is_large = true;
|
$this->company->is_large = true;
|
||||||
$this->company->save();
|
$this->company->save();
|
||||||
}
|
}
|
||||||
@ -261,9 +261,6 @@ class Import implements ShouldQueue
|
|||||||
|
|
||||||
/*After a migration first some basic jobs to ensure the system is up to date*/
|
/*After a migration first some basic jobs to ensure the system is up to date*/
|
||||||
VersionCheck::dispatch();
|
VersionCheck::dispatch();
|
||||||
|
|
||||||
// CreateCompanyPaymentTerms::dispatchNow($sp035a66, $spaa9f78);
|
|
||||||
// CreateCompanyTaskStatuses::dispatchNow($this->company, $this->user);
|
|
||||||
|
|
||||||
info('Completed🚀🚀🚀🚀🚀 at '.now());
|
info('Completed🚀🚀🚀🚀🚀 at '.now());
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ input:checked ~ .dot {
|
|||||||
background-color: #48bb78;
|
background-color: #48bb78;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<div id="datadiv" class="container flex flex-wrap pt-4 pb-10 m-auto mt-6 md:mt-15 lg:px-16 xl:px-16" x-data="{show: true}">
|
<div id="datadiv" class="container flex flex-wrap pt-2 pb-10 m-auto mt-2 md:mt-5 lg:px-16 xl:px-16" x-data="{show: true}">
|
||||||
<div class="w-full px-0 lg:px-4">
|
<div class="w-full px-0 lg:px-4">
|
||||||
<h2 class="px-12 text-base font-bold text-center md:text-2xl text-blue-700">
|
<h2 class="px-12 text-base font-bold text-center md:text-2xl text-blue-700">
|
||||||
Choose your plan
|
Choose your plan
|
||||||
@ -70,6 +70,8 @@ input:checked ~ .dot {
|
|||||||
<hr>
|
<hr>
|
||||||
<div class="py-2 text-sm my-3 text-white">Enable emails to be sent via Gmail</div>
|
<div class="py-2 text-sm my-3 text-white">Enable emails to be sent via Gmail</div>
|
||||||
<hr>
|
<hr>
|
||||||
|
<div class="py-2 text-sm my-3 text-white">Integrate with Zapier, Integromat or API</div>
|
||||||
|
<hr>
|
||||||
<div class="py-2 text-sm my-3 text-white">+ Much more!</div>
|
<div class="py-2 text-sm my-3 text-white">+ Much more!</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -107,6 +109,8 @@ input:checked ~ .dot {
|
|||||||
<hr>
|
<hr>
|
||||||
<div class="py-2 text-sm my-3 text-white">Custom background for invoices & quotes</div>
|
<div class="py-2 text-sm my-3 text-white">Custom background for invoices & quotes</div>
|
||||||
<hr>
|
<hr>
|
||||||
|
<div class="py-2 text-sm my-3 text-white">Integrate with Zapier, Integromat or API</div>
|
||||||
|
<hr>
|
||||||
<div class="py-2 text-sm my-3 text-white">+ Much more!</div>
|
<div class="py-2 text-sm my-3 text-white">+ Much more!</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -151,6 +155,8 @@ input:checked ~ .dot {
|
|||||||
<hr>
|
<hr>
|
||||||
<div class="py-2 text-sm my-3 text-white">Enable emails to be sent via Gmail</div>
|
<div class="py-2 text-sm my-3 text-white">Enable emails to be sent via Gmail</div>
|
||||||
<hr>
|
<hr>
|
||||||
|
<div class="py-2 text-sm my-3 text-white">Integrate with Zapier, Integromat or API</div>
|
||||||
|
<hr>
|
||||||
<div class="py-2 text-sm my-3 text-white">+ Much more!</div>
|
<div class="py-2 text-sm my-3 text-white">+ Much more!</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -188,6 +194,8 @@ input:checked ~ .dot {
|
|||||||
<hr>
|
<hr>
|
||||||
<div class="py-2 text-sm my-3 text-white">Custom background for invoices & quotes</div>
|
<div class="py-2 text-sm my-3 text-white">Custom background for invoices & quotes</div>
|
||||||
<hr>
|
<hr>
|
||||||
|
<div class="py-2 text-sm my-3 text-white">Integrate with Zapier, Integromat or API</div>
|
||||||
|
<hr>
|
||||||
<div class="py-2 text-sm my-3 text-white">+ Much more!</div>
|
<div class="py-2 text-sm my-3 text-white">+ Much more!</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user