7983-testToMaster_2438 #718

Merged
alexm merged 353 commits from 7983-testToMaster_2438 into master 2024-09-17 05:39:39 +00:00
2 changed files with 4 additions and 5 deletions
Showing only changes of commit d4da8fc69f - Show all commits

View File

@ -204,10 +204,9 @@ function formatValue(value) {
function sanitizer(params) {
for (const [key, value] of Object.entries(params)) {
if (typeof value === 'object' && value !== null) {
sanitizer(value);
} else if (typeof value === 'string') {
params[key] = value.replaceAll('%', '');
if (value && typeof value === 'object') {
const param = Object.values(value)[0];
if (typeof param == 'string') params[key] = param.replaceAll('%', '');
}
}
return params;

View File

@ -176,7 +176,7 @@ const ticketsColumns = ref([
<QTd>
<QBtn class="no-uppercase link" flat dense>
{{ value }}
<CustomerDescriptorProxy :id="row.clientFk" />
<CustomerDescriptorProxy :id="row.id" />
</QBtn>
</QTd>
</template>