Compare commits

..

No commits in common. "29968a736c2049193bd4b03817cd4cd5bf00e3e9" and "6e79afd1151a278775496972411625d17297021c" have entirely different histories.

View File

@ -78,7 +78,7 @@ export class ItemService {
if(atItemLocationItemCode) params = params.append("ail",atItemLocationItemCode);
if(indexed) params = params.append("ind",indexed?"true":"false");
if (level) params = params.append("lvl", level.toFixed());
if (validToday) params = params.append("vt", validToday ? "true" : "false");
if (validToday) params = params.append("vt", indexed ? "true" : "false");
return this.httpClient.get<IItem[]>(`${this.ApiEndpoint()}/api/v1/items/`, { params: params });
}