675 lines
32 KiB
JavaScript
675 lines
32 KiB
JavaScript
Vue.component('change-status-modal', {
|
|
props: {
|
|
orderId: {type: Number, required: true},
|
|
type: {type: String, default: 'accept'}
|
|
},
|
|
data() {
|
|
return {
|
|
window: window,
|
|
order: null,
|
|
newStatus: 'noChanges',
|
|
note: '',
|
|
file: null,
|
|
uploadedFiles: [],
|
|
sendEmail: false,
|
|
sendEmailViewedPDF: false,
|
|
sendEmailMail: '',
|
|
submitLoading: false,
|
|
deliveredPositions: {} // To track delivery details for each position
|
|
};
|
|
},
|
|
async mounted() {
|
|
const response = await axios.get(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseOrder/getById`, {params: {id: this.orderId}});
|
|
if (response.data.status === 'cancelled') {
|
|
this.$emit('close');
|
|
window.notify('error', 'Bestellung wurde storniert');
|
|
}
|
|
this.order = response.data;
|
|
|
|
// Initialize deliveredPositions after fetching the order
|
|
if (this.order && this.order.positions) {
|
|
this.order.positions.forEach((pos, index) => {
|
|
this.$set(this.deliveredPositions, index, {
|
|
amount: pos.amount, // Default delivered amount to the ordered amount
|
|
reason: '',
|
|
cancelRest: false,
|
|
articleName: pos.articleName, // Store for easy access in the submit method
|
|
orderedAmount: pos.amount
|
|
});
|
|
});
|
|
}
|
|
},
|
|
computed: {
|
|
availableStatuses() {
|
|
// This computed property remains unchanged
|
|
switch (this.order.status) {
|
|
case 'new':
|
|
return [
|
|
{value: 'noChanges', text: 'Keine Änderungen'},
|
|
{value: 'accepted', text: 'Akzeptiert'},
|
|
{value: 'ordered', text: 'Bestellt'},
|
|
{value: 'cancelled', text: 'Storniert'},
|
|
];
|
|
case 'accepted':
|
|
return [
|
|
{value: 'noChanges', text: 'Keine Änderungen'},
|
|
{value: 'ordered', text: 'Bestellt'},
|
|
{value: 'cancelled', text: 'Storniert'},
|
|
];
|
|
case 'ordered':
|
|
return [
|
|
{value: 'noChanges', text: 'Keine Änderungen'},
|
|
{value: 'sent', text: 'Versendet'},
|
|
{value: 'fullyDelivered', text: 'Geliefert'},
|
|
{value: 'partiallyDelivered', text: 'Teilweise geliefert'},
|
|
{value: 'cancelled', text: 'Storniert'},
|
|
];
|
|
case 'sent':
|
|
return [
|
|
{value: 'noChanges', text: 'Keine Änderungen'},
|
|
{value: 'partiallyDelivered', text: 'Teilweise geliefert'},
|
|
{value: 'fullyDelivered', text: 'Geliefert'},
|
|
{value: 'cancelled', text: 'Storniert'},
|
|
];
|
|
case 'partiallyDelivered':
|
|
return [
|
|
{value: 'noChanges', text: 'Keine Änderungen'},
|
|
{value: 'fullyDelivered', text: 'Geliefert'},
|
|
{value: 'cancelled', text: 'Storniert'},
|
|
];
|
|
case 'fullyDelivered':
|
|
return [
|
|
{value: 'noChanges', text: 'Keine Änderungen'},
|
|
{value: 'cancelled', text: 'Storniert'},
|
|
];
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
async handleFileUpload(event) {
|
|
// This method remains unchanged
|
|
const files = event.target.files;
|
|
if (!files.length) return;
|
|
|
|
for (let i = 0; i < files.length; i++) {
|
|
const file = files[i];
|
|
const formData = new FormData();
|
|
formData.append('file', file);
|
|
|
|
try {
|
|
const response = await axios.post(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseOrder/uploadFile`, formData, {
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data'
|
|
}
|
|
});
|
|
|
|
if (response.data.success) {
|
|
this.uploadedFiles.push({
|
|
id: response.data.fileId,
|
|
name: file.name
|
|
});
|
|
window.notify('success', `File "${file.name}" uploaded successfully`);
|
|
} else {
|
|
window.notify('error', `File "${file.name}" upload failed: ${response.data.error || 'Unknown error'}`);
|
|
}
|
|
} catch (error) {
|
|
window.notify('error', `Error uploading file "${file.name}"`);
|
|
}
|
|
}
|
|
event.target.value = '';
|
|
},
|
|
removeFile(index) {
|
|
this.uploadedFiles.splice(index, 1)
|
|
},
|
|
async submit() {
|
|
this.submitLoading = true;
|
|
if (this.newStatus === 'accepted' && this.sendEmail && !this.sendEmailMail) {
|
|
window.notify('error', 'Bitte geben Sie eine E-Mail-Adresse ein');
|
|
this.submitLoading = false;
|
|
return;
|
|
} else if (this.newStatus === 'accepted' && this.sendEmail && !this.sendEmailViewedPDF) {
|
|
window.notify('error', 'Bitte öffnen Sie das PDF bevor Sie die E-Mail senden');
|
|
this.submitLoading = false;
|
|
return;
|
|
} else if (this.newStatus === 'accepted' && this.sendEmail && this.sendEmailMail) {
|
|
if (this.order.sendShippingNote > 0) {
|
|
const shippingNoteId = await this.generateShippingNote();
|
|
await this.submitEmail(shippingNoteId);
|
|
} else await this.submitEmail();
|
|
}
|
|
|
|
const fileIds = this.uploadedFiles.map(file => file.id);
|
|
|
|
// Prepare delivery data if the status is related to delivery
|
|
let deliveryData = null;
|
|
if (this.newStatus === 'partiallyDelivered' || this.newStatus === 'fullyDelivered') {
|
|
deliveryData = this.deliveredPositions;
|
|
}
|
|
|
|
const response = await axios.post(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseOrder/createNewLogAction`, {
|
|
orderId: this.order.id,
|
|
status: this.newStatus,
|
|
note: this.note,
|
|
fileIds: JSON.stringify(fileIds),
|
|
deliveryData: deliveryData // Send the new delivery data to the backend
|
|
});
|
|
|
|
if (response.data.success) {
|
|
this.$emit('close');
|
|
window.notify('success', response.data.message ?? 'Status erfolgreich geändert');
|
|
} else {
|
|
window.notify('error',
|
|
response.data.errors ? Object.values(response.data.errors).join('<br>') : response.data.message || 'Ein Fehler ist aufgetreten');
|
|
}
|
|
this.submitLoading = false;
|
|
},
|
|
async generateShippingNote() {
|
|
// This method remains unchanged
|
|
const positions = this.order.positions.map(position => ({
|
|
article: position.article,
|
|
amount: position.amount,
|
|
price: position.buyPrice
|
|
}));
|
|
|
|
const response = await axios.post(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseShippingNote/create`,
|
|
{
|
|
"billingAddressId": this.order.sendShippingNote,
|
|
"deliveryAddressName": this.order.delAddrName,
|
|
"deliveryAddressLine": this.order.delAddrLine,
|
|
"deliveryAddressPLZ": this.order.delAddrPLZ,
|
|
"deliveryAddressCity": this.order.delAddrCity,
|
|
"deliveryAddressEMail": this.order.delAddrEMail,
|
|
"textElements": [],
|
|
"hoursEntries": [],
|
|
"positions": positions,
|
|
"note": "Bestellung #" + this.order.orderNumber,
|
|
"status": "new"
|
|
});
|
|
|
|
return response.data.id;
|
|
},
|
|
async submitEmail(shippingNote = null) {
|
|
// This method remains unchanged
|
|
const response = await axios.get(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseOrder/sendEmail?id=${this.order.id}&email=${this.sendEmailMail}${shippingNote ? '&shippingNote=' + shippingNote : ''}`);
|
|
|
|
if (response.data.success) {
|
|
window.notify('success', response.data.message);
|
|
} else {
|
|
window.notify('error', response.data.message || 'Ein Fehler ist aufgetreten');
|
|
}
|
|
}
|
|
},
|
|
template: `
|
|
<tt-modal :show="true" :delete="false" @submit="submit" @update:show="$emit('close')" title="Status ändern" :save-loading="submitLoading">
|
|
<tt-loader :absolute="false" v-if="!order"/>
|
|
<template v-else>
|
|
<tt-select label="Neuer Status" v-model="newStatus" :options="availableStatuses" sm row/>
|
|
|
|
<div class="form-group" style="margin: 10px 0">
|
|
<label>Dateiupload (Mehrere)</label>
|
|
<input type="file" class="form-control" @change="handleFileUpload" multiple/>
|
|
</div>
|
|
|
|
<div v-if="uploadedFiles.length" class="upload-success-alert">
|
|
<div class="alert-header">
|
|
<i class="fa fa-check-circle" aria-hidden="true"></i>
|
|
<span v-if="uploadedFiles.length === 1">Datei erfolgreich hochgeladen</span>
|
|
<span v-else>Dateien erfolgreich hochgeladen</span>
|
|
</div>
|
|
<ul class="file-list">
|
|
<li v-for="(file, index) in uploadedFiles" :key="file.id" class="file-item">
|
|
<i class="fa fa-file" aria-hidden="true"></i>
|
|
<span class="file-name">{{ file.name }}</span>
|
|
<button type="button" class="remove-btn" @click="removeFile(index)">
|
|
<i class="fa fa-times" aria-hidden="true"></i>
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<tt-textarea label="Bemerkung" v-model="note" sm/>
|
|
|
|
<div v-if="newStatus === 'partiallyDelivered' || newStatus === 'fullyDelivered'">
|
|
<h4 class="mt-3">Positionen Lieferung erfassen</h4>
|
|
<div style="display: grid; grid-template-columns: 2fr 1fr 1fr 2fr 1fr; grid-gap: 10px; font-weight: bold; margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px solid #ccc;">
|
|
<div>Artikel</div>
|
|
<div>Bestellt</div>
|
|
<div>Geliefert</div>
|
|
<div>Grund für Abweichung</div>
|
|
<div class="text-center">Rest stornieren</div>
|
|
</div>
|
|
<template v-for="(position, index) in order.positions">
|
|
<div :key="index" style="display: grid; grid-template-columns: 2fr 1fr 1fr 2fr 1fr; grid-gap: 10px; align-items: center; margin-bottom: 15px;">
|
|
<div>{{ position.articleName }}</div>
|
|
<div class="text-center">{{ position.amount }}</div>
|
|
<div>
|
|
<tt-input type="number"
|
|
:max="position.amount"
|
|
min="0"
|
|
v-model.number="deliveredPositions[index].amount"
|
|
sm
|
|
no-form-group
|
|
/>
|
|
</div>
|
|
<div>
|
|
<tt-input type="text"
|
|
v-if="deliveredPositions[index].amount < position.amount"
|
|
v-model="deliveredPositions[index].reason"
|
|
placeholder="z.B. Lieferschaden"
|
|
sm
|
|
no-form-group
|
|
/>
|
|
</div>
|
|
<div class="text-center">
|
|
<input type="checkbox"
|
|
v-if="deliveredPositions[index].amount < position.amount && deliveredPositions[index].amount !== ''"
|
|
v-model="deliveredPositions[index].cancelRest"
|
|
class="form-check-input"
|
|
style="position: relative; margin-left: auto; margin-right: auto;"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
|
|
<div v-if="newStatus === 'accepted'">
|
|
<h4>E-Mail verschicken?</h4>
|
|
|
|
<tt-button
|
|
additional-class="btn-outline-primary"
|
|
icon="fa fa-file-pdf text-danger"
|
|
text="PDF anzeigen"
|
|
@click="sendEmailViewedPDF = true;window.open(window.TT_CONFIG.BASE_PATH + '/WarehouseOrder/createPDF?id=' + order.id)"
|
|
></tt-button>
|
|
|
|
<div class="mt-2 d-flex align-items-center">
|
|
<div class="mr-2">E-Mail senden:</div>
|
|
<label class="ios-switch-wrapper" :class="{'disabled': !sendEmailViewedPDF}">
|
|
<input
|
|
type="checkbox"
|
|
v-model="sendEmail"
|
|
:disabled="!sendEmailViewedPDF"
|
|
>
|
|
<span class="ios-switch-slider"></span>
|
|
</label>
|
|
<div v-if="!sendEmailViewedPDF" class="text-muted ml-2 text-danger">
|
|
Bitte erst PDF ansehen
|
|
</div>
|
|
</div>
|
|
<tt-input v-if="sendEmail" label="E-Mail-Adresse" v-model="sendEmailMail" sm row/>
|
|
</div>
|
|
</template>
|
|
</tt-modal>
|
|
`
|
|
});
|
|
|
|
// The other components in WarehouseOrder.js (warehouse-order-modal, tt-file, etc.) remain unchanged.
|
|
// I am including them here to provide the full file content.
|
|
Vue.component('warehouse-order-modal', {
|
|
props: {
|
|
id: {type: [String, Number], required: true},
|
|
mode: {type: String, default: 'sign'}
|
|
},
|
|
template: `
|
|
<tt-modal :show="true"
|
|
@submit="submit"
|
|
@delete="deleteOrder"
|
|
:delete="false"
|
|
:title="id === 'create' ? 'Bestellung erstellen' : \`Bestellung #\${id} bearbeiten\`"
|
|
@update:show="$emit('close')">
|
|
<div style="width: 99%">
|
|
<h4 class="text-center">Bestelldetails</h4>
|
|
<tt-select label="Bearbeiter (XINON)"
|
|
:options="window.TT_CONFIG.CRUD_CONFIG.columns.find(column => column.key === 'createBy')?.modal.items"
|
|
sm
|
|
row
|
|
v-model="order.editor"/>
|
|
<tt-input label="Externe Referenz" v-model="order.extReference" sm row/>
|
|
|
|
<hr>
|
|
<h4 class="text-center">Positionen</h4>
|
|
<tt-positions-manager
|
|
ref="positionsManager"
|
|
v-model="order.positions"
|
|
:config="positionsConfig"
|
|
@updateField-article="fetchDistributors"
|
|
@updateField-article_text="fetchDistributors"
|
|
@updateField-distributorId="fetchDistributorData"
|
|
>
|
|
<template #form-actions-append>
|
|
<tt-button
|
|
v-if="!isNaN(parseInt($refs.positionsManager?.formData?.article))"
|
|
text="Zum Artikel"
|
|
sm
|
|
additional-class="btn-outline-primary"
|
|
@click="window.open(window.TT_CONFIG['BASE_PATH'] + '/WarehouseArticle?showId=' + $refs.positionsManager.formData.article)"/>
|
|
|
|
<tt-button
|
|
v-if="!isNaN(parseInt($refs.positionsManager?.formData?.article)) && !isNaN(parseInt($refs.positionsManager?.formData?.distributorId))"
|
|
text="Preis übern."
|
|
sm
|
|
additional-class="btn-outline-success"
|
|
@click="updateArticlePriceForDistributor($refs.positionsManager.formData.article, $refs.positionsManager.formData.distributorId, $refs.positionsManager.formData.buyPrice)"/>
|
|
</template>
|
|
</tt-positions-manager>
|
|
|
|
<hr>
|
|
<h4 class="text-center">Lieferadresse</h4>
|
|
<div style="display: grid; grid-gap: 10px; grid-template-columns: 2fr 2fr 1fr 1fr 2fr;">
|
|
<tt-input label="Name" v-model="order.delAddrName" sm/>
|
|
<tt-input label="Straße" v-model="order.delAddrLine" sm/>
|
|
<tt-input label="PLZ" v-model="order.delAddrPLZ" sm/>
|
|
<tt-input label="Ort" v-model="order.delAddrCity" sm/>
|
|
<tt-input label="E-Mail" v-model="order.delAddrEMail" sm/>
|
|
</div>
|
|
|
|
<template v-if="id === 'create' && order.delAddrLine !== 'Fladnitz im Raabtal 150'">
|
|
<div class="mt-2 d-flex align-items-center">
|
|
<div class="mr-2">Lieferschein erstellen und anhängen?</div>
|
|
<label class="ios-switch-wrapper">
|
|
<input type="checkbox" v-model="showSendShippingNote">
|
|
<span class="ios-switch-slider"></span>
|
|
</label>
|
|
</div>
|
|
<template v-if="showSendShippingNote">
|
|
<hr>
|
|
<tt-autocomplete v-model="order.sendShippingNote"
|
|
:api-url="window.TT_CONFIG['BASE_PATH'] + '/Address/Api?do=findAddress&fibu_primary_account=1'"
|
|
label="Rechnungsadresse"
|
|
sm
|
|
row/>
|
|
</template>
|
|
</template>
|
|
|
|
<hr>
|
|
<tt-textarea label="Interne Notiz" v-model="order.note" sm row/>
|
|
</div>
|
|
</tt-modal>
|
|
`,
|
|
|
|
data() {
|
|
return {
|
|
window: window,
|
|
showSendShippingNote: null,
|
|
lastDistributorFetch: null,
|
|
positionsConfig: {
|
|
customOrdering: 'distributorId',
|
|
fields: {
|
|
article: {
|
|
type: 'input-article',
|
|
label: 'Artikel',
|
|
apiUrl: '/WarehouseArticle/autoComplete',
|
|
customFieldReference: 'WarehouseArticle',
|
|
emitDisplayValue: true,
|
|
},
|
|
distributorId: {type: 'select', label: 'Lieferant', options: [], customFieldReference: 'WarehouseDistributor'},
|
|
distributorArticleNumber: {type: 'input', label: 'Lieferant Art-Nr.'},
|
|
amount: {type: 'input', label: 'Menge', inputType: 'number'},
|
|
buyPrice: {type: 'input', label: 'Einkaufspreis', inputType: 'number'},
|
|
verwendung: {type: 'input', label: 'Verwendung'},
|
|
},
|
|
validateFormOptions: [
|
|
{key: 'amount', message: 'Bitte füllen Sie die Menge aus'},
|
|
{key: 'distributorId', message: 'Bitte füllen Sie den Lieferanten aus'},
|
|
{key: 'article', message: 'Bitte füllen Sie den Artikel aus'},
|
|
{key: 'buyPrice', message: 'Bitte füllen Sie den Einkaufspreis aus'}
|
|
],
|
|
},
|
|
order: {
|
|
extReference: '',
|
|
delAddrName: 'XINON GmbH',
|
|
delAddrLine: 'Fladnitz im Raabtal 150',
|
|
delAddrPLZ: '8322',
|
|
delAddrCity: 'Studenzen',
|
|
delAddrEMail: 'einkauf@xinon.at',
|
|
note: '',
|
|
editor: window.TT_CONFIG['USER_ID'],
|
|
sendShippingNote: null,
|
|
positions: [],
|
|
}
|
|
}
|
|
},
|
|
async mounted() {
|
|
if (this.id !== 'create') {
|
|
const {data} = await axios.get(`${window.TT_CONFIG.BASE_PATH}/WarehouseOrder/getById?disableParse`, {params: {id: this.id}});
|
|
this.order = {...data, positions: JSON.parse(data.positions)};
|
|
return;
|
|
}
|
|
|
|
this.order.editor = parseInt(window.TT_CONFIG['USER_ID']);
|
|
|
|
const orderRequests = JSON.parse(localStorage.getItem('WarehouseOrder_create'));
|
|
if (!orderRequests) return;
|
|
|
|
for (const orderRequest of orderRequests) {
|
|
const positions = JSON.parse(orderRequest.positions);
|
|
const parsedPositions = await Promise.all(positions.map(async p => {
|
|
const distributor = (await axios.get(`${window.TT_CONFIG.BASE_PATH}/WarehouseOrder/getArticleDistributorData`,
|
|
{params: {articleId: p.articleId}}))
|
|
.data
|
|
.filter(d => !isNaN(d.purchasePrice))
|
|
.sort((a, b) => a.purchasePrice - b.purchasePrice)[0];
|
|
return {
|
|
article: p.articleId,
|
|
amount: p.amount,
|
|
buyPrice: distributor.purchasePrice,
|
|
distributorId: distributor.id,
|
|
distributorArticleNumber: distributor.externalArticleNumber,
|
|
verwendung: `${p.hasOwnProperty('purpose') ? p.purpose : ''} [Bestellwunsch: #${orderRequest.id}]`,
|
|
linkedOrderRequestId: orderRequest.id
|
|
};
|
|
}));
|
|
this.order.positions = [...this.order.positions, ...parsedPositions];
|
|
}
|
|
|
|
localStorage.removeItem('WarehouseOrder_create');
|
|
},
|
|
methods: {
|
|
async submit() {
|
|
if (this.order.positions.length === 0) return window.notify('error', 'Bitte fügen Sie mindestens eine Position hinzu.');
|
|
|
|
if (this.id === 'create') {
|
|
const distributorIds = [...new Set(this.order.positions.map(position => position.distributorId))];
|
|
|
|
for (const distributorId of distributorIds) {
|
|
const response = await axios.post(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseOrder/create`, {
|
|
...this.order,
|
|
distributorId,
|
|
positions: this.order.positions.filter(position => position.distributorId === distributorId)
|
|
}
|
|
);
|
|
if (response.data.success) {
|
|
this.$emit('close');
|
|
window.notify('success', response.data.message ?? 'Bestellung erfolgreich erstellt');
|
|
} else window.notify('error',
|
|
response.data.errors ? Object.values(response.data.errors).join('<br>') : response.data.message || 'Ein Fehler ist aufgetreten');
|
|
}
|
|
} else {
|
|
const response = await axios.post(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseOrder/update`, this.order);
|
|
if (response.data.success) {
|
|
this.$emit('close');
|
|
window.notify('success', response.data.message ?? 'Bestellung erfolgreich aktualisiert');
|
|
} else window.notify('error',
|
|
response.data.errors ? Object.values(response.data.errors).join('<br>') : response.data.message || 'Ein Fehler ist aufgetreten');
|
|
}
|
|
},
|
|
async deleteOrder() {
|
|
if (!window.confirm('Bestellung wirklich löschen?')) return;
|
|
const response = await axios.post(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseOrder/delete`, {id: this.id});
|
|
if (response.data.success) {
|
|
this.$emit('close');
|
|
window.notify('success', response.data.message || 'Bestellung erfolgreich gelöscht');
|
|
} else window.notify('error', response.data.message || 'Ein Fehler ist aufgetreten');
|
|
},
|
|
async fetchDistributors(article) {
|
|
const url = `${window.TT_CONFIG["BASE_PATH"]}/WarehouseOrder/getArticleDistributorData`;
|
|
console.log(article);
|
|
const params = typeof article === 'string' ? {allDistributor: true} : {articleId: article};
|
|
if (JSON.stringify(params) === JSON.stringify(this.lastDistributorFetch)) return;
|
|
|
|
this.lastDistributorFetch = params;
|
|
const response = await axios.get(url, {params});
|
|
this.positionsConfig.fields.distributorId.options = response.data.map(distributor => ({
|
|
value: distributor.id,
|
|
text: distributor.name,
|
|
externalArticleNumber: distributor.externalArticleNumber || null,
|
|
purchasePrice: distributor.purchasePrice || null,
|
|
}));
|
|
},
|
|
async fetchDistributorData(distributorId) {
|
|
if (distributorId && typeof this.$refs.positionsManager.formData.article === 'number') {
|
|
const distributor = this.positionsConfig.fields.distributorId.options.find(distributor => parseInt(distributor.value) ===
|
|
parseInt(distributorId));
|
|
this.$refs.positionsManager.updateField('distributorArticleNumber', distributor.externalArticleNumber);
|
|
this.$refs.positionsManager.updateField('buyPrice', distributor.purchasePrice);
|
|
}
|
|
},
|
|
async updateArticlePriceForDistributor(articleId, distributorId, buyPrice) {
|
|
if (!articleId || !distributorId || !buyPrice) return;
|
|
const res = await axios.post(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseArticleDistributor/get`, {
|
|
filters: { articleId, distributorId }
|
|
})
|
|
const current = res.data.rows[0];
|
|
if (current && current.purchasePrice === buyPrice) {
|
|
window.notify('info', 'Preis ist bereits aktuell');
|
|
return;
|
|
}
|
|
|
|
const response = await axios.post(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseArticleDistributor/update`, {
|
|
...current,
|
|
purchasePrice: buyPrice,
|
|
});
|
|
|
|
if (response.data.success) {
|
|
window.notify('success', 'Preis erfolgreich aktualisiert');
|
|
} else {
|
|
window.notify('error', response.data.message || 'Ein Fehler ist aufgetreten');
|
|
}
|
|
}
|
|
},
|
|
watch: {
|
|
'order.positions': {
|
|
handler(newPositions) {
|
|
if (this.id !== 'create' && new Set(newPositions.map(p => p.distributorId)).size > 1) {
|
|
window.notify('error', 'Eine bestehende Bestellung kann nur Positionen vom gleichen Lieferanten enthalten.');
|
|
this.order.positions = newPositions.filter(p => p.distributorId === this.order.distributorId);
|
|
}
|
|
},
|
|
deep: true
|
|
}
|
|
}
|
|
,
|
|
});
|
|
|
|
Vue.component('tt-file', {
|
|
props: ['id'],
|
|
data: () => ({file: null}),
|
|
async mounted() {
|
|
const response = await axios.get(`${window.TT_CONFIG.BASE_PATH}/File/getById`, {params: {id: this.id}});
|
|
this.file = response.data;
|
|
},
|
|
template: `
|
|
<div>
|
|
<a :href="'/File/download?id=' + id" target="_blank" v-if="file">{{ file.filename }}</a>
|
|
<template v-else>
|
|
<div class="spinner-border spinner-border-sm text-primary" role="status"><span class="sr-only">Loading...</span></div>
|
|
</template>
|
|
</div>
|
|
`
|
|
})
|
|
|
|
|
|
Vue.component('warehouse-order-detail', {
|
|
template: `
|
|
<tt-card>
|
|
<template v-slot:header><h4>Bestellungsdetails für #{{ loading ? 'Laden...' : order.orderNumber }}</h4></template>
|
|
<template v-if="loading">
|
|
<div class="d-flex justify-content-center align-items-center">
|
|
<div class="spinner-border spinner-border-sm text-primary" role="status"><span class="sr-only">Loading...</span></div>
|
|
</div>
|
|
</template>
|
|
<template v-else>
|
|
<h3>Positionen</h3>
|
|
<div class="grid-container header">
|
|
<div v-for="header in ['Artikel', 'Menge', 'Preis', 'Lieferant', 'Verwendung', 'Summe']"><strong>{{ header }}</strong></div>
|
|
</div>
|
|
<div class="grid-container" v-for="p in order.positions">
|
|
<div>{{ p.articleName }}</div>
|
|
<div>{{ p.amount }}</div>
|
|
<div>{{ p.buyPrice }}</div>
|
|
<div>{{ p.distributorName }}</div>
|
|
<div>{{ p.verwendung }}</div>
|
|
<div>{{ p.amount * p.buyPrice }}</div>
|
|
</div>
|
|
<template v-if="orderLog?.length > 0">
|
|
<hr>
|
|
<h3>Log</h3>
|
|
<div v-for="log in orderLog">
|
|
{{ formatDate(log.create) }} ({{ getUserName(log.createBy) }}) | {{ log.message }}
|
|
<template v-if="log.fileIds">
|
|
<div v-for="file in JSON.parse(log.fileIds)">
|
|
<tt-file :id="file"/>
|
|
</div>
|
|
</template>
|
|
|
|
</div>
|
|
</template>
|
|
<hr>
|
|
<h3>Lieferadresse</h3>
|
|
<div v-for="field in ['delAddrName', 'delAddrEMail', 'delAddrLine']">{{ order[field] }}</div>
|
|
<div>{{ order.delAddrPLZ }} {{ order.delAddrCity }}</div>
|
|
</template>
|
|
</tt-card>
|
|
`,
|
|
props: ['id'],
|
|
data: () => ({order: {}, orderLog: null, loading: true}),
|
|
async mounted() {
|
|
const [orderResponse, logResponse] = await Promise.all([
|
|
axios.get(`${window.TT_CONFIG.BASE_PATH}/WarehouseOrder/getById`, {params: {id: this.id}}),
|
|
axios.get(`${window.TT_CONFIG.BASE_PATH}/WarehouseOrder/getLogById`, {params: {id: this.id}})
|
|
]);
|
|
this.order = orderResponse.data;
|
|
this.orderLog = logResponse.data;
|
|
this.loading = false;
|
|
},
|
|
methods: {
|
|
formatDate: date => window.moment(date * 1000).format('DD.MM.YYYY HH:mm'),
|
|
getUserName: id => window.TT_CONFIG.CRUD_CONFIG.columns.find(col => col.key === 'createBy')?.modal.items.find(u => u.value === id)?.text
|
|
}
|
|
});
|
|
|
|
Vue.component('warehouse-order', {
|
|
template: `
|
|
<tt-card>
|
|
<warehouse-order-modal v-if="orderModalId" :id="orderModalId" @close="closeModal"/>
|
|
<change-status-modal v-if="changeStatusModalId" :orderId="changeStatusModalId" @close="closeModal"/>
|
|
<tt-button text="Bestellung erstellen" @click="orderModalId = 'create'" additional-class="btn-primary"/>
|
|
<tt-table-crud emit-edit
|
|
@openpdf="openPDF"
|
|
@changeStatus="changeStatusModalId = $event.id"
|
|
@edit="orderModalId = $event.id; $refs.table.$refs.table.refreshTable()" ref="table">
|
|
<template v-slot:expandedRow="{ row }">
|
|
<warehouse-order-detail :id="row.id"/>
|
|
</template>
|
|
<template v-slot:sum="{ row }">{{ calculateSum(JSON.parse(row["positions"])).toFixed(2) }} €</template>
|
|
</tt-table-crud>
|
|
</tt-card>
|
|
`,
|
|
data: () => ({
|
|
orderModalId: null,
|
|
changeStatusModalId: null
|
|
}),
|
|
mounted() {
|
|
if (JSON.parse(localStorage.getItem('WarehouseOrder_create'))) this.orderModalId = 'create';
|
|
},
|
|
methods: {
|
|
async closeModal() {
|
|
this.orderModalId = null;
|
|
this.changeStatusModalId = null;
|
|
await new Promise(resolve => setTimeout(resolve, 250));
|
|
this.$refs.table.$refs.table.refreshTable();
|
|
},
|
|
calculateSum: positions => positions.reduce((sum, {amount, buyPrice}) => sum + amount * buyPrice, 0),
|
|
openPDF: order => window.open(`${window.TT_CONFIG["BASE_PATH"]}/WarehouseOrder/createPDF?id=${order.id}`)
|
|
}
|
|
}); |