Показать сообщение отдельно
Старый 13.08.2015, 10:37   #3  
Karpa_S is offline
Karpa_S
Участник
 
57 / 10 (1) +
Регистрация: 24.05.2015
Адрес: Киев
function calculate(){
if (Xrm.Page.getAttribute("data_nachalo").getValue() != null && Xrm.Page.getAttribute("chasi").getValue() != null){
var dd = Xrm.Page.getAttribute("data_nachalo").getValue();
dd.setDate(dd.getDate() + Math.ceil(Xrm.Page.getAttribute("chasi").getValue() * 2 / 8));
Xrm.Page.getAttribute("data_zavershenija").setValue(dd);
}else{
Xrm.Page.getAttribute("data_zavershenija").setValue(null);
}
}