1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 12:12:48 +01:00

Enable forwarding

This commit is contained in:
David Bomba 2022-03-18 13:48:08 +11:00
parent 830a82ff9b
commit 47be5a5f3a
2 changed files with 3 additions and 1 deletions

View File

@ -149,6 +149,8 @@ trait GenerateMigrationResources
$timezone_id = (string)($timezone_id - 1); $timezone_id = (string)($timezone_id - 1);
return [ return [
'entity_send_time' => 6,
'auto_bill_date' => $this->account->auto_bill_on_due_date ? 'on_due_date' : 'on_send_date',
'auto_bill' => $this->transformAutoBill($this->account->token_billing_id), 'auto_bill' => $this->transformAutoBill($this->account->token_billing_id),
'payment_terms' => $this->account->payment_terms ? (string) $this->account->payment_terms : '', 'payment_terms' => $this->account->payment_terms ? (string) $this->account->payment_terms : '',
'timezone_id' => $timezone_id, 'timezone_id' => $timezone_id,

View File

@ -295,7 +295,7 @@
</div> </div>
@endif @endif
<br/> <br/>
<button form="forward-form" class="btn btn-primary btn-lg">{!! trans('texts.submit') !!}</button> <button form="forward-form" class="btn btn-primary btn-lg">Enable Forwarding</button>
</div> </div>
</div> </div>
</form> </form>