date field is filled with different time
Arguments:
| Name |
|
Value |
| specifyCMid |
= |
Publicação.Publicação Id
|
| dateaud |
= |
Publicação.Data Audiencia
|
With this code can create a custom task on a custom module. But when the system copies a date field this custom module for my task (the two records have the same date -time field) , the time is filled with a time +2 hours .
mp=map();
mp.put("SEMODULE","CustomModule6");
mp.put("SEID",input.specifyCMid);
mp.put("SMOWNERID","256525000014462381");
mp.put("Subject","TESTE DE CODIGO");
mp.put("Data Audiencia",input.dateaud); <======
mp.put("Status","Not Started");
mp.put("Priority","High");
mp.put("Due Date",today);
mp.put("Andamento","Prazo");
mp.put("Tipos de Andamentos","Alvo");
createResp = zoho.crm.create("Tasks",mp);