2018-03-22 17:02:48 +00:00
|
|
|
import ngModule from '../module';
|
2018-06-06 14:54:40 +00:00
|
|
|
import './style.scss';
|
2018-03-22 17:02:48 +00:00
|
|
|
|
2018-07-04 12:41:01 +00:00
|
|
|
class Controller {
|
2018-07-17 06:44:31 +00:00
|
|
|
constructor($scope, $state, $http, vnApp, $translate) {
|
|
|
|
this.$scope = $scope;
|
2018-06-06 14:54:40 +00:00
|
|
|
this.vnApp = vnApp;
|
2018-08-02 13:33:24 +00:00
|
|
|
this.$translate = $translate;
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$state = $state;
|
|
|
|
this.$stateParams = $state.params;
|
2018-05-08 07:25:15 +00:00
|
|
|
this.$http = $http;
|
2018-06-28 13:17:50 +00:00
|
|
|
this.edit = {};
|
2018-06-06 14:54:40 +00:00
|
|
|
this.moreOptions = [
|
2018-07-02 11:18:22 +00:00
|
|
|
{callback: this.markAsReserved, name: 'Mark as reserved'},
|
|
|
|
{callback: this.unmarkAsReserved, name: 'Unmark as reserved'},
|
2019-05-06 05:40:59 +00:00
|
|
|
{callback: this.showEditDialog, name: 'Update discount', show: () => !this.hasInvoice()},
|
2019-03-29 06:29:09 +00:00
|
|
|
{callback: this.createClaim, name: 'Add claim'},
|
|
|
|
{callback: this.showSMSDialog, name: 'Send SMS'}
|
2018-06-06 14:54:40 +00:00
|
|
|
];
|
2018-10-22 06:23:10 +00:00
|
|
|
|
|
|
|
this.imagesPath = '//verdnatura.es/vn-image-data/catalog';
|
2018-06-06 14:54:40 +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
|
|
|
}
|
|
|
|
|
2019-06-17 10:13:05 +00:00
|
|
|
get editedPrice() {
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-23 12:33:07 +00:00
|
|
|
refreshTotal() {
|
|
|
|
this.loadSubTotal();
|
|
|
|
this.loadVAT();
|
|
|
|
}
|
|
|
|
|
2018-10-22 06:23:10 +00:00
|
|
|
loadSubTotal() {
|
2019-02-21 07:43:04 +00:00
|
|
|
if (!this.$stateParams.id || !this.sales) return;
|
2019-05-24 13:30:50 +00:00
|
|
|
this.$http.get(`/api/Tickets/${this.$stateParams.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) {
|
|
|
|
return sale.quantity * sale.price * ((100 - sale.discount) / 100);
|
|
|
|
}
|
2018-06-19 10:10:38 +00:00
|
|
|
|
2018-10-22 06:23:10 +00:00
|
|
|
loadVAT() {
|
|
|
|
this.VAT = 0.0;
|
2018-10-23 10:39:25 +00:00
|
|
|
if (!this.$stateParams.id || !this.sales) return;
|
2019-05-24 13:30:50 +00:00
|
|
|
this.$http.get(`/api/Tickets/${this.$stateParams.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
|
|
|
}
|
|
|
|
|
|
|
|
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));
|
|
|
|
});
|
2018-10-22 06:23:10 +00:00
|
|
|
this.$scope.moreButton.data = options;
|
|
|
|
}
|
|
|
|
|
|
|
|
onMoreChange(callback) {
|
|
|
|
callback.call(this);
|
2018-06-19 10:10:38 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-06-06 14:54:40 +00:00
|
|
|
get isEditable() {
|
|
|
|
try {
|
2018-11-14 13:31:56 +00:00
|
|
|
return !this.ticket.state.state.alertLevel;
|
2018-06-06 14:54:40 +00:00
|
|
|
} catch (e) {}
|
|
|
|
|
|
|
|
return true;
|
2018-05-08 07:25:15 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-05-08 07:54:14 +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;
|
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-06-06 14:54:40 +00:00
|
|
|
getCheckedLines() {
|
|
|
|
let lines = [];
|
2018-07-04 12:41:01 +00:00
|
|
|
let data = this.sales;
|
2018-11-06 12:59:16 +00:00
|
|
|
if (data) {
|
|
|
|
for (let i = 0; i < data.length; i++) {
|
2018-06-06 14:54:40 +00:00
|
|
|
if (data[i].checked)
|
|
|
|
lines.push({id: data[i].id, instance: i});
|
2018-11-06 12:59:16 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-06 14:54:40 +00:00
|
|
|
return lines;
|
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-05-08 07:25:15 +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-06-20 11:50:58 +00:00
|
|
|
return this.$http.get(`/api/States?filter=${json}`).then(res => {
|
2018-05-08 07:25:15 +00:00
|
|
|
this.onStateChange(res.data[0].id);
|
|
|
|
});
|
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-05-08 07:25:15 +00:00
|
|
|
onStateChange(value) {
|
|
|
|
let params = {ticketFk: this.$state.params.id, stateFk: value};
|
2019-05-24 13:30:50 +00:00
|
|
|
this.$http.post(`/api/TicketTrackings/changeState`, params).then(() => {
|
2018-05-08 07:25:15 +00:00
|
|
|
this.card.reload();
|
2018-08-02 13:33:24 +00:00
|
|
|
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
|
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) {
|
|
|
|
if (response === 'ACCEPT') {
|
|
|
|
let sales = this.getCheckedLines();
|
|
|
|
let params = {sales: sales, actualTicketFk: this.ticket.id};
|
2019-05-24 13:30:50 +00:00
|
|
|
let query = `/api/Sales/removes`;
|
2018-07-02 12:14:16 +00:00
|
|
|
this.$http.post(query, params).then(() => {
|
|
|
|
this.removeInstances(sales);
|
2018-09-05 14:14:13 +00:00
|
|
|
this.vnApp.showSuccess(this.$translate.instant('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
|
|
|
|
2018-07-02 11:18:22 +00:00
|
|
|
removeInstances(instances) {
|
2018-10-23 12:33:07 +00:00
|
|
|
for (let i of instances)
|
|
|
|
this.sales.splice(i.instance, 1);
|
|
|
|
this.refreshTotal();
|
2018-07-02 11:18:22 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-07-02 12:14:16 +00:00
|
|
|
showRemoveLinesDialog() {
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$scope.deleteLines.show();
|
2018-07-02 12:14:16 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-06-06 14:54:40 +00:00
|
|
|
showTransferPopover(event) {
|
|
|
|
let filter = {clientFk: this.ticket.clientFk, ticketFk: this.ticket.id};
|
|
|
|
let json = encodeURIComponent(JSON.stringify(filter));
|
2019-05-24 13:30:50 +00:00
|
|
|
let query = `/api/Tickets/threeLastActive?filter=${json}`;
|
2018-07-02 11:18:22 +00:00
|
|
|
this.$http.get(query).then(res => {
|
2018-06-06 14:54:40 +00:00
|
|
|
this.lastThreeTickets = res.data;
|
|
|
|
});
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$scope.transfer.parent = event.target;
|
|
|
|
this.$scope.transfer.show();
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2019-05-24 13:30:50 +00:00
|
|
|
|
|
|
|
checkEmptiness(receiverTicketId) {
|
2018-06-06 14:54:40 +00:00
|
|
|
let sales = this.getCheckedLines();
|
2019-05-24 13:30:50 +00:00
|
|
|
let areAllSalesSelected = sales.length === this.$scope.model.data.length;
|
|
|
|
this.receiverTicketId = receiverTicketId;
|
2018-06-06 14:54:40 +00:00
|
|
|
|
2019-05-24 13:30:50 +00:00
|
|
|
|
|
|
|
if (areAllSalesSelected) {
|
|
|
|
let query = `/api/Tickets/${this.ticket.id}/checkEmptiness`;
|
|
|
|
this.$http.get(query).then(res => {
|
|
|
|
if (res.data)
|
|
|
|
this.$scope.deleteTicket.show();
|
|
|
|
if (!res.data)
|
|
|
|
this.moveLines(false);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!areAllSalesSelected)
|
|
|
|
this.moveLines(false);
|
2018-05-08 07:54:14 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2019-05-24 13:30:50 +00:00
|
|
|
moveLines(removeEmptyTicket) {
|
|
|
|
let sales = this.getCheckedLines();
|
|
|
|
|
|
|
|
let currentTicketData = {
|
|
|
|
currentTicketId: this.ticket.id,
|
2018-06-28 13:17:50 +00:00
|
|
|
clientFk: this.ticket.clientFk,
|
|
|
|
addressFk: this.ticket.addressFk,
|
|
|
|
agencyModeFk: this.ticket.agencyModeFk,
|
|
|
|
warehouseFk: this.ticket.warehouseFk
|
|
|
|
};
|
|
|
|
|
2019-05-24 13:30:50 +00:00
|
|
|
let params = {
|
|
|
|
currentTicket: currentTicketData,
|
|
|
|
receiverTicket: this.receiverTicketId ? {id: this.receiverTicketId} : currentTicketData,
|
|
|
|
sales: sales,
|
|
|
|
removeEmptyTicket: removeEmptyTicket
|
|
|
|
};
|
2018-06-28 13:17:50 +00:00
|
|
|
|
2019-05-24 13:30:50 +00:00
|
|
|
this.$http.post(`/api/Sales/moveToTicket`, params).then(res => {
|
|
|
|
if (res.data) {
|
|
|
|
this.receiverTicketId = null;
|
|
|
|
this.goToTicket(res.data.id);
|
|
|
|
}
|
2018-06-06 14:54:40 +00:00
|
|
|
});
|
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() {
|
|
|
|
let claim = {
|
|
|
|
ticketFk: this.ticket.id,
|
|
|
|
clientFk: this.ticket.clientFk,
|
2019-03-21 13:56:09 +00:00
|
|
|
ticketCreated: this.ticket.shipped
|
2018-09-11 10:49:31 +00:00
|
|
|
};
|
|
|
|
let sales = this.getCheckedLines();
|
|
|
|
for (let i = 0; i < sales.length; i++)
|
|
|
|
sales[i].quantity = this.sales[sales[i].instance].quantity;
|
2019-05-27 06:46:11 +00:00
|
|
|
this.$http.post(`/api/Claims/createFromSales`, {claim: claim, sales: sales}).then(res => {
|
2018-11-06 12:59:16 +00:00
|
|
|
this.$state.go('claim.card.basicData', {id: res.data.id});
|
2018-09-11 10:49:31 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-06 14:54:40 +00:00
|
|
|
goToTicket(ticketID) {
|
2018-11-06 12:59:16 +00:00
|
|
|
this.$state.go('ticket.card.sale', {id: ticketID});
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-06-28 13:17:50 +00:00
|
|
|
// Slesperson Mana
|
|
|
|
getManaSalespersonMana() {
|
|
|
|
this.$http.get(`/api/Tickets/${this.$state.params.id}/getSalesPersonMana`).then(res => {
|
|
|
|
this.mana = res.data;
|
|
|
|
});
|
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-06-06 14:54:40 +00:00
|
|
|
// Item Descriptor
|
2018-04-26 14:41:08 +00:00
|
|
|
showDescriptor(event, itemFk) {
|
2018-09-04 09:49:00 +00:00
|
|
|
this.quicklinks = {
|
|
|
|
btnThree: {
|
|
|
|
icon: 'icon-transaction',
|
|
|
|
state: `item.card.diary({
|
|
|
|
id: ${itemFk},
|
2018-10-05 12:03:59 +00:00
|
|
|
warehouseFk: ${this.ticket.warehouseFk},
|
|
|
|
ticketFk: ${this.ticket.id}
|
2018-09-04 09:49:00 +00:00
|
|
|
})`,
|
|
|
|
tooltip: 'Item diary'
|
|
|
|
}
|
|
|
|
};
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$scope.descriptor.itemFk = itemFk;
|
|
|
|
this.$scope.descriptor.parent = event.target;
|
|
|
|
this.$scope.descriptor.show();
|
2018-04-26 14:41:08 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-04-26 14:41:08 +00:00
|
|
|
onDescriptorLoad() {
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$scope.popover.relocate();
|
2018-03-26 12:55:10 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-06-28 13:17:50 +00:00
|
|
|
showEditPricePopover(event, sale) {
|
|
|
|
this.sale = sale;
|
|
|
|
this.editedPrice = this.sale.price;
|
|
|
|
this.edit = {
|
|
|
|
ticketFk: this.ticket.id,
|
|
|
|
id: sale.id,
|
|
|
|
quantity: sale.quantity
|
|
|
|
};
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$scope.editPricePopover.parent = event.target;
|
|
|
|
this.$scope.editPricePopover.show();
|
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() {
|
|
|
|
if (this.editedPrice != this.sale.price) {
|
2019-06-03 06:01:24 +00:00
|
|
|
this.$http.post(`/api/Sales/${this.edit.id}/updatePrice`, {newPrice: this.editedPrice}).then(() => {
|
2018-06-28 13:17:50 +00:00
|
|
|
this.sale.price = this.edit.price;
|
2018-08-02 13:33:24 +00:00
|
|
|
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
|
2019-02-26 16:32:32 +00:00
|
|
|
this.$scope.model.refresh();
|
2018-06-28 13:17:50 +00:00
|
|
|
});
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2018-11-06 12:59:16 +00:00
|
|
|
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$scope.editPricePopover.hide();
|
2018-06-06 14:54:40 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2019-06-17 10:13:05 +00:00
|
|
|
updateNewPrice() {
|
|
|
|
this.newPrice = this.sale.quantity * this.editedPrice - ((this.sale.discount * (this.sale.quantity * this.editedPrice)) / 100);
|
|
|
|
}
|
|
|
|
|
2018-06-06 14:54:40 +00:00
|
|
|
showEditPopover(event, sale) {
|
|
|
|
this.sale = sale;
|
2018-06-28 13:17:50 +00:00
|
|
|
this.edit = [{
|
|
|
|
ticketFk: this.ticket.id,
|
2018-06-06 14:54:40 +00:00
|
|
|
id: sale.id,
|
|
|
|
quantity: sale.quantity,
|
|
|
|
price: sale.price,
|
|
|
|
discount: sale.discount
|
2018-06-28 13:17:50 +00:00
|
|
|
}];
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$scope.editPopover.parent = event.target;
|
|
|
|
this.$scope.editPopover.show();
|
2018-06-28 13:17:50 +00:00
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
|
2018-07-09 13:06:36 +00:00
|
|
|
showEditDialog() {
|
2018-06-28 13:17:50 +00:00
|
|
|
this.edit = this.getCheckedLines();
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$scope.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() {
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$scope.model.refresh();
|
|
|
|
this.$scope.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() {
|
2018-07-17 06:44:31 +00:00
|
|
|
this.$scope.model.refresh();
|
|
|
|
this.$scope.editPopover.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
|
|
|
updateQuantity(id, quantity) {
|
2019-05-27 06:46:11 +00:00
|
|
|
this.$http.post(`/api/Sales/${id}/updateQuantity`, {quantity: parseInt(quantity)}).then(() => {
|
2018-08-02 13:33:24 +00:00
|
|
|
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
|
2018-08-07 14:06:44 +00:00
|
|
|
}).catch(e => {
|
|
|
|
this.vnApp.showError(e.data.error.message);
|
2018-08-20 12:52:37 +00:00
|
|
|
}).finally(() => {
|
2018-08-07 14:06:44 +00:00
|
|
|
this.$scope.model.refresh();
|
2018-06-28 13:17:50 +00:00
|
|
|
});
|
2018-06-06 14:54:40 +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);
|
|
|
|
}
|
|
|
|
|
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-06-26 11:56:40 +00:00
|
|
|
let selectedSales = this.getCheckedLines();
|
|
|
|
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();
|
|
|
|
this.$http.post(`/api/Sales/reserve`, params).then(res => {
|
|
|
|
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;
|
|
|
|
});
|
2018-06-19 07:09:49 +00:00
|
|
|
});
|
|
|
|
}
|
2018-11-14 13:31:56 +00:00
|
|
|
|
|
|
|
newOrderFromTicket() {
|
|
|
|
this.$http.post(`/api/Orders/newFromTicket`, {ticketFk: this.ticket.id}).then(res => {
|
|
|
|
this.$state.go('order.card.catalog', {id: res.data});
|
|
|
|
this.vnApp.showSuccess(this.$translate.instant('Order created'));
|
|
|
|
});
|
|
|
|
}
|
2019-03-29 06:29:09 +00:00
|
|
|
|
|
|
|
showSMSDialog() {
|
|
|
|
const address = this.ticket.address;
|
|
|
|
const lines = this.getCheckedLines();
|
|
|
|
const items = lines.map(line => {
|
|
|
|
const instance = this.sales[line.instance];
|
|
|
|
return `${instance.quantity} ${instance.concept}`;
|
|
|
|
});
|
|
|
|
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,
|
|
|
|
destination: address.mobile || null,
|
2019-03-29 06:29:09 +00:00
|
|
|
message: this.$translate.instant('SMSAvailability', params)
|
|
|
|
};
|
|
|
|
this.$scope.sms.open();
|
|
|
|
}
|
2019-05-06 05:40:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns if the current ticket
|
|
|
|
* is already invoiced
|
|
|
|
* @return {Boolean} - True if invoiced
|
|
|
|
*/
|
|
|
|
hasInvoice() {
|
|
|
|
return this.ticket.refFk !== null;
|
|
|
|
}
|
2018-03-26 12:55:10 +00:00
|
|
|
}
|
|
|
|
|
2018-07-17 06:44:31 +00:00
|
|
|
Controller.$inject = ['$scope', '$state', '$http', 'vnApp', '$translate'];
|
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
|
|
|
});
|