Merge pull request '2246-claim_sorted_states' (#258) from 2246-claim_sorted_states into dev
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
Reviewed-by: Bernat Exposito <bernat@verdnatura.es>
This commit is contained in:
commit
5f8a2a24f5
|
@ -0,0 +1,10 @@
|
|||
ALTER TABLE `vn`.`claimState`
|
||||
ADD COLUMN `priority` INT NOT NULL DEFAULT 1 AFTER `roleFk`;
|
||||
|
||||
UPDATE `vn`.`claimState` SET `priority` = '1' WHERE (`id` = '1');
|
||||
UPDATE `vn`.`claimState` SET `priority` = '5' WHERE (`id` = '2');
|
||||
UPDATE `vn`.`claimState` SET `priority` = '7' WHERE (`id` = '3');
|
||||
UPDATE `vn`.`claimState` SET `priority` = '6' WHERE (`id` = '4');
|
||||
UPDATE `vn`.`claimState` SET `priority` = '3' WHERE (`id` = '5');
|
||||
UPDATE `vn`.`claimState` SET `priority` = '4' WHERE (`id` = '6');
|
||||
UPDATE `vn`.`claimState` SET `priority` = '2' WHERE (`id` = '7');
|
|
@ -1473,14 +1473,15 @@ INSERT INTO `vn`.`clientSample`(`id`, `clientFk`, `typeFk`, `created`, `workerFk
|
|||
(4, 102, 2, CURDATE(), 18, 18, 567),
|
||||
(5, 102, 3, CURDATE(), 19, 19, 567);
|
||||
|
||||
INSERT INTO `vn`.`claimState`(`id`, `code`, `description`, `roleFk`)
|
||||
INSERT INTO `vn`.`claimState`(`id`, `code`, `description`, `roleFk`, `priority`)
|
||||
VALUES
|
||||
( 1, 'pending', 'Pendiente', 1),
|
||||
( 2, 'managed', 'Gestionado', 1),
|
||||
( 3, 'resolved', 'Resuelto', 21),
|
||||
( 4, 'canceled', 'Anulado', 1),
|
||||
( 5, 'disputed', 'Cuestionado', 21),
|
||||
( 6, 'mana', 'Mana', 1);
|
||||
( 1, 'pending', 'Pendiente', 1, 1),
|
||||
( 2, 'managed', 'Gestionado', 1, 5),
|
||||
( 3, 'resolved', 'Resuelto', 21, 7),
|
||||
( 4, 'canceled', 'Anulado', 1, 6),
|
||||
( 5, 'disputed', 'Cuestionado', 21, 3),
|
||||
( 6, 'mana', 'Mana', 1, 4),
|
||||
( 7, 'inProgress', 'En Curso', 1, 2);
|
||||
|
||||
INSERT INTO `vn`.`claim`(`id`, `ticketCreated`, `claimStateFk`, `observation`, `clientFk`, `workerFk`, `responsibility`, `isChargedToMana`, `created` )
|
||||
VALUES
|
||||
|
|
|
@ -114,7 +114,6 @@ module.exports = Self => {
|
|||
LEFT JOIN claimState cs ON cs.id = cl.claimStateFk`
|
||||
);
|
||||
|
||||
|
||||
stmt.merge(conn.makeSuffix(filter));
|
||||
let itemsIndex = stmts.push(stmt) - 1;
|
||||
|
||||
|
|
|
@ -19,6 +19,10 @@
|
|||
"description": {
|
||||
"type": "String",
|
||||
"required": true
|
||||
},
|
||||
"priority": {
|
||||
"type": "nomber",
|
||||
"required": true
|
||||
}
|
||||
},
|
||||
"relations": {
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
show-field="description"
|
||||
value-field="id"
|
||||
label="Claim state"
|
||||
order="priority ASC"
|
||||
vn-focus>
|
||||
</vn-autocomplete>
|
||||
</vn-horizontal>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
vn-id="model"
|
||||
url="Claims/filter"
|
||||
limit="20"
|
||||
order="claimStateFk ASC, created DESC"
|
||||
order="priority ASC, created DESC"
|
||||
auto-load="true">
|
||||
</vn-crud-model>
|
||||
<vn-portal slot="topbar">
|
||||
|
|
Loading…
Reference in New Issue