Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #271 | Créer une nouvelle expédition (étape 1) | ## Description de la PR ## Modification du .env ## Check list [x ] Pas de régression TU/TI/TF rédigée [x ] TU/TI/TF OK [x ] CHANGELOG modifié Co-authored-by: kevin <kevin@yuno.malio.fr> Reviewed-on: #12 Reviewed-by: Autin <tristan@yuno.malio.fr> Co-authored-by: Matteo <matteo@yuno.malio.fr> Co-committed-by: Matteo <matteo@yuno.malio.fr>
83 lines
2.3 KiB
Vue
83 lines
2.3 KiB
Vue
<template>
|
|
<div>
|
|
<div class="flex justify-between h-[52px] mb-[80px]">
|
|
<div class="flex flex-1 mr-16">
|
|
<UiStepper
|
|
:labels="SHIPMENT_STEP_LABELS"
|
|
:current-step="storeShipment?.currentStep ?? 0"
|
|
@select="handleStepSelect"
|
|
|
|
/>
|
|
</div>
|
|
<button
|
|
type="button"
|
|
class="flex flex-col justify-center uppercase text-xl bg-black text-white h-[50px] w-[272px] text-center"
|
|
@click="saveAndHold"
|
|
>Mettre en attente
|
|
</button>
|
|
</div>
|
|
<ShipmentForm v-if="!storeShipment || storeShipment.currentStep === 0" ref="shipmentFormRef"/>
|
|
<ShipmentWeight v-if="storeShipment?.currentStep === 1" mode="gross"/>
|
|
<ShipmentWeight v-if="storeShipment?.currentStep >= 2" mode="tare"/>
|
|
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
|
|
import {SHIPMENT_STEP_LABELS} from "~/constants/steps";
|
|
import {storeToRefs} from "pinia";
|
|
import {useShipmentStore} from "~/stores/shipment";
|
|
import { ref, watch } from 'vue'
|
|
const shipmentStore = useShipmentStore()
|
|
const {current: storeShipment} = storeToRefs(shipmentStore)
|
|
const shipmentFormRef = ref<{ saveDraft: () => Promise<void> } | null>(null)
|
|
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
|
|
const resolveShipmentId = (param: unknown) => {
|
|
const idStr = Array.isArray(param) ? param[0] : param
|
|
if (!idStr) {
|
|
return null
|
|
}
|
|
const id = Number(idStr)
|
|
return Number.isFinite(id) ? id : null
|
|
}
|
|
|
|
watch (
|
|
() => route.params.id,
|
|
async (param) => {
|
|
const id = resolveShipmentId(param)
|
|
if (id === null) {
|
|
shipmentStore.clearCurrent()
|
|
return
|
|
}
|
|
await shipmentStore.loadShipment(id)
|
|
},
|
|
{immediate: true}
|
|
)
|
|
|
|
const saveAndHold = async () => {
|
|
if (shipmentFormRef.value) {
|
|
await shipmentFormRef.value.saveDraft()
|
|
}
|
|
await router.push('/')
|
|
}
|
|
const handleStepSelect = async (step: number) => {
|
|
if (!shipmentStore.current) {
|
|
return
|
|
}
|
|
|
|
if (step === shipmentStore.current.currentStep) {
|
|
return
|
|
}
|
|
|
|
await shipmentStore.updateShipment(shipmentStore.current.id, {
|
|
currentStep: step
|
|
})
|
|
await shipmentStore.loadShipment(shipmentStore.current.id)
|
|
}
|
|
|
|
|
|
</script>
|