Advertisement
Cristian-Paolini

Llamar functionimport de front para cambiar clase Pasajero

Aug 2nd, 2022 (edited)
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. onCambiarClase: function (oEvent) {
  2.  
  3.                 var oPasajero = oEvent.getSource().getBindingContext().getObject();
  4.  
  5.                 oPasajero.Clase = 1;
  6.  
  7.                 var sPasajero = JSON.stringify(oPasajero);
  8.  
  9.                 /*var oJsonBaja = new JSONModel({
  10.                     Cuil: oEvent.getSource().getBindingContext().getProperty("Cuil"),
  11.                     Fecha: "", //EN ABAP le voy a poner Sy-DAtum que es la fecha de hoy
  12.                     Motivo: "", //lo obtengo del fragment sap.ui.getCore("ID").getText();
  13.                     Mensaje: ""
  14.                 });
  15.  
  16.                 var sBaja = JSON.stringify(oJsonBaja.getData());*/
  17.  
  18.                 this.getView().getModel().callFunction("/AsignarPrimeraClase", {
  19.                     method: "GET",
  20.                     urlParameters: {
  21.                         "Pasajero": sPasajero
  22.                     },
  23.                     success: function (oData) {
  24.                         sap.m.MessageToast.show(oData.Mensajes);
  25.                     }.bind(this),
  26.                     error: function (oError) {
  27.                         sap.m.MessageToast.show("Fallo Comunicacion con FI");
  28.                     }
  29.                 });
  30.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement