Merge branch 'master' into hotfix_negative_available
gitea/salix-front/pipeline/pr-master This commit looks good
Details
gitea/salix-front/pipeline/pr-master This commit looks good
Details
This commit is contained in:
commit
f615c5c196
|
@ -8,7 +8,8 @@ const model = defineModel({ prop: 'modelValue' });
|
||||||
<VnInput
|
<VnInput
|
||||||
v-model="model"
|
v-model="model"
|
||||||
ref="inputRef"
|
ref="inputRef"
|
||||||
@keydown.tab="model = useAccountShortToStandard($event.target.value) ?? model"
|
@keydown.tab="$refs.inputRef.vnInputRef.blur()"
|
||||||
|
@blur="model = useAccountShortToStandard(model) ?? model"
|
||||||
@input="model = $event.target.value.replace(/[^\d.]/g, '')"
|
@input="model = $event.target.value.replace(/[^\d.]/g, '')"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -233,10 +233,10 @@ const ticketColumns = ref([
|
||||||
</span>
|
</span>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-client="{ value, row }">
|
<template #body-cell-client="{ row }">
|
||||||
<QTd auto-width>
|
<QTd>
|
||||||
<span class="link">
|
<span class="link">
|
||||||
{{ value }}
|
{{ row.clientFk }}
|
||||||
<CustomerDescriptorProxy :id="row?.clientFk" />
|
<CustomerDescriptorProxy :id="row?.clientFk" />
|
||||||
</span>
|
</span>
|
||||||
</QTd>
|
</QTd>
|
||||||
|
|
Loading…
Reference in New Issue