#8745 - fixCustomer #1588

Open
carlossa wants to merge 9 commits from 8745-fixCustomer into master
2 changed files with 1 additions and 32 deletions
Showing only changes of commit 5f3810184b - Show all commits

View File

@ -10,7 +10,7 @@ import VnUserLink from 'src/components/ui/VnUserLink.vue';
const { t } = useI18n();
const route = useRoute();
const entityId = route.params.id;
const entityId = computed(() => route.params.id);
carlossa marked this conversation as resolved Outdated
Outdated
Review

En computed millor

En computed millor
const totalAmount = ref();
const tableRef = ref();
const filter = {

View File

@ -28,37 +28,6 @@ const filter = {
};
const ClientDmsRef = ref(false);
// const tableColumnComponents = {
// state: {
// component: CustomerCloseIconTooltip,
// props: ({ row }) => ({ transaction: row }),
// event: () => {},
// },
// id: {
// component: 'span',
// props: () => {},
// event: () => {},
// },
// date: {
// component: 'span',
// props: () => {},
// event: () => {},
// },
// amount: {
// component: 'span',
// props: () => {},
// event: () => {},
// },
// validate: {
// component: CustomerCheckIconTooltip,
// props: ({ row }) => ({
// transaction: row,
// promise: () => ClientDmsRef.value.fetch(),
// }),
// event: () => {},
// },
// };
const columns = computed(() => [
{
align: 'left',