8356-devToTest #3339

Merged
alexm merged 35 commits from 8356-devToTest into test 2025-01-07 08:37:57 +00:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit b838e988e0 - Show all commits

View File

@ -79,7 +79,6 @@ module.exports = Self => {
stmt.merge('AND IF(s.id = ic.supplierFk, tr.landed = DATE(c.inventoried), TRUE)');
stmt.merge(conn.makePagination(filter));
console.log('stmt: ', stmt);
return conn.executeStmt(stmt, myOptions);
};
};

View File

@ -1,7 +1,7 @@
const {models} = require('vn-loopback/server/server');
const itemFk = 1;
describe('item lastEntriesFilter()', () => {
fit('should return two entry for the given item', async() => {
it('should return two entry for the given item', async() => {
const minDate = Date.vnNew();
minDate.setHours(0, 0, 0, 0);
const maxDate = Date.vnNew();
@ -23,7 +23,7 @@ describe('item lastEntriesFilter()', () => {
}
});
fit('should return six entries for the given item', async() => {
it('should return six entries for the given item', async() => {
const minDate = Date.vnNew();
minDate.setHours(0, 0, 0, 0);
minDate.setMonth(minDate.getMonth() - 2, 1);