Fixed document payment change account currency issue.. ( #2zftwww )
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
@if (! $attributes->has('withoutAddNew'))
|
||||
@if (! $attributes->has('withoutAddNew') && ! $attributes->has('without-add-new'))
|
||||
<x-form.group.select
|
||||
add-new
|
||||
:path="$path"
|
||||
|
@ -1,4 +1,4 @@
|
||||
@if ((! $attributes->has('withoutRemote')) && (! $attributes->has('withoutAddNew')))
|
||||
@if ((! $attributes->has('withoutRemote') && ! $attributes->has('without-remote')) && (! $attributes->has('withoutAddNew') && ! $attributes->has('without-add-new')))
|
||||
<x-form.group.select
|
||||
remote
|
||||
remote_action="{{ $remoteAction }}"
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
{{ $attributes }}
|
||||
/>
|
||||
@elseif (($attributes->has('withoutRemote')) && (! $attributes->has('withoutAddNew')))
|
||||
@elseif (($attributes->has('withoutRemote') && $attributes->has('without-remote')) && (! $attributes->has('withoutAddNew') && ! $attributes->has('without-add-new')))
|
||||
<x-form.group.select
|
||||
add-new
|
||||
path="{{ $path }}"
|
||||
@ -41,7 +41,7 @@
|
||||
|
||||
{{ $attributes }}
|
||||
/>
|
||||
@elseif ((! $attributes->has('withoutRemote')) && ($attributes->has('withoutAddNew')))
|
||||
@elseif ((! $attributes->has('withoutRemote') && ! $attributes->has('without-remote')) && ($attributes->has('withoutAddNew') && $attributes->has('without-add-new')))
|
||||
<x-form.group.select
|
||||
remote
|
||||
remote_action="{{ $remoteAction }}"
|
||||
|
@ -1,4 +1,4 @@
|
||||
@if ((! $attributes->has('withoutRemote')) && (! $attributes->has('withoutAddNew')))
|
||||
@if ((! $attributes->has('withoutRemote') && ! $attributes->has('without-remote')) && (! $attributes->has('withoutAddNew') && ! $attributes->has('without-add-new')))
|
||||
<x-form.group.select
|
||||
remote
|
||||
remote_action="{{ $remoteAction }}"
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
{{ $attributes }}
|
||||
/>
|
||||
@elseif (($attributes->has('withoutRemote')) && (! $attributes->has('withoutAddNew')))
|
||||
@elseif (($attributes->has('withoutRemote') && $attributes->has('without-remote')) && (! $attributes->has('withoutAddNew') && ! $attributes->has('without-add-new')))
|
||||
<x-form.group.select
|
||||
add-new
|
||||
path="{{ $path }}"
|
||||
@ -41,10 +41,10 @@
|
||||
|
||||
{{ $attributes }}
|
||||
/>
|
||||
@elseif ((!$attributes->has('withoutRemote')) && ($attributes->has('withoutAddNew')))
|
||||
@elseif ((! $attributes->has('withoutRemote') && ! $attributes->has('without-remote')) && ($attributes->has('withoutAddNew') && $attributes->has('without-add-new')))
|
||||
<x-form.group.select
|
||||
remote
|
||||
remote_action="{{ $remoteAction }}"
|
||||
remote_action="{{ $remoteAction }}
|
||||
|
||||
add-new
|
||||
name="{{ $name }}"
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
@if (! $attributes->has('withoutAddNew'))
|
||||
@if (! $attributes->has('withoutAddNew') && ! $attributes->has('without-add-new'))
|
||||
<x-form.group.select
|
||||
add-new
|
||||
:path="$path"
|
||||
|
Reference in New Issue
Block a user