#7553 modified TicketExpedition & changes in ticket section #571

Merged
jon merged 79 commits from 7553_FixTicketExpedition into dev 2024-09-25 05:51:16 +00:00
3 changed files with 9 additions and 5 deletions
Showing only changes of commit b4c46dc153 - Show all commits

View File

@ -77,8 +77,6 @@ function handleDelete(row) {
v-model="row.description"
class="col"
/>
{{ index }},
{{ row }}
<QIcon
name="delete"
size="sm"

View File

@ -428,25 +428,31 @@ function toTicketUrl(section) {
</QTd>
<QTd>
<QChip
v-if="props.row.visible < 0"
dense
rounded
v-if="props.row.visible < 0"
:color="'negative'"
text-color="white"
>
{{ props.row.visible }}
</QChip>
<span v-else>
{{ props.row.visible }}
</span>
</QTd>
<QTd>
<QChip
v-if="props.row.available < 0"
dense
rounded
v-if="props.row.available < 0"
:color="'negative'"
text-color="white"
>
{{ props.row.available }}
</QChip>
<span v-else>
{{ props.row.available }}
</span>
</QTd>
<QTd>{{ props.row.quantity }}</QTd>
<QTd class="description-cell">

View File

@ -93,7 +93,7 @@ const applyVolumes = async (salesData) => {
}
};
onMounted(() => (stateStore.rightDrawer = false));
onMounted(() => (stateStore.rightDrawer = true));
onUnmounted(() => (stateStore.rightDrawer = false));
</script>