#6276 createNewWarehouse methods migrated from silex to salix #1850

Merged
jorgep merged 158 commits from 6276-createNewWarehouse into dev 2024-03-06 11:32:11 +00:00
1 changed files with 6 additions and 13 deletions
Showing only changes of commit f95a4f3530 - Show all commits

View File

@ -42,7 +42,12 @@ module.exports = Self => {
const [tickets] = await Self.rawSql('CALL vn.collection_getTickets(?)', [id], myOptions);
await setState(source, id, myOptions);
if (source) {
await Self.rawSql(
'CALL vn.ticketStateToday_setState(?,?)', [id, source], options
);
}
jorgep marked this conversation as resolved Outdated

picker i checker no son el mateix..

picker i checker no son el mateix..
const [sales] = await Self.rawSql('CALL vn.sale_getFromTicketOrCollection(?)',
[id], myOptions);
@ -151,16 +156,4 @@ module.exports = Self => {
AND tr.landed >= DATE_SUB(CURDATE(), INTERVAL 1 YEAR)`;
return Self.rawSql(query, [ticketId], options);
jorgep marked this conversation as resolved Outdated

@sergiodt ací no pots pasar desde front el codi correcte i evitem fer esta conversió?

@sergiodt ací no pots pasar desde front el codi correcte i evitem fer esta conversió?

Corregido, lo pasará desde el front.

Corregido, lo pasará desde el front.
}
async function setState(source, id, options) {
const states = {
'PRECHECKER': 'PREVIOUS_CONTROL',
'CHECKER': 'ON_CHECKING'
};
if (states[source]) {
await Self.rawSql(
'CALL vn.ticketStateToday_setState(?,?)', [id, states[source]], options
);
}
}
};