fix(supplier_consumption): fix JOIN
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
1e0b0028f2
commit
c14059df75
|
@ -94,7 +94,7 @@ module.exports = Self => {
|
||||||
t.shipped
|
t.shipped
|
||||||
FROM vn.entry e
|
FROM vn.entry e
|
||||||
JOIN vn.travel t ON t.id = e.travelFk
|
JOIN vn.travel t ON t.id = e.travelFk
|
||||||
JOIN buy b ON b.id = b.entryFk
|
JOIN buy b ON e.id = b.entryFk
|
||||||
JOIN item i ON i.id = b.itemFk
|
JOIN item i ON i.id = b.itemFk
|
||||||
JOIN itemType it ON it.id = i.typeFk`);
|
JOIN itemType it ON it.id = i.typeFk`);
|
||||||
stmt.merge(conn.makeWhere(filter.where));
|
stmt.merge(conn.makeWhere(filter.where));
|
||||||
|
|
|
@ -11,7 +11,7 @@ describe('supplier consumption() filter', () => {
|
||||||
};
|
};
|
||||||
const result = await app.models.Supplier.consumption(ctx, filter);
|
const result = await app.models.Supplier.consumption(ctx, filter);
|
||||||
|
|
||||||
expect(result.length).toEqual(6);
|
expect(result.length).toEqual(5);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return a list of entries from the item id 1 and supplier 1', async() => {
|
it('should return a list of entries from the item id 1 and supplier 1', async() => {
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -39,7 +39,7 @@
|
||||||
"node-ssh": "^11.0.0",
|
"node-ssh": "^11.0.0",
|
||||||
"object-diff": "0.0.4",
|
"object-diff": "0.0.4",
|
||||||
"object.pick": "^1.3.0",
|
"object.pick": "^1.3.0",
|
||||||
"puppeteer": "^18.0.5",
|
"puppeteer": "^19.4.0",
|
||||||
"read-chunk": "^3.2.0",
|
"read-chunk": "^3.2.0",
|
||||||
"require-yaml": "0.0.1",
|
"require-yaml": "0.0.1",
|
||||||
"sharp": "^0.31.2",
|
"sharp": "^0.31.2",
|
||||||
|
|
Loading…
Reference in New Issue