diff --git a/src/modules/05_placement/components/probation/MainProbation.vue b/src/modules/05_placement/components/probation/MainProbation.vue
index 880fa24ae..3e1ef70dc 100644
--- a/src/modules/05_placement/components/probation/MainProbation.vue
+++ b/src/modules/05_placement/components/probation/MainProbation.vue
@@ -323,7 +323,7 @@ function addPersonalData(data: ResProfileProbation) {
lastName: data.lastName,
position: data.position,
idcard: data.idcard,
- order_number: data.refCommandNo ? data.refCommandNo : "",
+ order_number: data.commandNo ? data.commandNo : "",
posLevelName: data.posLevelName,
posTypeName: data.posTypeName,
posNo: data.posNo,
@@ -630,7 +630,7 @@ onMounted(() => {
}}
-
+
{{ col.value ? col.value : "-" }}
@@ -789,9 +789,9 @@ onMounted(() => {
{{
- props.row.refCommandNo
- ? props.row.refCommandNo != "xx/2566"
- ? props.row.refCommandNo
+ props.row.commandNo
+ ? props.row.commandNo != "xx/2566"
+ ? props.row.commandNo
: "-"
: "-"
}}
diff --git a/src/modules/05_placement/interface/response/Probation.ts b/src/modules/05_placement/interface/response/Probation.ts
index 2fe4c39c3..6612c8314 100644
--- a/src/modules/05_placement/interface/response/Probation.ts
+++ b/src/modules/05_placement/interface/response/Probation.ts
@@ -41,6 +41,7 @@ interface ResProfileProbation {
prefix: string;
rank: string;
refCommandNo: string;
+ commandNo?: string;
root: string;
rootDna: string;
}