Merge branch '2175-ticket_send_sms' of verdnatura/salix into dev
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
commit
057bd2cdd1
|
@ -60,7 +60,7 @@ describe('Directive http-click', () => {
|
||||||
}).finally(() => {
|
}).finally(() => {
|
||||||
expect(finalValue).toEqual('called!');
|
expect(finalValue).toEqual('called!');
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
console.log(err);
|
throw err;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -16,7 +16,8 @@ class Controller extends Component {
|
||||||
{name: 'Send Delivery Note', callback: this.confirmDeliveryNote},
|
{name: 'Send Delivery Note', callback: this.confirmDeliveryNote},
|
||||||
{name: 'Delete ticket', callback: this.showDeleteTicketDialog},
|
{name: 'Delete ticket', callback: this.showDeleteTicketDialog},
|
||||||
{name: 'Change shipped hour', callback: this.showChangeShipped},
|
{name: 'Change shipped hour', callback: this.showChangeShipped},
|
||||||
{name: 'Send SMS', callback: this.showSMSDialog},
|
{name: 'SMS Pending payment', callback: this.sendPaymentSms},
|
||||||
|
{name: 'SMS Minimum import', callback: this.sendImportSms},
|
||||||
{
|
{
|
||||||
name: 'Add stowaway',
|
name: 'Add stowaway',
|
||||||
callback: this.showAddStowaway,
|
callback: this.showAddStowaway,
|
||||||
|
@ -240,17 +241,30 @@ class Controller extends Component {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sendImportSms() {
|
||||||
|
const params = {
|
||||||
|
ticketId: this.ticket.id,
|
||||||
|
created: this.ticket.created
|
||||||
|
};
|
||||||
|
const message = this.$params.message || this.$translate.instant('Minimum is needed', params);
|
||||||
|
this.newSMS = {message};
|
||||||
|
this.showSMSDialog();
|
||||||
|
}
|
||||||
|
|
||||||
|
sendPaymentSms() {
|
||||||
|
const message = this.$params.message || this.$translate.instant('Make a payment');
|
||||||
|
this.newSMS = {message};
|
||||||
|
this.showSMSDialog();
|
||||||
|
}
|
||||||
|
|
||||||
showSMSDialog() {
|
showSMSDialog() {
|
||||||
const address = this.ticket.address;
|
const address = this.ticket.address;
|
||||||
const client = this.ticket.client;
|
const client = this.ticket.client;
|
||||||
const phone = this.$params.phone || address.mobile || address.phone ||
|
const phone = this.$params.phone || address.mobile || address.phone ||
|
||||||
client.mobile || client.phone;
|
client.mobile || client.phone;
|
||||||
const message = this.$params.message || this.$translate.instant('SMSPayment');
|
|
||||||
this.newSMS = {
|
this.newSMS.destinationFk = this.ticket.clientFk;
|
||||||
destinationFk: this.ticket.clientFk,
|
this.newSMS.destination = phone;
|
||||||
destination: phone,
|
|
||||||
message: message
|
|
||||||
};
|
|
||||||
this.$.sms.open();
|
this.$.sms.open();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,13 @@ describe('Ticket Component vnTicketDescriptor', () => {
|
||||||
$httpBackend = _$httpBackend_;
|
$httpBackend = _$httpBackend_;
|
||||||
$httpParamSerializer = _$httpParamSerializer_;
|
$httpParamSerializer = _$httpParamSerializer_;
|
||||||
controller = $componentController('vnTicketDescriptor', {$element});
|
controller = $componentController('vnTicketDescriptor', {$element});
|
||||||
controller._ticket = {id: 2, invoiceOut: {id: 1}, client: {id: 101, email: 'client@email'}};
|
controller._ticket = {
|
||||||
|
id: 2,
|
||||||
|
clientFk: 101,
|
||||||
|
invoiceOut: {id: 1},
|
||||||
|
client: {id: 101, email: 'client@email'},
|
||||||
|
address: {id: 101, mobile: 111111111, phone: 2222222222}
|
||||||
|
};
|
||||||
controller.cardReload = ()=> {
|
controller.cardReload = ()=> {
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
@ -161,7 +167,6 @@ describe('Ticket Component vnTicketDescriptor', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
describe('showAddStowaway()', () => {
|
describe('showAddStowaway()', () => {
|
||||||
it('should show a dialog with a list of tickets available for an stowaway', () => {
|
it('should show a dialog with a list of tickets available for an stowaway', () => {
|
||||||
controller.$.addStowaway = {};
|
controller.$.addStowaway = {};
|
||||||
|
@ -223,4 +228,20 @@ describe('Ticket Component vnTicketDescriptor', () => {
|
||||||
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Data saved!');
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Data saved!');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('showSMSDialog()', () => {
|
||||||
|
it('should set the destionationFk and destination properties and then call the sms open() method', () => {
|
||||||
|
controller.$.sms = {open: () => {}};
|
||||||
|
jest.spyOn(controller.$.sms, 'open');
|
||||||
|
|
||||||
|
const clientId = 101;
|
||||||
|
const expectedPhone = 111111111;
|
||||||
|
controller.newSMS = {};
|
||||||
|
controller.showSMSDialog();
|
||||||
|
|
||||||
|
expect(controller.newSMS.destinationFk).toEqual(clientId);
|
||||||
|
expect(controller.newSMS.destination).toEqual(expectedPhone);
|
||||||
|
expect(controller.$.sms.open).toHaveBeenCalledWith();
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,3 +1,2 @@
|
||||||
SMSPayment: >-
|
Make a payment: "Verdnatura communicates:\rYour order is pending of payment.\rPlease, enter the web page and make the payment with card.\rThank you."
|
||||||
Verdnatura communicates: Your order is pending of payment.
|
Minimum is needed: "Verdnatura communicates:\rA minimum import of 50€ (Without BAT) is needed for your order {{ticketId}} from date {{created | date: 'dd/MM/yyyy'}} to receive it with no extra fees."
|
||||||
Please, enter the web page and make the payment with card. Thank you.
|
|
||||||
|
|
|
@ -13,7 +13,8 @@ Send Delivery Note: Enviar albarán
|
||||||
Show pallet report: Ver hoja de pallet
|
Show pallet report: Ver hoja de pallet
|
||||||
Change shipped hour: Cambiar hora de envío
|
Change shipped hour: Cambiar hora de envío
|
||||||
Shipped hour: Hora de envío
|
Shipped hour: Hora de envío
|
||||||
SMSPayment: "Verdnatura le comunica:\rSu pedido está pendiente de pago.\rPor favor, entre en la página web y efectue el pago con tarjeta.\rMuchas gracias."
|
Make a payment: "Verdnatura le comunica:\rSu pedido está pendiente de pago.\rPor favor, entre en la página web y efectue el pago con tarjeta.\rMuchas gracias."
|
||||||
|
Minimum is needed: "Verdnatura le recuerda:\rEs necesario llegar a un importe mínimo de 50€ (Sin IVA) en su pedido {{ticketId}} del día {{created | date: 'dd/MM/yyyy'}} para recibirlo sin portes adicionales."
|
||||||
Ticket invoiced: Ticket facturado
|
Ticket invoiced: Ticket facturado
|
||||||
Make invoice: Crear factura
|
Make invoice: Crear factura
|
||||||
Regenerate invoice: Regenerar factura
|
Regenerate invoice: Regenerar factura
|
||||||
|
@ -26,3 +27,5 @@ Shipped hour updated: Hora de envio modificada
|
||||||
Deleted ticket: Ticket eliminado
|
Deleted ticket: Ticket eliminado
|
||||||
Recalculate components: Recalcular componentes
|
Recalculate components: Recalcular componentes
|
||||||
Are you sure you want to recalculate the components?: ¿Seguro que quieres recalcular los componentes?
|
Are you sure you want to recalculate the components?: ¿Seguro que quieres recalcular los componentes?
|
||||||
|
SMS Minimum import: 'SMS Importe minimo'
|
||||||
|
SMS Pending payment: 'SMS Pago pendiente'
|
|
@ -3,3 +3,4 @@ Go to lines: Ir a lineas
|
||||||
Not available: No disponible
|
Not available: No disponible
|
||||||
Payment on account...: Pago a cuenta...
|
Payment on account...: Pago a cuenta...
|
||||||
Closure: Cierre
|
Closure: Cierre
|
||||||
|
You cannot make a payment on account from multiple clients: No puedes realizar un pago a cuenta de clientes diferentes
|
|
@ -12,7 +12,7 @@ class Controller {
|
||||||
this.edit = {};
|
this.edit = {};
|
||||||
this.moreOptions = [
|
this.moreOptions = [
|
||||||
{
|
{
|
||||||
name: 'Send SMS',
|
name: 'Send shortage SMS',
|
||||||
callback: this.showSMSDialog
|
callback: this.showSMSDialog
|
||||||
}, {
|
}, {
|
||||||
name: 'Mark as reserved',
|
name: 'Mark as reserved',
|
||||||
|
@ -182,7 +182,6 @@ class Controller {
|
||||||
return checkedLines.length;
|
return checkedLines.length;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
removeCheckedLines() {
|
removeCheckedLines() {
|
||||||
const sales = this.checkedLines();
|
const sales = this.checkedLines();
|
||||||
|
|
||||||
|
@ -448,7 +447,7 @@ class Controller {
|
||||||
this.newSMS = {
|
this.newSMS = {
|
||||||
destinationFk: this.ticket.clientFk,
|
destinationFk: this.ticket.clientFk,
|
||||||
destination: phone,
|
destination: phone,
|
||||||
message: this.$translate.instant('SMSAvailability', params)
|
message: this.$translate.instant('Product not available', params)
|
||||||
};
|
};
|
||||||
this.$scope.sms.open();
|
this.$scope.sms.open();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
SMSAvailability: >-
|
Product not available: >-
|
||||||
Verdnatura communicates: Your order {{ticketFk}} created on {{created | date: "dd/MM/yyyy"}}.
|
Verdnatura communicates: Your order {{ticketFk}} created on {{created | date: "dd/MM/yyyy"}}.
|
||||||
{{notAvailables}} not available. Sorry for the inconvenience.
|
{{notAvailables}} not available. Sorry for the inconvenience.
|
|
@ -24,7 +24,8 @@ Sales to transfer: Líneas a transferir
|
||||||
Destination ticket: Ticket destinatario
|
Destination ticket: Ticket destinatario
|
||||||
Change ticket state to 'Ok': Cambiar estado del ticket a 'Ok'
|
Change ticket state to 'Ok': Cambiar estado del ticket a 'Ok'
|
||||||
Reserved: Reservado
|
Reserved: Reservado
|
||||||
SMSAvailability: "Verdnatura le comunica:\rPedido {{ticketFk}} día {{created | date: 'dd/MM/yyyy'}}.\r{{notAvailables}} no disponible/s.\rDisculpe las molestias."
|
Send shortage SMS: Enviar SMS faltas
|
||||||
|
Product not available: "Verdnatura le comunica:\rPedido {{ticketFk}} día {{created | date: 'dd/MM/yyyy'}}.\r{{notAvailables}} no disponible/s.\rDisculpe las molestias."
|
||||||
Continue anyway?: ¿Continuar de todas formas?
|
Continue anyway?: ¿Continuar de todas formas?
|
||||||
This ticket is now empty: El ticket ha quedado vacio
|
This ticket is now empty: El ticket ha quedado vacio
|
||||||
Do you want to delete it?: ¿Quieres eliminarlo?
|
Do you want to delete it?: ¿Quieres eliminarlo?
|
||||||
|
|
Loading…
Reference in New Issue