- added fields: longdescr, hoursworked, hoursplanned

This commit is contained in:
Paolo Arena
2019-03-30 02:57:40 +01:00
parent de117d55e6
commit 38b3405664
33 changed files with 753 additions and 326 deletions

View File

@@ -1,22 +1,31 @@
import objectId from '@src/js/objectId'
import { UserStore } from '@store'
import { tools } from '@src/store/Modules/tools'
export interface IProject {
_id?: any,
userId?: string
category?: string
descr?: string,
priority?: number,
completed?: boolean,
created_at?: Date,
modify_at?: Date,
completed_at?: Date,
expiring_at?: Date,
enableExpiring?: boolean,
id_prev?: string,
modified?: boolean,
pos?: number,
order?: number,
id_parent?: string
descr?: string
longdescr?: string
hoursplanned?: number
hoursworked?: number
priority?: number
completed?: boolean
created_at?: Date
modify_at?: Date
completed_at?: Date
expiring_at?: Date
enableExpiring?: boolean
id_prev?: string
modified?: boolean
pos?: number
order?: number
progressCalc?: number
}
export interface IParamIProject {
categorySel?: string
checkPending?: boolean

View File

@@ -31,7 +31,8 @@ export interface IDrag {
prioritychosen?: number
oldIndex?: number
newIndex?: number
category: string
category?: string
id_proj?: string
atfirst?: boolean
}