diff --git a/src/modules/05_placement/components/PersonalList/DialogOrders.vue b/src/modules/05_placement/components/PersonalList/DialogOrders.vue index e134d343a..130cb5914 100644 --- a/src/modules/05_placement/components/PersonalList/DialogOrders.vue +++ b/src/modules/05_placement/components/PersonalList/DialogOrders.vue @@ -192,16 +192,16 @@ function filterSelectOrder() { switch (commandType.value) { case "C-PM-01": case "C-PM-02": - return v.typeCommand === "APPOINTED" && v.bmaOfficer === null; + return v.typeCommand === "APPOINTED" && v.bmaOfficerCheck === null; case "C-PM-03": - return v.typeCommand === "APPOINT" && v.bmaOfficer !== null; + return v.typeCommand === "APPOINT" && v.bmaOfficerCheck !== null; case "C-PM-04": - return v.typeCommand === "MOVE" && v.bmaOfficer !== null; + return v.typeCommand === "MOVE" && v.bmaOfficerCheck !== null; case "C-PM-06": - return v.typeCommand === "SLIP" && v.bmaOfficer !== null; + return v.typeCommand === "SLIP" && v.bmaOfficerCheck !== null; default: return []; diff --git a/src/modules/05_placement/components/PersonalList/Table.vue b/src/modules/05_placement/components/PersonalList/Table.vue index 61ba36589..575646092 100644 --- a/src/modules/05_placement/components/PersonalList/Table.vue +++ b/src/modules/05_placement/components/PersonalList/Table.vue @@ -339,6 +339,7 @@ async function getTable() { positionCandidateId: data.positionCandidateId, reportingDate: data.reportingDate, bmaOfficer: convertBmaOfficer(data.bmaOfficer), + bmaOfficerCheck: data.bmaOfficer, statusId: data.statusId, draft: convertDraft(data.draft), typeCommand: data.typeCommand,