Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- onCambiarClase: function (oEvent) {
- var oPasajero = oEvent.getSource().getBindingContext().getObject();
- oPasajero.Clase = 1;
- var sPasajero = JSON.stringify(oPasajero);
- /*var oJsonBaja = new JSONModel({
- Cuil: oEvent.getSource().getBindingContext().getProperty("Cuil"),
- Fecha: "", //EN ABAP le voy a poner Sy-DAtum que es la fecha de hoy
- Motivo: "", //lo obtengo del fragment sap.ui.getCore("ID").getText();
- Mensaje: ""
- });
- var sBaja = JSON.stringify(oJsonBaja.getData());*/
- this.getView().getModel().callFunction("/AsignarPrimeraClase", {
- method: "GET",
- urlParameters: {
- "Pasajero": sPasajero
- },
- success: function (oData) {
- sap.m.MessageToast.show(oData.Mensajes);
- }.bind(this),
- error: function (oError) {
- sap.m.MessageToast.show("Fallo Comunicacion con FI");
- }
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement