Merge pull request #560 from batuhawk/1.3-dev
Invoice customization fixed some css and js issue
This commit is contained in:
commit
42d5690a57
@ -15,25 +15,21 @@ class InvoiceText
|
||||
*/
|
||||
public function compose(View $view)
|
||||
{
|
||||
$text_override = [
|
||||
'items' => trans_choice('general.items', 2),
|
||||
'quantity' => trans('invoices.quantity'),
|
||||
'price' => trans('invoices.price'),
|
||||
];
|
||||
$text_override = [];
|
||||
|
||||
$text_items = setting('general.invoice_item');
|
||||
$text_items = setting('general.invoice_item', trans_choice('general.items', 2));
|
||||
|
||||
if ($text_items == 'custom') {
|
||||
$text_items = setting('general.invoice_item_input');
|
||||
}
|
||||
|
||||
$text_quantity = setting('general.invoice_quantity');
|
||||
$text_quantity = setting('general.invoice_quantity', trans('invoices.quantity'));
|
||||
|
||||
if ($text_quantity == 'custom') {
|
||||
$text_quantity = setting('general.invoice_quantity_input');
|
||||
}
|
||||
|
||||
$text_price = setting('general.invoice_price');
|
||||
$text_price = setting('general.invoice_price', trans('invoices.price'));
|
||||
|
||||
if ($text_price == 'custom') {
|
||||
$text_price = setting('general.invoice_price_input');
|
||||
|
5
public/css/app.css
vendored
5
public/css/app.css
vendored
@ -739,4 +739,9 @@ input[type="number"] {
|
||||
|
||||
.link .content-wrapper, .link .right-side, .link .main-footer {
|
||||
margin-left: inherit;
|
||||
}
|
||||
|
||||
.col-md-6.input-group-invoice-text {
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
18
public/js/app.js
vendored
18
public/js/app.js
vendored
@ -197,6 +197,8 @@ $(document).ready(function () {
|
||||
|
||||
return true;
|
||||
});
|
||||
|
||||
$('.input-group-invoice-text select').select2();
|
||||
});
|
||||
|
||||
function confirmDelete(form_id, title, message, button_cancel, button_delete) {
|
||||
@ -292,6 +294,22 @@ $(document).on('change', '.input-group-recurring #recurring_frequency', function
|
||||
}
|
||||
});
|
||||
|
||||
$(document).on('change', '.input-group-invoice-text select', function () {
|
||||
var invoice_text_custom = $(this).parent().parent().parent().find('input');
|
||||
|
||||
if ($(this).val() == 'custom') {
|
||||
$(this).parent().parent().removeClass('col-md-12').addClass('col-md-6');
|
||||
|
||||
invoice_text_custom.parent().removeClass('hidden');
|
||||
|
||||
$(this).select2();
|
||||
} else {
|
||||
$(this).parent().parent().removeClass('col-md-6').addClass('col-md-12');
|
||||
|
||||
invoice_text_custom.parent().addClass('hidden');
|
||||
}
|
||||
});
|
||||
|
||||
function convertDateFormat(date, split_character) {
|
||||
var result = [];
|
||||
var formats = {
|
||||
|
@ -35,14 +35,14 @@ return [
|
||||
'logo' => 'Logo',
|
||||
'custom' => 'Custom',
|
||||
'item_name' => 'Item Name',
|
||||
'item' => 'Item (Default)',
|
||||
'product' => 'Product',
|
||||
'service' => 'Service',
|
||||
'item' => 'Items',
|
||||
'product' => 'Products',
|
||||
'service' => 'Services',
|
||||
'price_name' => 'Price Name',
|
||||
'price' => 'Price (Default)',
|
||||
'price' => 'Price',
|
||||
'rate' => 'Rate',
|
||||
'quantity_name' => 'Quantity Name',
|
||||
'quantity' => 'Quantity (Default)',
|
||||
'quantity' => 'Quantity',
|
||||
],
|
||||
'default' => [
|
||||
'tab' => 'Defaults',
|
||||
|
@ -1,7 +1,7 @@
|
||||
@stack($name . '_input_start')
|
||||
|
||||
<div class="{{ $col }} input-group-invoice_text">
|
||||
<div class="form-group col-sm-10 {{ isset($attributes['required']) ? 'required' : '' }} {{ $errors->has($name) ? 'has-error' : ''}}">
|
||||
<div class="{{ $col }} input-group-invoice-text">
|
||||
<div class="form-group col-md-12 {{ isset($attributes['required']) ? 'required' : '' }} {{ $errors->has($name) ? 'has-error' : ''}}">
|
||||
{!! Form::label($name, $text, ['class' => 'control-label']) !!}
|
||||
<div class="input-group">
|
||||
<div class="input-group-addon"><i class="fa fa-{{ $icon }}"></i></div>
|
||||
@ -10,7 +10,7 @@
|
||||
{!! $errors->first($name, '<p class="help-block">:message</p>') !!}
|
||||
</div>
|
||||
|
||||
<div class="form-group col-sm-2 {{ $errors->has('invoice_text_text') ? 'has-error' : '' }}">
|
||||
<div class="form-group col-md-6 hidden {{ $errors->has('invoice_text_text') ? 'has-error' : '' }}">
|
||||
{!! Form::label($input_name, trans('settings.invoice.custom'), ['class' => 'control-label']) !!}
|
||||
{!! Form::text($input_name, $input_value, ['class' => 'form-control']) !!}
|
||||
{!! $errors->first($input_name, '<p class="help-block">:message</p>') !!}
|
||||
|
Loading…
x
Reference in New Issue
Block a user