refs #6420 change url #136

Merged
carlossa merged 8 commits from 6420-claimNotesSummary into dev 2024-01-10 07:27:20 +00:00
2 changed files with 14 additions and 19 deletions
Showing only changes of commit 63b1c53ca9 - Show all commits

View File

@ -115,6 +115,11 @@ async function insert() {
<style lang="scss" scoped>
.q-card {
max-width: 80em;
&__section {
overflow-x: hidden;
carlossa marked this conversation as resolved
Review

Revisado los resultados visuales, ver si se puede usar sin la propiedad "overflow-x" :)

Revisado los resultados visuales, ver si se puede usar sin la propiedad "overflow-x" :)
word-wrap: break-word;
}
}
.q-dialog .q-card {
width: 400px;

View File

@ -36,15 +36,6 @@ const claimDmsFilter = ref({
],
where: { claimFk: entityId.value },
});
const claimObservationsRef = ref();
const claimObservationsFilter = ref({
include: [
{
relation: 'observation',
},
],
where: { claimFk: entityId.value },
});
onMounted(async () => {
salixUrl.value = await getUrl('');
@ -167,11 +158,6 @@ function setClaimDms(data) {
});
}
const claimObservations = ref([]);
function setClaimObservations(data) {
claimObservations.value = [];
}
function openDialog(dmsId) {
multimediaSlide.value = dmsId;
multimediaDialog.value = true;
@ -225,15 +211,12 @@ function openDialog(dmsId) {
</template>
</VnLv>
</QCard>
<QCard class="vn-max">
<QCard class="vn-max claimVnNotes">
<a class="header" :href="`#/claim/${entityId}/notes`">
{{ t('claim.summary.notes') }}
<QIcon name="open_in_new" color="primary" />
</a>
<ClaimNotes :add-note="false" style="height: 600px" />
<!-- <QVirtualScroll :items="observations" separator
>
</QVirtualScroll> -->
<ClaimNotes :add-note="false" style="height: 350px" order="created ASC" />
</QCard>
<QCard class="vn-max" v-if="salesClaimed.length > 0">
<a class="header" :href="`#/claim/${entityId}/notes`">
carlossa marked this conversation as resolved Outdated
Outdated
Review

Debe llevar a detalles :)
Es un error heredado

Debe llevar a detalles :) Es un error heredado
@ -386,6 +369,13 @@ function openDialog(dmsId) {
</template>
</CardSummary>
</template>
<style lang="scss">
.claimVnNotes {
.q-card {
max-width: 100%;
}
}
</style>
<style lang="scss" scoped>
.q-dialog__inner--minimized > div {
max-width: 80%;