Merge branch 'WarehouseShippingNote/remove-console-log' into 'master'
Removed Console Logs See merge request fronk/thetool!1130
This commit is contained in:
@@ -155,7 +155,6 @@ Vue.component('warehouse-shipping-note-modal', {
|
||||
this.updateKilometer().then();
|
||||
},
|
||||
selectedBillingAddress: async function() {
|
||||
console.log("hallo");
|
||||
const response = await axios.get(window.TT_CONFIG["BASE_PATH"] + '/Address/api?do=getAddress&id=' + this.selectedBillingAddress);
|
||||
if (response.data.status !== 'OK' || !response.data.result.address) {
|
||||
this.window.notify('error', 'Rechnungsadresse konnte nicht gefunden werden');
|
||||
@@ -195,7 +194,6 @@ Vue.component('warehouse-shipping-note-modal', {
|
||||
this.hoursLoading = false;
|
||||
},
|
||||
async updateKilometer(carId) {
|
||||
console.log(carId);
|
||||
if (!carId || carId === '0') return this.$refs.hoursManager.updateField('kilometerCount', null);
|
||||
this.hoursLoading = true;
|
||||
const delAddr = this.shippingNote.deliveryAddressLine + ' ' + this.shippingNote.deliveryAddressPLZ + ' ' + this.shippingNote.deliveryAddressCity;
|
||||
|
||||
@@ -159,8 +159,6 @@ Vue.component('tt-positions-manager',
|
||||
this.$set(this.formData, key, value);
|
||||
},
|
||||
defaultValidateForm(formData) {
|
||||
console.log(formData);
|
||||
console.log(this.config["validateFormOptions"]);
|
||||
for (const field of this.config["validateFormOptions"]) {
|
||||
if (!(formData[field.key] || formData[field.key + '_text'])) {
|
||||
window.notify('error', field.message);
|
||||
|
||||
Reference in New Issue
Block a user