Fix ticket print
gitea/hedera-web/pipeline/pr-4922-vueMigration This commit looks good
Details
gitea/hedera-web/pipeline/pr-4922-vueMigration This commit looks good
Details
This commit is contained in:
parent
533c7560dc
commit
2176c6e259
|
@ -15,6 +15,7 @@ const route = useRoute();
|
|||
const userStore = useUserStore();
|
||||
const appStore = useAppStore();
|
||||
const { isHeaderMounted } = storeToRefs(appStore);
|
||||
const { user, token } = storeToRefs(userStore);
|
||||
|
||||
const ticket = ref({});
|
||||
const rows = ref([]);
|
||||
|
@ -39,8 +40,8 @@ onMounted(async () => {
|
|||
|
||||
const onPrintClick = () => {
|
||||
const params = new URLSearchParams({
|
||||
access_token: userStore.token,
|
||||
recipientId: userStore.id,
|
||||
access_token: token.value,
|
||||
recipientId: user.value.id,
|
||||
type: 'deliveryNote'
|
||||
});
|
||||
window.open(
|
||||
|
@ -60,10 +61,7 @@ const onPrintClick = () => {
|
|||
/>
|
||||
</Teleport>
|
||||
<QPage>
|
||||
<TicketDetails
|
||||
:rows="rows"
|
||||
:ticket="ticket"
|
||||
/>
|
||||
<TicketDetails :rows="rows" :ticket="ticket" />
|
||||
</QPage>
|
||||
</template>
|
||||
|
||||
|
|
Loading…
Reference in New Issue