2018-03-22 17:02:48 +00:00
|
|
|
import ngModule from '../module';
|
2020-03-18 07:35:59 +00:00
|
|
|
import Section from 'salix/components/section';
|
2018-06-06 14:54:40 +00:00
|
|
|
import './style.scss';
|
2018-03-22 17:02:48 +00:00
|
|
|
|
2020-03-18 07:35:59 +00:00
|
|
|
class Controller extends Section {
|
|
|
|
constructor($element, $) {
|
|
|
|
super($element, $);
|
2020-06-23 11:40:49 +00:00
|
|
|
// this.edit = {};
|
|
|
|
/* this.moreOptions = [
|
2019-10-14 09:44:54 +00:00
|
|
|
{
|
2020-03-11 11:02:12 +00:00
|
|
|
name: 'Send shortage SMS',
|
2019-12-17 11:23:31 +00:00
|
|
|
callback: this.showSMSDialog
|
|
|
|
}, {
|
2019-10-14 09:44:54 +00:00
|
|
|
name: 'Mark as reserved',
|
|
|
|
callback: this.markAsReserved,
|
|
|
|
show: () => this.isEditable
|
2019-12-17 11:23:31 +00:00
|
|
|
}, {
|
2019-10-14 09:44:54 +00:00
|
|
|
name: 'Unmark as reserved',
|
|
|
|
callback: this.unmarkAsReserved,
|
|
|
|
show: () => this.isEditable
|
2019-12-17 11:23:31 +00:00
|
|
|
}, {
|
2019-10-14 09:44:54 +00:00
|
|
|
name: 'Update discount',
|
|
|
|
callback: this.showEditDialog,
|
|
|
|
show: () => this.isEditable
|
2019-12-17 11:23:31 +00:00
|
|
|
}, {
|
2019-10-14 09:44:54 +00:00
|
|
|
name: 'Add claim',
|
2019-12-17 11:23:31 +00:00
|
|
|
callback: this.createClaim
|
|
|
|
}, {
|
2019-11-14 13:19:39 +00:00
|
|
|
name: 'Recalculate price',
|
|
|
|
callback: this.calculateSalePrice,
|
|
|
|
show: () => this.hasOneSaleSelected()
|
|
|
|
},
|
2020-06-23 11:40:49 +00:00
|
|
|
]; */
|
2019-07-02 10:12:15 +00:00
|
|
|
this._sales = [];
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2019-07-02 10:12:15 +00:00
|
|
|
|
2019-07-22 11:14:00 +00:00
|
|
|
get ticket() {
|
|
|
|
return this._ticket;
|
|
|
|
}
|
|
|
|
|
|
|
|
set ticket(value) {
|
|
|
|
this._ticket = value;
|
2019-08-13 12:03:02 +00:00
|
|
|
this.isTicketEditable();
|
2020-02-27 11:31:38 +00:00
|
|
|
this.isTicketLocked();
|
2019-07-22 11:14:00 +00:00
|
|
|
}
|
|
|
|
|
2019-06-17 10:13:05 +00:00
|
|
|
get sales() {
|
|
|
|
return this._sales;
|
|
|
|
}
|
2018-06-06 14:54:40 +00:00
|
|
|
|
2018-10-22 06:23:10 +00:00
|
|
|
set sales(value) {
|
|
|
|
this._sales = value;
|
2018-10-23 12:33:07 +00:00
|
|
|
this.refreshTotal();
|
2018-10-22 06:23:10 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
/* get editedPrice() {
|
2019-06-17 10:13:05 +00:00
|
|
|
return this._editedPrice;
|
2018-07-02 11:18:22 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2019-06-17 10:13:05 +00:00
|
|
|
set editedPrice(value) {
|
|
|
|
this._editedPrice = value;
|
|
|
|
this.updateNewPrice();
|
2020-06-23 11:40:49 +00:00
|
|
|
} */
|
|
|
|
|
|
|
|
get ticketState() {
|
|
|
|
if (!this.ticket) return null;
|
|
|
|
|
|
|
|
return this.ticket.ticketState.state.code;
|
2019-06-17 10:13:05 +00:00
|
|
|
}
|
|
|
|
|
2018-10-23 12:33:07 +00:00
|
|
|
refreshTotal() {
|
2020-06-23 14:39:20 +00:00
|
|
|
this.getSubTotal();
|
|
|
|
this.getVat();
|
2018-10-23 12:33:07 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 14:39:20 +00:00
|
|
|
getSubTotal() {
|
2020-03-18 07:35:59 +00:00
|
|
|
if (!this.$params.id || !this.sales) return;
|
|
|
|
this.$http.get(`Tickets/${this.$params.id}/subtotal`).then(res => {
|
2019-02-21 07:43:04 +00:00
|
|
|
this.subtotal = res.data || 0.0;
|
|
|
|
});
|
2018-06-19 10:10:38 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-10-22 06:23:10 +00:00
|
|
|
getSaleTotal(sale) {
|
2020-06-23 14:39:20 +00:00
|
|
|
if (sale.quantity == null || sale.price == null)
|
|
|
|
return null;
|
2019-07-02 10:12:15 +00:00
|
|
|
|
2020-06-23 14:39:20 +00:00
|
|
|
const price = sale.quantity * sale.price;
|
|
|
|
const discount = (sale.discount * price) / 100;
|
|
|
|
|
|
|
|
return price - discount;
|
2018-10-22 06:23:10 +00:00
|
|
|
}
|
2018-06-19 10:10:38 +00:00
|
|
|
|
2020-06-23 14:39:20 +00:00
|
|
|
getVat() {
|
2018-10-22 06:23:10 +00:00
|
|
|
this.VAT = 0.0;
|
2020-03-18 07:35:59 +00:00
|
|
|
if (!this.$params.id || !this.sales) return;
|
|
|
|
this.$http.get(`Tickets/${this.$params.id}/getVAT`).then(res => {
|
2018-10-22 06:23:10 +00:00
|
|
|
this.VAT = res.data || 0.0;
|
2018-06-19 10:10:38 +00:00
|
|
|
});
|
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-10-22 06:23:10 +00:00
|
|
|
get total() {
|
2019-02-21 07:43:04 +00:00
|
|
|
return this.subtotal + this.VAT;
|
2018-10-22 06:23:10 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
/* onMoreOpen() {
|
2019-05-06 05:40:59 +00:00
|
|
|
let options = this.moreOptions.filter(option => {
|
|
|
|
const hasShowProperty = Object.hasOwnProperty.call(option, 'show');
|
|
|
|
const shouldShow = !hasShowProperty || option.show === true ||
|
|
|
|
typeof option.show === 'function' && option.show();
|
|
|
|
|
|
|
|
return (shouldShow && (option.always || this.isChecked));
|
|
|
|
});
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.moreButton.data = options;
|
2018-10-22 06:23:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onMoreChange(callback) {
|
|
|
|
callback.call(this);
|
2020-06-23 11:40:49 +00:00
|
|
|
} */
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
/* get isChecked() {
|
2018-11-06 12:59:16 +00:00
|
|
|
if (this.sales) {
|
2018-10-22 06:23:10 +00:00
|
|
|
for (let instance of this.sales)
|
|
|
|
if (instance.checked) return true;
|
2018-11-06 12:59:16 +00:00
|
|
|
}
|
2018-05-08 07:54:14 +00:00
|
|
|
|
|
|
|
return false;
|
2020-06-23 11:40:49 +00:00
|
|
|
} */
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2019-07-02 10:12:15 +00:00
|
|
|
/**
|
|
|
|
* Returns checked instances
|
|
|
|
*
|
|
|
|
* @return {Array} Checked instances
|
|
|
|
*/
|
2019-08-09 06:04:44 +00:00
|
|
|
checkedLines() {
|
2019-07-02 10:12:15 +00:00
|
|
|
if (!this.sales) return;
|
|
|
|
|
|
|
|
return this.sales.filter(sale => {
|
|
|
|
return sale.checked;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
/**
|
|
|
|
* Returns the total of checked instances
|
|
|
|
*
|
|
|
|
* @return {Number} Total checked instances
|
|
|
|
*/
|
|
|
|
checkedLinesCount() {
|
|
|
|
const checkedLines = this.checkedLines();
|
|
|
|
if (checkedLines)
|
|
|
|
return checkedLines.length;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
hasCheckedLines() {
|
|
|
|
const checkedLines = this.checkedLines();
|
|
|
|
|
|
|
|
if (checkedLines)
|
|
|
|
return checkedLines.length > 0;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
hasOneSaleSelected() {
|
|
|
|
if (this.checkedLinesCount() === 1)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-09-05 07:00:55 +00:00
|
|
|
/**
|
|
|
|
* Returns new instances
|
|
|
|
*
|
|
|
|
* @return {Array} New instances
|
|
|
|
*/
|
|
|
|
newInstances() {
|
|
|
|
if (!this.sales) return;
|
|
|
|
|
|
|
|
return this.sales.filter(sale => {
|
|
|
|
return !sale.id;
|
|
|
|
});
|
|
|
|
}
|
2019-08-09 06:04:44 +00:00
|
|
|
|
2019-07-02 10:12:15 +00:00
|
|
|
/**
|
|
|
|
* Returns an array of indexes
|
|
|
|
* from checked instances
|
|
|
|
*
|
|
|
|
* @return {Array} Indexes of checked instances
|
|
|
|
*/
|
2019-08-09 06:04:44 +00:00
|
|
|
checkedLinesIndex() {
|
2019-07-02 10:12:15 +00:00
|
|
|
if (!this.sales) return;
|
|
|
|
|
|
|
|
let indexes = [];
|
|
|
|
this.sales.forEach((sale, index) => {
|
|
|
|
if (sale.checked) indexes.push(index);
|
|
|
|
});
|
|
|
|
|
|
|
|
return indexes;
|
|
|
|
}
|
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
/* firstCheckedLine() {
|
2019-08-09 06:04:44 +00:00
|
|
|
const checkedLines = this.checkedLines();
|
|
|
|
if (checkedLines)
|
|
|
|
return checkedLines[0];
|
2020-06-23 11:40:49 +00:00
|
|
|
} */
|
2019-08-09 06:04:44 +00:00
|
|
|
|
2019-07-02 10:12:15 +00:00
|
|
|
removeCheckedLines() {
|
2019-08-09 06:04:44 +00:00
|
|
|
const sales = this.checkedLines();
|
2019-07-02 10:12:15 +00:00
|
|
|
|
|
|
|
sales.forEach(sale => {
|
|
|
|
const index = this.sales.indexOf(sale);
|
|
|
|
this.sales.splice(index, 1);
|
|
|
|
});
|
|
|
|
|
2019-09-05 07:00:55 +00:00
|
|
|
if (this.newInstances().length === 0)
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.watcher.updateOriginalData();
|
2019-09-05 07:00:55 +00:00
|
|
|
|
2019-07-02 10:12:15 +00:00
|
|
|
this.refreshTotal();
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
/* onStateOkClick() {
|
2018-11-06 12:59:16 +00:00
|
|
|
let filter = {where: {code: 'OK'}, fields: ['id']};
|
2018-05-08 07:25:15 +00:00
|
|
|
let json = encodeURIComponent(JSON.stringify(filter));
|
2019-10-24 22:53:53 +00:00
|
|
|
return this.$http.get(`States?filter=${json}`).then(res => {
|
2020-06-23 11:40:49 +00:00
|
|
|
this.changeState(res.data[0].id);
|
2018-05-08 07:25:15 +00:00
|
|
|
});
|
|
|
|
}
|
2020-06-23 11:40:49 +00:00
|
|
|
*/
|
|
|
|
changeState(value) {
|
|
|
|
let params = {ticketFk: this.$params.id, code: value};
|
2020-02-26 12:22:52 +00:00
|
|
|
this.$http.post('TicketTrackings/changeState', params).then(() => {
|
2020-06-23 11:40:49 +00:00
|
|
|
this.vnApp.showSuccess(this.$t('Data saved!'));
|
2018-05-08 07:25:15 +00:00
|
|
|
this.card.reload();
|
2019-09-09 10:35:59 +00:00
|
|
|
}).finally(() => {
|
|
|
|
if (this.newInstances().length === 0)
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.watcher.updateOriginalData();
|
2018-06-06 14:54:40 +00:00
|
|
|
});
|
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-07-02 12:14:16 +00:00
|
|
|
onRemoveLinesClick(response) {
|
2019-10-30 15:57:14 +00:00
|
|
|
if (response === 'accept') {
|
2019-08-09 06:04:44 +00:00
|
|
|
let sales = this.checkedLines();
|
2019-07-02 10:12:15 +00:00
|
|
|
|
|
|
|
// Remove unsaved instances
|
|
|
|
sales.forEach((sale, index) => {
|
|
|
|
if (!sale.id) sales.splice(index);
|
|
|
|
});
|
|
|
|
|
2018-07-02 12:14:16 +00:00
|
|
|
let params = {sales: sales, actualTicketFk: this.ticket.id};
|
2019-10-24 22:53:53 +00:00
|
|
|
let query = `Sales/removes`;
|
2018-07-02 12:14:16 +00:00
|
|
|
this.$http.post(query, params).then(() => {
|
2019-07-02 10:12:15 +00:00
|
|
|
this.removeCheckedLines();
|
2020-06-23 11:40:49 +00:00
|
|
|
this.vnApp.showSuccess(this.$t('Data saved!'));
|
2018-07-02 12:14:16 +00:00
|
|
|
});
|
|
|
|
}
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2020-05-25 12:45:26 +00:00
|
|
|
showTransferPopover(event) {
|
|
|
|
this.setTransferParams();
|
|
|
|
this.$.transfer.parent = event.target;
|
|
|
|
this.$.transfer.show();
|
|
|
|
}
|
|
|
|
|
2019-08-09 06:04:44 +00:00
|
|
|
setTransferParams() {
|
|
|
|
const checkedSales = JSON.stringify(this.checkedLines());
|
|
|
|
const sales = JSON.parse(checkedSales);
|
|
|
|
this.transfer = {
|
|
|
|
lastActiveTickets: [],
|
|
|
|
sales: sales
|
|
|
|
};
|
2019-05-24 13:30:50 +00:00
|
|
|
|
2019-08-09 06:04:44 +00:00
|
|
|
const params = {ticketId: this.ticket.id};
|
2019-10-24 22:53:53 +00:00
|
|
|
const query = `clients/${this.ticket.clientFk}/lastActiveTickets`;
|
2019-08-09 06:04:44 +00:00
|
|
|
this.$http.get(query, {params}).then(res => {
|
|
|
|
this.transfer.lastActiveTickets = res.data;
|
|
|
|
});
|
2018-05-08 07:54:14 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2019-08-09 06:04:44 +00:00
|
|
|
transferSales(ticketId) {
|
|
|
|
const params = {
|
|
|
|
ticketId: ticketId,
|
|
|
|
sales: this.transfer.sales
|
2019-05-24 13:30:50 +00:00
|
|
|
};
|
2018-06-28 13:17:50 +00:00
|
|
|
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.watcher.updateOriginalData();
|
2019-09-24 09:55:36 +00:00
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
const query = `tickets/${this.ticket.id}/transferSales`;
|
2020-06-23 11:40:49 +00:00
|
|
|
this.$http.post(query, params)
|
|
|
|
.then(res => this.$state.go('ticket.card.sale', {id: res.data.id}));
|
2018-06-28 13:17:50 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-09-11 10:49:31 +00:00
|
|
|
createClaim() {
|
2019-08-09 06:04:44 +00:00
|
|
|
const sales = this.checkedLines();
|
2020-06-23 11:40:49 +00:00
|
|
|
const params = {
|
|
|
|
claim: {
|
|
|
|
ticketFk: this.ticket.id,
|
|
|
|
clientFk: this.ticket.clientFk,
|
|
|
|
ticketCreated: this.ticket.shipped
|
|
|
|
},
|
|
|
|
sales: sales
|
|
|
|
};
|
2019-09-24 09:55:36 +00:00
|
|
|
|
|
|
|
if (this.newInstances().length === 0)
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.watcher.updateOriginalData();
|
2019-09-24 09:55:36 +00:00
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
this.$http.post(`Claims/createFromSales`, params)
|
|
|
|
.then(res => this.$state.go('claim.card.basicData', {id: res.data.id}));
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
getMana() {
|
|
|
|
this.$http.get(`Tickets/${this.$params.id}/getSalesPersonMana`)
|
|
|
|
.then(res => this.edit.mana = res.data);
|
2018-06-28 13:17:50 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-06-28 13:17:50 +00:00
|
|
|
showEditPricePopover(event, sale) {
|
2019-07-02 10:12:15 +00:00
|
|
|
if (!this.isEditable) return;
|
2020-06-23 11:40:49 +00:00
|
|
|
|
2018-06-28 13:17:50 +00:00
|
|
|
this.edit = {
|
2020-06-23 11:40:49 +00:00
|
|
|
price: sale.price,
|
|
|
|
sale: sale
|
2018-06-28 13:17:50 +00:00
|
|
|
};
|
2020-06-23 11:40:49 +00:00
|
|
|
this.$.editPricePopover.show(event);
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-06-28 13:17:50 +00:00
|
|
|
updatePrice() {
|
2020-06-23 11:40:49 +00:00
|
|
|
const sale = this.edit.sale;
|
2020-06-23 14:39:20 +00:00
|
|
|
const newPrice = this.edit.price;
|
|
|
|
if (newPrice != null && newPrice != sale.price) {
|
2020-06-23 11:40:49 +00:00
|
|
|
const query = `Sales/${sale.id}/updatePrice`;
|
2020-06-23 14:39:20 +00:00
|
|
|
this.$http.post(query, {newPrice}).then(res => {
|
2020-06-23 11:40:49 +00:00
|
|
|
sale.price = res.data.price;
|
2019-07-02 10:12:15 +00:00
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
this.vnApp.showSuccess(this.$t('Data saved!'));
|
2019-09-09 10:35:59 +00:00
|
|
|
}).finally(() => {
|
|
|
|
if (this.newInstances().length === 0)
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.watcher.updateOriginalData();
|
2018-06-28 13:17:50 +00:00
|
|
|
});
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2018-11-06 12:59:16 +00:00
|
|
|
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.editPricePopover.hide();
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
/* updateNewPrice() {
|
2020-05-25 11:49:24 +00:00
|
|
|
this.newPrice = this.sale.quantity * this.newPrice - ((this.sale.discount * (this.sale.quantity * this.newPrice)) / 100);
|
2019-06-17 10:13:05 +00:00
|
|
|
}
|
2020-06-23 11:40:49 +00:00
|
|
|
*/
|
2019-07-02 10:12:15 +00:00
|
|
|
showEditDiscountPopover(event, sale) {
|
2020-02-27 11:31:38 +00:00
|
|
|
if (this.isLocked) return;
|
2019-07-02 10:12:15 +00:00
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
this.edit = {
|
|
|
|
discount: sale.discount,
|
|
|
|
sale: sale
|
|
|
|
};
|
|
|
|
|
|
|
|
this.$.editDiscount.show(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
showEditDiscountDialog(event) {
|
|
|
|
if (this.isLocked) return;
|
|
|
|
|
|
|
|
this.edit = {
|
|
|
|
discount: null,
|
|
|
|
sales: this.checkedLines()
|
|
|
|
};
|
|
|
|
|
|
|
|
this.$.editDiscountDialog.show(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
changeDiscount() {
|
|
|
|
const sale = this.edit.sale;
|
2020-06-23 14:39:20 +00:00
|
|
|
const newDiscount = this.edit.discount;
|
|
|
|
if (newDiscount != null && newDiscount != sale.discount)
|
2020-06-23 11:40:49 +00:00
|
|
|
this.updateDiscount([sale]);
|
|
|
|
|
|
|
|
this.$.editDiscount.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
changeMultipleDiscount() {
|
|
|
|
const sales = this.edit.sales;
|
2020-06-23 14:39:20 +00:00
|
|
|
const newDiscount = this.edit.discount;
|
2020-06-23 11:40:49 +00:00
|
|
|
const hasChanges = sales.some(sale => {
|
2020-06-23 14:39:20 +00:00
|
|
|
return sale.discount != newDiscount;
|
2020-06-23 11:40:49 +00:00
|
|
|
});
|
|
|
|
|
2020-06-23 14:39:20 +00:00
|
|
|
if (newDiscount != null && hasChanges)
|
2020-06-23 11:40:49 +00:00
|
|
|
this.updateDiscount(sales);
|
|
|
|
|
|
|
|
this.$.editDiscountDialog.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
updateDiscount(sales) {
|
|
|
|
const saleIds = sales.map(sale => {
|
|
|
|
return sale.id;
|
|
|
|
});
|
|
|
|
|
|
|
|
const params = {salesIds: saleIds, newDiscount: this.edit.discount};
|
|
|
|
const query = `Tickets/${this.$params.id}/updateDiscount`;
|
|
|
|
this.$http.post(query, params).then(() => {
|
|
|
|
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
|
|
|
|
|
|
|
|
for (let sale of sales)
|
|
|
|
sale.discount = this.edit.discount;
|
|
|
|
}).catch(e => {
|
|
|
|
this.vnApp.showError(e.message);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
getNewPrice() {
|
|
|
|
if (this.edit) {
|
|
|
|
const sale = this.edit.sale;
|
|
|
|
let newDiscount = sale.discount;
|
|
|
|
let newPrice = this.edit.price || sale.price;
|
|
|
|
|
|
|
|
if (this.edit.discount != null)
|
|
|
|
newDiscount = this.edit.discount;
|
|
|
|
|
|
|
|
if (this.edit.price != null)
|
|
|
|
newPrice = this.edit.price;
|
|
|
|
|
|
|
|
const price = sale.quantity * newPrice;
|
|
|
|
const discount = (newDiscount * price) / 100;
|
|
|
|
|
|
|
|
return price - discount;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2018-06-28 13:17:50 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
/* showEditDialog() {
|
2019-08-09 06:04:44 +00:00
|
|
|
this.edit = this.checkedLines();
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.editDialog.show();
|
2018-06-28 13:17:50 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-06-28 13:17:50 +00:00
|
|
|
hideEditDialog() {
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.model.refresh();
|
|
|
|
this.$.editDialog.hide();
|
2018-06-28 13:17:50 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-06-28 13:17:50 +00:00
|
|
|
hideEditPopover() {
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.model.refresh();
|
|
|
|
this.$.editPopover.hide();
|
2020-06-23 11:40:49 +00:00
|
|
|
} */
|
|
|
|
|
|
|
|
hasReserves() {
|
|
|
|
return this.sales.some(sale => {
|
|
|
|
return sale.reserved == true;
|
|
|
|
});
|
2018-06-28 13:17:50 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2019-07-02 10:12:15 +00:00
|
|
|
/*
|
2018-10-23 12:33:07 +00:00
|
|
|
* Unmark sale as reserved
|
|
|
|
*/
|
2018-06-19 07:09:49 +00:00
|
|
|
unmarkAsReserved() {
|
|
|
|
this.setReserved(false);
|
|
|
|
}
|
|
|
|
|
2019-07-02 10:12:15 +00:00
|
|
|
/*
|
2018-10-23 12:33:07 +00:00
|
|
|
* Mark sale as reserved
|
|
|
|
*/
|
2018-07-03 13:00:16 +00:00
|
|
|
markAsReserved() {
|
|
|
|
this.setReserved(true);
|
|
|
|
}
|
2018-06-19 07:09:49 +00:00
|
|
|
|
2018-07-03 13:00:16 +00:00
|
|
|
setReserved(reserved) {
|
2019-08-09 06:04:44 +00:00
|
|
|
let selectedSales = this.checkedLines();
|
2019-06-26 11:56:40 +00:00
|
|
|
let params = {sales: selectedSales, ticketFk: this.ticket.id, reserved: reserved};
|
2018-06-19 07:09:49 +00:00
|
|
|
|
2019-06-26 11:56:40 +00:00
|
|
|
let reservedSales = new Map();
|
2019-10-24 22:53:53 +00:00
|
|
|
this.$http.post(`Sales/reserve`, params).then(res => {
|
2019-06-26 11:56:40 +00:00
|
|
|
let isReserved = res.config.data.reserved;
|
|
|
|
|
|
|
|
res.config.data.sales.forEach(sale => {
|
|
|
|
reservedSales.set(sale.id, {reserved: isReserved});
|
|
|
|
});
|
|
|
|
|
|
|
|
this.sales.forEach(sale => {
|
|
|
|
const reservedSale = reservedSales.get(sale.id);
|
|
|
|
if (reservedSale)
|
|
|
|
sale.reserved = reservedSale.reserved;
|
|
|
|
});
|
2019-09-09 10:35:59 +00:00
|
|
|
}).finally(() => {
|
|
|
|
if (this.newInstances().length === 0)
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.watcher.updateOriginalData();
|
2018-06-19 07:09:49 +00:00
|
|
|
});
|
|
|
|
}
|
2018-11-14 13:31:56 +00:00
|
|
|
|
|
|
|
newOrderFromTicket() {
|
2019-10-24 22:53:53 +00:00
|
|
|
this.$http.post(`Orders/newFromTicket`, {ticketFk: this.ticket.id}).then(res => {
|
2019-09-24 09:35:46 +00:00
|
|
|
const path = this.$state.href('order.card.catalog', {id: res.data});
|
2019-09-19 13:51:39 +00:00
|
|
|
window.open(path, '_blank');
|
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
this.vnApp.showSuccess(this.$t('Order created'));
|
2018-11-14 13:31:56 +00:00
|
|
|
});
|
|
|
|
}
|
2019-03-29 06:29:09 +00:00
|
|
|
|
|
|
|
showSMSDialog() {
|
|
|
|
const address = this.ticket.address;
|
2020-02-21 07:37:37 +00:00
|
|
|
const client = this.ticket.client;
|
|
|
|
const phone = address.mobile || address.phone ||
|
|
|
|
client.mobile || client.phone;
|
2019-08-09 06:04:44 +00:00
|
|
|
const sales = this.checkedLines();
|
2019-07-02 10:12:15 +00:00
|
|
|
const items = sales.map(sale => {
|
|
|
|
return `${sale.quantity} ${sale.concept}`;
|
2019-03-29 06:29:09 +00:00
|
|
|
});
|
|
|
|
const notAvailables = items.join(', ');
|
|
|
|
const params = {
|
|
|
|
ticketFk: this.ticket.id,
|
|
|
|
created: this.ticket.created,
|
|
|
|
notAvailables
|
|
|
|
};
|
|
|
|
this.newSMS = {
|
2019-04-16 05:59:12 +00:00
|
|
|
destinationFk: this.ticket.clientFk,
|
2020-02-21 07:37:37 +00:00
|
|
|
destination: phone,
|
2020-06-23 11:40:49 +00:00
|
|
|
message: this.$t('Product not available', params)
|
2019-03-29 06:29:09 +00:00
|
|
|
};
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.sms.open();
|
2019-03-29 06:29:09 +00:00
|
|
|
}
|
2019-05-06 05:40:59 +00:00
|
|
|
|
2019-07-02 10:12:15 +00:00
|
|
|
/**
|
|
|
|
* Inserts a new instance
|
|
|
|
*/
|
|
|
|
add() {
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.model.insert({});
|
2019-07-02 10:12:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Creates a new sale if it's a new instance
|
|
|
|
* Updates the sale quantity for existing instance
|
|
|
|
*/
|
2020-06-23 11:40:49 +00:00
|
|
|
changeQuantity(sale) {
|
2020-03-13 07:20:30 +00:00
|
|
|
if (!sale.quantity) return;
|
|
|
|
|
2019-07-02 10:12:15 +00:00
|
|
|
if (!sale.id)
|
2020-03-13 07:20:30 +00:00
|
|
|
return this.addSale(sale);
|
|
|
|
|
|
|
|
this.updateQuantity(sale);
|
2019-07-02 10:12:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2020-06-23 11:40:49 +00:00
|
|
|
* Changes a sale quantity
|
2019-07-02 10:12:15 +00:00
|
|
|
*/
|
|
|
|
updateQuantity(sale) {
|
2020-06-23 11:40:49 +00:00
|
|
|
const data = {quantity: sale.quantity};
|
2019-10-24 22:53:53 +00:00
|
|
|
const query = `Sales/${sale.id}/updateQuantity`;
|
2019-07-02 10:12:15 +00:00
|
|
|
this.$http.post(query, data).then(() => {
|
2020-06-23 11:40:49 +00:00
|
|
|
this.vnApp.showSuccess(this.$t('Data saved!'));
|
2019-07-02 10:12:15 +00:00
|
|
|
}).catch(e => {
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.model.refresh();
|
2019-07-02 10:12:15 +00:00
|
|
|
throw e;
|
2019-09-09 10:35:59 +00:00
|
|
|
}).finally(() => {
|
|
|
|
if (this.newInstances().length === 0)
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.watcher.updateOriginalData();
|
2019-07-02 10:12:15 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2020-06-23 11:40:49 +00:00
|
|
|
* Changes a sale concept
|
2019-07-02 10:12:15 +00:00
|
|
|
*/
|
2020-06-23 11:40:49 +00:00
|
|
|
changeConcept(sale) {
|
2019-09-06 09:43:15 +00:00
|
|
|
const data = {newConcept: sale.concept};
|
2019-10-24 22:53:53 +00:00
|
|
|
const query = `Sales/${sale.id}/updateConcept`;
|
2019-09-06 09:43:15 +00:00
|
|
|
this.$http.post(query, data).then(() => {
|
2020-06-23 11:40:49 +00:00
|
|
|
this.vnApp.showSuccess(this.$t('Data saved!'));
|
2019-07-02 10:12:15 +00:00
|
|
|
}).catch(e => {
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.model.refresh();
|
2019-07-02 10:12:15 +00:00
|
|
|
throw e;
|
2019-09-09 10:35:59 +00:00
|
|
|
}).finally(() => {
|
|
|
|
if (this.newInstances().length === 0)
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.watcher.updateOriginalData();
|
2019-07-02 10:12:15 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adds a new sale
|
|
|
|
*/
|
|
|
|
addSale(sale) {
|
|
|
|
const data = {
|
|
|
|
itemId: sale.itemFk,
|
|
|
|
quantity: sale.quantity
|
|
|
|
};
|
2019-10-24 22:53:53 +00:00
|
|
|
const query = `tickets/${this.ticket.id}/addSale`;
|
2019-07-02 10:12:15 +00:00
|
|
|
this.$http.post(query, data).then(res => {
|
|
|
|
if (!res.data) return;
|
|
|
|
|
|
|
|
const newSale = res.data;
|
|
|
|
|
|
|
|
sale.id = newSale.id;
|
|
|
|
sale.image = newSale.item.image;
|
|
|
|
sale.subName = newSale.item.subName;
|
|
|
|
sale.concept = newSale.concept;
|
|
|
|
sale.quantity = newSale.quantity;
|
|
|
|
sale.discount = newSale.discount;
|
|
|
|
sale.price = newSale.price;
|
|
|
|
sale.item = newSale.item;
|
|
|
|
|
2020-06-23 11:40:49 +00:00
|
|
|
this.vnApp.showSuccess(this.$t('Data saved!'));
|
2019-09-09 10:35:59 +00:00
|
|
|
}).finally(() => {
|
2019-09-05 07:00:55 +00:00
|
|
|
if (this.newInstances().length === 0)
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.watcher.updateOriginalData();
|
2019-07-02 10:12:15 +00:00
|
|
|
});
|
|
|
|
}
|
2019-09-03 12:42:52 +00:00
|
|
|
|
|
|
|
isTicketEditable() {
|
2019-10-24 22:53:53 +00:00
|
|
|
this.$http.get(`Tickets/${this.$state.params.id}/isEditable`).then(res => {
|
2019-09-03 12:42:52 +00:00
|
|
|
this.isEditable = res.data;
|
|
|
|
});
|
|
|
|
}
|
2019-11-14 13:19:39 +00:00
|
|
|
|
2020-02-27 11:31:38 +00:00
|
|
|
isTicketLocked() {
|
|
|
|
this.$http.get(`Tickets/${this.$state.params.id}/isLocked`).then(res => {
|
|
|
|
this.isLocked = res.data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-11-14 13:19:39 +00:00
|
|
|
calculateSalePrice() {
|
|
|
|
const sale = this.checkedLines()[0];
|
2019-11-21 11:00:56 +00:00
|
|
|
const query = `Sales/${sale.id}/recalculatePrice`;
|
2019-11-14 13:19:39 +00:00
|
|
|
this.$http.post(query).then(res => {
|
2020-06-23 11:40:49 +00:00
|
|
|
this.vnApp.showSuccess(this.$t('Data saved!'));
|
2020-03-18 07:35:59 +00:00
|
|
|
this.$.model.refresh();
|
2019-11-14 13:19:39 +00:00
|
|
|
});
|
|
|
|
}
|
2020-03-11 14:56:02 +00:00
|
|
|
|
|
|
|
itemSearchFunc($search) {
|
|
|
|
return /^\d+$/.test($search)
|
|
|
|
? {id: $search}
|
|
|
|
: {name: {like: '%' + $search + '%'}};
|
|
|
|
}
|
2018-03-26 12:55:10 +00:00
|
|
|
}
|
|
|
|
|
2018-03-22 17:02:48 +00:00
|
|
|
ngModule.component('vnTicketSale', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-05-08 07:25:15 +00:00
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
ticket: '<'
|
|
|
|
},
|
|
|
|
require: {
|
2018-10-22 06:23:10 +00:00
|
|
|
card: '?^vnTicketCard'
|
2018-05-08 07:25:15 +00:00
|
|
|
}
|
2018-03-22 17:02:48 +00:00
|
|
|
});
|