Merge pull request 'refs #6898 hotfix agency' (!808) from 6898-hotfixSupplierAgency into master
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #808
Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
Carlos Satorres 2024-10-07 07:54:07 +00:00
commit f22809d609
1 changed files with 6 additions and 6 deletions

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,
});