refactor: refs #6564 update API call
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
This commit is contained in:
parent
530dc62e00
commit
72a19cbba1
|
@ -46,7 +46,7 @@ async function getClaims() {
|
|||
originalTicket.value = data[0]?.originalTicketFk;
|
||||
}
|
||||
async function getProblems() {
|
||||
const { data } = await axios.get(`Tickets/${entityId.value}/getTicketProblems`);
|
||||
const { data } = await axios.get(`Tickets/getTicketProblems`, {params: { ids: [entityId.value] }});
|
||||
if (!data) return;
|
||||
problems.value = data[0];
|
||||
}
|
||||
|
|
|
@ -122,7 +122,7 @@ onMounted(async () => await getItemPackingTypes());
|
|||
<QItemSection>
|
||||
<VnInputNumber
|
||||
v-model="params.scopeDays"
|
||||
:label="t('Days onward')"
|
||||
:label="t('globals.daysOnward')"
|
||||
filled
|
||||
:step="0"
|
||||
/>
|
||||
|
@ -170,7 +170,7 @@ onMounted(async () => await getItemPackingTypes());
|
|||
<QItemSection>
|
||||
<VnCheckbox
|
||||
toggle-indeterminate
|
||||
label="only with destination"
|
||||
:label="t('params.onlyWithDestination')"
|
||||
v-model="params.onlyWithDestination"
|
||||
@update:model-value="searchFn()"
|
||||
dense
|
||||
|
@ -197,8 +197,8 @@ es:
|
|||
Vertical: Vertical
|
||||
iptInfo: Encajado
|
||||
params:
|
||||
dateFuture: fecha origen
|
||||
dateToAdvance: Fecha destino
|
||||
dateFuture: F. origen
|
||||
dateToAdvance: F. destino
|
||||
futureIpt: IPT Origen
|
||||
ipt: IPT destino
|
||||
isFullMovable: 100% movible
|
||||
|
|
Loading…
Reference in New Issue