ability to delete ic dpb

This commit is contained in:
Peter Papp
2021-07-09 12:17:34 +02:00
parent d9ee68db7c
commit c323304f2e
3 changed files with 562 additions and 95 deletions

View File

@@ -36,7 +36,6 @@
"makingcg/vuefilemanager-invoicing": "dev-master"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"barryvdh/laravel-ide-helper": "^2.9",

654
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -73,7 +73,7 @@
<div class="block-wrapper">
<label>{{ $t('in_editor.ic_dph') }} ({{ $t('global.optional') }}):</label>
<ValidationProvider tag="div" mode="passive" class="input-wrapper" name="ic_dph" rules="required" v-slot="{ errors }">
<input @input="$updateText('/v1/invoicing/profile', 'ic_dph', profile.ic_dph)" v-model="profile.ic_dph" placeholder="" type="text"
<input @input="$updateText('/v1/invoicing/profile', 'ic_dph', profile.ic_dph, true)" v-model="profile.ic_dph" placeholder="" type="text"
:class="{'is-error': errors[0]}" class="focus-border-theme" />
<span class="error-message" v-if="errors[0]">{{ errors[0] }}</span>
</ValidationProvider>