Reportistica Ore 3
This commit is contained in:
@@ -52,10 +52,13 @@ export default class CMyPopupEdit extends Vue {
|
||||
this.$emit('update:row', newval)
|
||||
}
|
||||
|
||||
public changevalRec(newval) {
|
||||
public getrealval(newval) {
|
||||
if (this.col.fieldtype === tools.FieldType.hours) {
|
||||
newval = newval.value
|
||||
}
|
||||
}
|
||||
|
||||
public changevalRec(newval) {
|
||||
console.log('this.row', this.row, 'this.col', this.col, 'newval', newval)
|
||||
console.log('this.row[this.col.name]', this.row[this.col.name])
|
||||
this.row[this.col.name] = newval
|
||||
@@ -63,6 +66,15 @@ export default class CMyPopupEdit extends Vue {
|
||||
this.$emit('update:row', this.row)
|
||||
}
|
||||
|
||||
public changevalRecHours(newval) {
|
||||
if (this.col.fieldtype === tools.FieldType.hours) {
|
||||
newval = newval.value
|
||||
}
|
||||
this.changevalRec(newval)
|
||||
|
||||
this.myvalue = newval
|
||||
}
|
||||
|
||||
public updatedata() {
|
||||
this.mounted()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user