forked from verdnatura/salix-front
refactor: refs #7553 deleted logs
This commit is contained in:
parent
65e3fd874d
commit
db6f4fd15a
|
@ -259,7 +259,6 @@ async function createRefund(withWarehouse) {
|
|||
}
|
||||
|
||||
async function changeShippedHour(time) {
|
||||
console.log('time: ', time);
|
||||
const params = {
|
||||
shipped: time,
|
||||
};
|
||||
|
|
|
@ -440,10 +440,18 @@ function getNoteValue(description) {
|
|||
:color="'negative'"
|
||||
>
|
||||
{{ props.row.visible }}
|
||||
{{ console.log(props.row) }}
|
||||
</QChip>
|
||||
</QTd>
|
||||
<QTd>{{ props.row.available }}</QTd>
|
||||
<QTd>
|
||||
<QChip
|
||||
dense
|
||||
rounded
|
||||
v-if="props.row.available < 0"
|
||||
:color="'negative'"
|
||||
>
|
||||
{{ props.row.available }}
|
||||
</QChip>
|
||||
</QTd>
|
||||
<QTd>{{ props.row.quantity }}</QTd>
|
||||
<QTd class="description-cell">
|
||||
<div class="row full-width justify-between">
|
||||
|
|
|
@ -302,7 +302,7 @@ async function sendDocuware(ticket) {
|
|||
}
|
||||
notify('globals.dataSaved', 'positive');
|
||||
} catch (err) {
|
||||
console.log('err: ', err);
|
||||
console.err('err: ', err);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -321,7 +321,6 @@ function openBalanceDialog(ticket) {
|
|||
}
|
||||
|
||||
for (let ticketData of checkedTickets) {
|
||||
console.log('ticketData: ', ticketData);
|
||||
amountPaid.value += ticketData.totalWithVat;
|
||||
clientFk.value = ticketData.clientFk;
|
||||
description.value.push(ticketData.id);
|
||||
|
@ -367,8 +366,6 @@ const setAmountToReturn = (newAmountGiven) => {
|
|||
};
|
||||
|
||||
function setReference(data) {
|
||||
console.log('entity: ', data);
|
||||
|
||||
let newDescription = '';
|
||||
|
||||
switch (data) {
|
||||
|
@ -410,7 +407,6 @@ function setReference(data) {
|
|||
}
|
||||
|
||||
dialogData.value.value.description = newDescription;
|
||||
console.log('Updated description:', dialogData.value.value.description);
|
||||
}
|
||||
</script>
|
||||
|
||||
|
@ -451,7 +447,6 @@ function setReference(data) {
|
|||
:user-params="userParams"
|
||||
:right-search="false"
|
||||
redirect="ticket"
|
||||
auto-load
|
||||
v-model:selected="selectedRows"
|
||||
:table="{
|
||||
'row-key': 'id',
|
||||
|
|
Loading…
Reference in New Issue