4649-bookEntriesIncorrectly_notification #1188

Merged
joan merged 16 commits from 4649-bookEntriesIncorrectly_notification into dev 2022-12-22 10:43:22 +00:00
4 changed files with 8 additions and 7 deletions
Showing only changes of commit 91f955ccf5 - Show all commits

View File

@ -13,7 +13,6 @@ BEGIN
* @param vAuthorFk The notification author or %NULL if there is no author
* @return The notification id
*/
DECLARE vNotificationFk INT;
vicent marked this conversation as resolved Outdated
Outdated
Review

Eliminar variable

Eliminar variable
INSERT INTO notificationQueue
SET notificationFk = vNotificationName,

View File

@ -44,13 +44,15 @@ class Controller extends Section {
}
get hasDateRange() {
const userParams = this.$.model.userParams;
const hasLanded = userParams.landedTo;
const hasShipped = userParams.shippedFrom;
const hasContinent = userParams.continent;
const hasWarehouseOut = userParams.warehouseOutFk;
console.log(this.$.model);
// const userParams = Object.assign({}, this.$.model.userParams);
// console.log(userParams);
// const hasLanded = userParams.landedTo;
// const hasShipped = userParams.shippedFrom;
// const hasContinent = userParams.continent;
// const hasWarehouseOut = userParams.warehouseOutFk;
return hasLanded || hasShipped || hasContinent || hasWarehouseOut;
// return hasLanded || hasShipped || hasContinent || hasWarehouseOut;
}
onDragInterval() {