refs #6898 hotfix agency #808

Merged
carlossa merged 2 commits from 6898-hotfixSupplierAgency into master 2024-10-07 07:54:08 +00:00
1 changed files with 6 additions and 6 deletions
Showing only changes of commit 5d65d3e20c - Show all commits

View File

@ -15,12 +15,12 @@ const route = useRoute();
const agenciesOptions = ref(null); const agenciesOptions = ref(null);
const newAgencyTermForm = reactive({ const newAgencyTermForm = reactive({
agencyFk: null, agencyFk: null,
minimumM3: null, minimumM3: 0,
packagePrice: null, packagePrice: 0,
kmPrice: null, kmPrice: 0,
m3Price: null, m3Price: 0,
routePrice: null, routePrice: 0,
minimumKm: null, minimumKm: 0,
supplierFk: route.params.id, supplierFk: route.params.id,
}); });