mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 20:21:10 -04:00
fix wizard and item select issue
This commit is contained in:
@ -678,6 +678,7 @@ export default {
|
|||||||
username: 'Username',
|
username: 'Username',
|
||||||
next: 'Next',
|
next: 'Next',
|
||||||
continue: 'Continue',
|
continue: 'Continue',
|
||||||
|
skip: 'Skip',
|
||||||
database: {
|
database: {
|
||||||
database: 'Site URL & Database',
|
database: 'Site URL & Database',
|
||||||
connection: 'Database Connection',
|
connection: 'Database Connection',
|
||||||
|
|||||||
@ -313,7 +313,11 @@ export default {
|
|||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
window.hub.$on('checkItems', this.validateItem)
|
window.hub.$on('checkItems', this.validateItem)
|
||||||
window.hub.$on('newItem', this.onSelectItem)
|
window.hub.$on('newItem', (val) => {
|
||||||
|
if (this.item.item_id) {
|
||||||
|
this.onSelectItem(val)
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updateTax (data) {
|
updateTax (data) {
|
||||||
|
|||||||
@ -314,7 +314,11 @@ export default {
|
|||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
window.hub.$on('checkItems', this.validateItem)
|
window.hub.$on('checkItems', this.validateItem)
|
||||||
window.hub.$on('newItem', this.onSelectItem)
|
window.hub.$on('newItem', (val) => {
|
||||||
|
if (this.item.item_id) {
|
||||||
|
this.onSelectItem(val)
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updateTax (data) {
|
updateTax (data) {
|
||||||
|
|||||||
@ -109,15 +109,26 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<base-button
|
<div class="row mt-5">
|
||||||
:loading="loading"
|
<base-button
|
||||||
class="pull-right mt-5"
|
:loading="loading"
|
||||||
icon="save"
|
class="pull-right"
|
||||||
color="theme"
|
icon="save"
|
||||||
type="submit"
|
color="theme"
|
||||||
>
|
type="submit"
|
||||||
{{ $t('wizard.save_cont') }}
|
>
|
||||||
</base-button>
|
{{ $t('wizard.save_cont') }}
|
||||||
|
</base-button>
|
||||||
|
<base-button
|
||||||
|
:loading="loading"
|
||||||
|
class="pull-right ml-4"
|
||||||
|
outline
|
||||||
|
color="theme"
|
||||||
|
@click="$emit('next')"
|
||||||
|
>
|
||||||
|
{{ $t('wizard.skip') }}
|
||||||
|
</base-button>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -137,10 +148,10 @@ export default {
|
|||||||
mailConfigData: {
|
mailConfigData: {
|
||||||
mail_driver: 'smtp',
|
mail_driver: 'smtp',
|
||||||
mail_host: 'mailtrap.io',
|
mail_host: 'mailtrap.io',
|
||||||
mail_port: 2525,
|
mail_port: null,
|
||||||
mail_username: 'cc3c64516febd4',
|
mail_username: null,
|
||||||
mail_password: 'e6a0176301f587',
|
mail_password: null,
|
||||||
mail_encryption: 'tls'
|
mail_encryption: null
|
||||||
},
|
},
|
||||||
loading: false,
|
loading: false,
|
||||||
mail_drivers: []
|
mail_drivers: []
|
||||||
|
|||||||
Reference in New Issue
Block a user