Compare commits
No commits in common. "8db1edb262a89b53c3ccce2c28a93a06c93eaa36" and "0da21675916f1f09641a15eeaa6b2632bfe0cb4b" have entirely different histories.
8db1edb262
...
0da2167591
@ -2,22 +2,14 @@
|
|||||||
export interface IItemTask {
|
export interface IItemTask {
|
||||||
code?: string;
|
code?: string;
|
||||||
taskType?: string;
|
taskType?: string;
|
||||||
attributes?: any;
|
attributes?:any
|
||||||
message?: string,
|
|
||||||
state?: number,
|
|
||||||
started?: Date,
|
|
||||||
finished?: Date
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export class ItemTask implements IItemTask {
|
export class ItemTask implements IItemTask {
|
||||||
public code?:string;
|
public code?:string;
|
||||||
public taskType?: string;
|
public taskType?: string;
|
||||||
public attributes?: any;
|
public attributes?: any;
|
||||||
public message?: string;
|
|
||||||
public state?: number;
|
|
||||||
public started?: Date;
|
|
||||||
public finished?: Date;
|
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -148,9 +148,5 @@ export class ItemService {
|
|||||||
postItemTask(item: IItem, task: IItemTask): Observable<IItemTask> {
|
postItemTask(item: IItem, task: IItemTask): Observable<IItemTask> {
|
||||||
return this.httpClient.post<IItemTask>(`${this.ApiEndpoint()}/api/v1/items/${item.code}/tasks`, task);
|
return this.httpClient.post<IItemTask>(`${this.ApiEndpoint()}/api/v1/items/${item.code}/tasks`, task);
|
||||||
}
|
}
|
||||||
|
|
||||||
getItemTaskList(itemcode: string): Observable<IItemTask[]> {
|
|
||||||
return this.httpClient.get<IItemTask[]>(`${this.ApiEndpoint()}/api/v1/items/${itemcode}/tasks`).pipe(map(ia => ia.map(i => this.parseDates(i))));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user