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 newAgencyTermForm = reactive({
agencyFk: null,
minimumM3: null,
packagePrice: null,
kmPrice: null,
m3Price: null,
routePrice: null,
minimumKm: null,
minimumM3: 0,
packagePrice: 0,
kmPrice: 0,
m3Price: 0,
routePrice: 0,
minimumKm: 0,
supplierFk: route.params.id,
});