mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
Merge branch '333-recurrent-preserve-due-datetime' into 'master'
new events: preserve due date and time when switching to recurrent. Closes #333 See merge request les/gancio!57
This commit is contained in:
commit
b6e6df5e4c
2 changed files with 6 additions and 2 deletions
|
@ -210,7 +210,11 @@ export default {
|
|||
if (what === 'type') {
|
||||
if (typeof value === 'undefined') { this.type = 'normal' }
|
||||
if (value === 'recurrent') {
|
||||
this.$emit('input', { ...this.value, due: null, recurrent: { frequency: '1w' }, multidate: false })
|
||||
if (this.value.multidate && this.value.due) {
|
||||
this.$emit('input', { ...this.value, due: this.value.from, recurrent: { frequency: '1w' }, multidate: false })
|
||||
} else {
|
||||
this.$emit('input', { ...this.value, recurrent: { frequency: '1w' }, multidate: false })
|
||||
}
|
||||
} else if (value === 'multidate') {
|
||||
this.$emit('input', { ...this.value, recurrent: null, multidate: true })
|
||||
} else {
|
||||
|
|
|
@ -259,7 +259,7 @@ export default {
|
|||
formData.append('start_datetime', this.$time.fromDateInput(this.date.from, this.date.fromHour))
|
||||
if (!!this.date.multidate) {
|
||||
formData.append('end_datetime', this.$time.fromDateInput(this.date.due, this.date.dueHour || '23:59'))
|
||||
} else if (this.date.dueHour) {
|
||||
} else if (this.date.dueHour && this.date.due) {
|
||||
formData.append('end_datetime', this.$time.fromDateInput(this.date.due, this.date.dueHour))
|
||||
} else {
|
||||
formData.append('end_datetime', '')
|
||||
|
|
Loading…
Reference in a new issue