Merge branch 'develop' of github.com:Frappet/hrms-mgt into develop
This commit is contained in:
commit
f183c200f6
2 changed files with 9 additions and 1 deletions
|
|
@ -278,7 +278,7 @@ async function getDataTable(id: string, level: number = 0) {
|
|||
isPosition: e.isPosition,
|
||||
posMasterNo:
|
||||
e.orgShortname +
|
||||
(e.posMasterNoPrefix != null ? e.posMasterNoPrefix : "") +
|
||||
(e.posMasterNoPrefix != null ? e.posMasterNoPrefix : "") + ' ' +
|
||||
e.posMasterNo +
|
||||
(e.posMasterNoSuffix != null ? e.posMasterNoSuffix : ""),
|
||||
positionName: e.positionName,
|
||||
|
|
|
|||
|
|
@ -610,6 +610,14 @@ onMounted(async () => {
|
|||
: "-"
|
||||
}}
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-else-if="col.name == 'organizationNameOld'"
|
||||
class="text-html"
|
||||
>
|
||||
{{ col.value ? col.value : "-" }}
|
||||
</div>
|
||||
|
||||
<div v-else-if="col.name == 'createdAt'">
|
||||
{{
|
||||
props.row.createdAt ? date2Thai(props.row.createdAt) : "-"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue