exportando ventas de tryton #5 #6

Merged
mono merged 3 commits from export_purchases_to_tryton_#5 into main 2025-03-03 22:54:14 -05:00
Showing only changes of commit 49e8de8c0c - Show all commits

View File

@ -1,3 +1,19 @@
<template>
<ExportPurchasesForTryton />
<div>
<CodeDialog @code-verified="(verified) => showComponent = verified"/>
</div>
<ExportPurchasesForTryton v-if="showComponent" />
</template>
<script>
import CodeDialog from '../components/CodeDialog.vue'
export default {
data() {
return {
showComponent: false,
}
},
components: { CodeDialog },
methods: {},
}
</script>