Added begin_development and begin_test

Added status (changed completed field)
fixed internet status connection.
This commit is contained in:
Paolo Arena
2019-04-02 00:18:01 +02:00
parent cea5dd118a
commit 7cacf5c6ea
40 changed files with 592 additions and 278 deletions

View File

@@ -60,7 +60,7 @@ export interface IGlobalState {
}
export interface IMenuList {
name: string
nametranslate: string
description: string
idelem?: string
icon?: string
@@ -71,7 +71,8 @@ export interface IListRoutes {
faIcon: string
materialIcon: string
name: string
text?: string
routes2: []
level_parent: string
level_child: string
level_parent: number
level_child: number
}

View File

@@ -12,7 +12,7 @@ export interface IProject {
hoursplanned?: number
hoursworked?: number
priority?: number
completed?: boolean
status?: number
created_at?: Date
modify_at?: Date
completed_at?: Date
@@ -23,9 +23,12 @@ export interface IProject {
pos?: number
order?: number
progressCalc?: number
live_url?: string
test_url?: string
begin_development?: Date
begin_test?: Date
}
export interface IParamIProject {
categorySel?: string
checkPending?: boolean

View File

@@ -4,7 +4,7 @@ export interface ITodo {
category?: string
descr?: string,
priority?: number,
completed?: boolean,
status?: number,
created_at?: Date,
modify_at?: Date,
completed_at?: Date,