swal({
title: "Transferir",
showConfirmButton: true,
type: "input",
text:
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
'+
'
',
showCancelButton: true,
closeOnConfirm: false,
formFields: [
{ id: 'name', placeholder:'Name Field' },
{ id: 'nickname', placeholder:'Add a cool nickname' }
],
inputPlaceholder: "escriba aquí el número telefonico",
animation: "slide-from-top",
html: true}, function (numero) {
if (numero === false) return false;
if (numero === "") {
swal.showInputError("Debes escribir un número telefonico");
return false
}
swal("Transfiriendo", "al número : " + numero, "success");
ref_datos(document,{url:url,parameters:{op:'transferir_cliente',numero:numero},callBackFunction:mostrar_transferir_cliente});
});