7152-devToTest_2414 #2228

Merged
alexm merged 636 commits from 7152-devToTest_2414 into test 2024-03-28 08:26:34 +00:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit a14ab90d5a - Show all commits

View File

@ -3069,3 +3069,10 @@ INSERT INTO `vn`.`cmr` (id,truckPlate,observations,senderInstruccions,paymentIns
UPDATE vn.department
SET workerFk = null;
INSERT INTO vn.ticketLog (originFk,userFk,`action`,creationDate,changedModel,newInstance,changedModelId,changedModelValue)
VALUES (9,9,'insert','2000-01-01 11:01:00.000','Ticket','{"isDeleted":true}',45,'Super Man');
UPDATE vn.ticket
SET isDeleted=1
WHERE id=9;

View File

@ -181,6 +181,7 @@ class Controller extends Section {
return this.$http.get(`TicketLogs`).then(res => {
if (res && res.data.length)
console.log(res.data);
console.log(res);
return true;
});
}