Merge pull request #420 from eReuse/bugfix/4206-donalo-incoming

Bugfix/4206 donalo incoming
This commit is contained in:
cayop 2023-01-10 16:59:09 +01:00 committed by GitHub
commit 3606f9dee6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ const Api = {
* @returns get lots
*/
async get_lots() {
const request = await this.doRequest(`${API_URLS.lots}?type=temporary`, "GET", null);
const request = await this.doRequest(`${API_URLS.lots}`, "GET", null);
if (request != undefined) return request.items;
throw request;
},

View File

@ -665,7 +665,7 @@ async function processSelectedDevices() {
});
listHTML.html("");
const lot_temporary = lots.filter(lot => !lot.transfer);
const lot_temporary = lots.filter(lot => !lot.transfer && !lot.trade);
appendMenu(lot_temporary, listHTML, templateLot, selectedDevices, actions, "Temporary");
const lot_incoming = lots.filter(lot => lot.transfer && lot.transfer == "Incoming");

View File

@ -627,7 +627,7 @@ async function processSelectedDevices() {
})
listHTML.html("");
const lot_temporary = lots.filter(lot => !lot.transfer);
const lot_temporary = lots.filter(lot => !lot.transfer && !lot.trade);
appendMenu(lot_temporary, listHTML, templateLot, selectedDevices, actions, "Temporary");
const lot_incoming = lots.filter(lot => lot.transfer && lot.transfer == "Incoming");