-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01. ms_TestTraineeFunctions.js
303 lines (244 loc) · 9.13 KB
/
01. ms_TestTraineeFunctions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/* APUNTES:
- DEPRECADA => no usar Xrm.Page, solo usar formContext
- executionContext => stx
-
formContext.getControl('ms_precio').addNotification({
messages: ['Si precio es nulo, descripcion tambien sera nulo'],
notificationLevel: 'ERROR'
});
*/
//---------------------------------------------
// Mostrar datos de la tabla
//---------------------------------------------
function checkDataDepart(executionContext) {
debugger
//linea de oro xD
var formContext = executionContext.getFormContext();
var precio = formContext.getAttribute('ms_precio').getValue();
var ciudad = formContext.getAttribute('ms_ciudad').getValue();
var estado = formContext.getAttribute('ms_estado').getText();
//var tipo = formContext.getAttribute('ms_estado').getFormat();
var entidad = formContext.data.entity.getEntityName();
if (precio !== null) {
alert("El precio es: $" + precio + " en " + ciudad + ", su estado es " + estado + " y la entidad es " + entidad);
}
}
//---------------------------------------------
// Mostrar datos del usuario
//---------------------------------------------
function LookDataUser(executionContext) {
debugger
//linea de oro xD
var formContext = executionContext.getFormContext();
//nombre de usuario
var user = formContext.context.getUserName();
//estado
var state = formContext.context.client.getClientState()
//dispositivo
var formFactor = formContext.context.client.getFormFactor()
//uid
var gui = formContext.context.getUserId()
//datos del cliente => Web
var data = formContext.context.client.getClient()
//organizacion => orgc30870af
var org = formContext.context.getOrgUniqueName();
//tipo de formulario
var TypeForm = formContext.ui.getFormType();
//rol => cadena
//var rol = Xrm.Page.context.getUserRoles()
//condicionales para dispositivo
var r = " ";
switch (formFactor) {
case 1:
r = "Desktop";
break;
case 2:
r = "Tablet";
break;
case 3:
r = "Telefono Movil";
break;
default:
r = "Desconocido";
break;
}
//condicionales para tipo de formulario(faltan)
var tf = " ";
switch (TypeForm) {
case 0:
tf = "Indefinido";
break;
case 1:
tf = "Crear";
break;
case 2:
tf = "Actualizar";
break;
case 3:
tf = "Solo lectura";
break;
default:
tf = "Indefinido";
break;
}
//alerta
if (user !== null) {
alert("Bienvenido " + user + ". Su estado es " + state + " y el dispositivo es " + r + ". Su id es " + gui + ".");
alert("Datos del cliente: " + data + "/ Organizacion: " + org + "/ Tipo de formulario " + tf);
}
}
//---------------------------------------------
// Setea un campo como oculto a cliente
//---------------------------------------------
function OcultarCampoCliente(executionContext, Cliente, OwnerId) {
debugger
// uso de context
var formContext = executionContext.getFormContext();
// llamamos a los campos a ocultar
var option = formContext.getAttribute("ms_cliente").getValue();
var option2 = formContext.getAttribute("ownerid").getValue();
// condicionales para cada campo
if (formContext.getControl("ms_cliente") != null) {
formContext.getControl("ms_cliente").setVisible(false);
}
if (formContext.getControl("ownerid") != null) {
formContext.getControl("ownerid").setVisible(false);
}
}
//---------------------------------------------
// Setea un campo como deshabilitado
//---------------------------------------------
function DesHabilitaCampo(executionContext, Estado) {
debugger
var formContext = executionContext.getFormContext();
formContext.getControl("ms_estado").setDisabled(true);
formContext.getControl('ms_estado').addNotification({
messages: ['No puede modificar estado'],
notificationLevel: 'RECOMMENDATION'
});
}
//---------------------------------------------
// Precio => descripcion(precio + ciudad)
//---------------------------------------------
function onChange(executionContext) {
debugger
var formContext = executionContext.getFormContext();
//obtenemos los datos del formulario
var precio = formContext.getAttribute('ms_precio').getValue();
var ciudad = formContext.getAttribute('ms_ciudad').getValue();
//si precio no es nulo => descripcion => precio+ciudad
if (precio !== null) {
formContext.getAttribute('ms_descripcion').setValue("" + precio + ciudad);
formContext.data.save();
} else {
formContext.getAttribute('ms_descripcion').setValue(null);
}
}
//---------------------------------------------
// Comparar fechas
//---------------------------------------------
function compareFechas(executionContext) {
debugger
var formContext = executionContext.getFormContext();
//obtenemos los datos del formulario
var fechaLlegada = formContext.getAttribute('ms_fecha_llegada').getValue();
var fechaSalida = formContext.getAttribute('ms_fecha_salida').getValue();
//compare
if (fechaSalida < fechaLlegada) {
alert('error: sales el ' + fechaSalida + ' y llegas el ' + fechaLlegada);
} else if (fechaSalida == fechaLlegada) {
alert('Entra y sale en la misma fecha. ¿Esta seguro?');
}
}
//-----------------------------------------------------
// Filtro con js sobre precio reservas vs depart
//-----------------------------------------------------
function filtro(executionContext) {
debugger
var formContext = executionContext.getFormContext();
//tipo de formulario
var TypeForm = formContext.ui.getFormType();
//obtener precio
var precio = formContext.getAttribute('ms_precio').getValue();
if (precio != 0) {
//Que mostrare??
var viewDisplayName = "Departamentos";
//id de la vista
var viewId = "{6FD72744-3676-41D4-8003-AE4CDE9AC282}";
var query =
`<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">
<entity name="ms_departamento">
<attribute name="ms_departamentoid" />
<attribute name="ms_departamento" />
<attribute name="ms_ciudad" />
<order attribute="ms_departamento" descending="false" />
<filter type="and">
<condition attribute="ms_precio" operator="le" value="${precio}" />
<condition attribute="statecode" operator="eq" value="0" />
<condition attribute="ms_estado" operator="eq" value="100000000" />
</filter>
</entity>
</fetch>`;
//
Xrm.WebApi.retrieveMultipleRecords('ms_departamento', "?fetchXml=" + query).then(function (results) {
//se puede agregar if para validar los resultados
var layoutXmlAgentSubType = "<grid name='resultset' object='1' jump='ms_departamentoid' select='1' icon='0' preview='1'>";
layoutXmlAgentSubType += "<row name='result' id='ms_departamentoid'>";
layoutXmlAgentSubType += "<cell name='ms_departamento' width='150' />";
layoutXmlAgentSubType += "</row>";
layoutXmlAgentSubType += "</grid>";
//campo lookup
formContext.getControl("ms_departamento").addCustomView(
//
viewId, 'ms_departamento', viewDisplayName, query, layoutXmlAgentSubType, true
);
},
function (error) {
formContext.ui.setFormNotification('Error al filtrar departamentos:' + error.message, 'WARNING', '1');
formContext.ui.clearFormNotification('1');
});
}
}
//-----------------------------------------------------
// Cambiar valor de estado de depart.
//-----------------------------------------------------
function changeEstado(executionContext) {
debugger
const estado = executionContext.getAttribute("ms_estado").getValue();
//si estado es distinto de disponible
if (estado[0] !== 100000000) {
executionContext.getAttribute('ms_estado').setValue([100000000]); //asigna disponible
}else {
alert("Departamento ya esta disponible");
}
}
function checkEstado(executionContext){
debugger
const value = executionContext.getAttribute("ms_estado").getValue();
if (value[0] !== 100000000) {
return true;
} else {
return false;
}
}
//-----------------------------------------------------
// Limpiar variable precio
//-----------------------------------------------------
function limpiarPrecio(executionContext) {
debugger
const precio = executionContext.getAttribute("ms_precio").getValue();
if ( precio !== 0) {
executionContext.getAttribute('ms_precio').setValue(0);
} else {
alert("precio esta limpio");
}
}
function buttonCheck(executionContext){
debugger
const value = executionContext.getAttribute("ms_precio").getValue();
if (value !== null) {
return true;
} else {
return false;
}
}