[Javascript] Cộng chuỗi từ lookup field
Fri Jun 08, 2018 11:18 am
Input: số nhà (string), quốc gia (lookup), tỉnh thành (lookup), quận huyện (lookup), phường xã (lookup).
Output: địa chỉ (string)
Output: địa chỉ (string)
- Code:
function KhachhangDoanhnghiep_Diachi()
{
var quocgia = Xrm.Page.getAttribute("new_quocgia").getValue()[0].name;
if (Xrm.Page.getAttribute("new_tinhthanh").getValue() != null)
{
var tinhthanh = Xrm.Page.getAttribute("new_tinhthanh").getValue()[0].name + ", ";
}
else if (Xrm.Page.getAttribute("new_tinhthanh").getValue() == null)
{
var tinhthanh = "";
}
if (Xrm.Page.getAttribute("new_quanhuyen").getValue() != null)
{
var quanhuyen = Xrm.Page.getAttribute("new_quanhuyen").getValue()[0].name + ", ";
}
else if (Xrm.Page.getAttribute("new_quanhuyen").getValue() == null)
{
var quanhuyen = "";
}
if (Xrm.Page.getAttribute("new_phuongxa").getValue() != null)
{
var phuongxa = Xrm.Page.getAttribute("new_phuongxa").getValue()[0].name + ", ";
}
else if (Xrm.Page.getAttribute("new_phuongxa").getValue() == null)
{
var phuongxa = "";
}
if (Xrm.Page.getAttribute("new_sonha").getValue() != null)
{
var sonha = Xrm.Page.getAttribute("new_sonha").getValue() + ", ";
}
else if (Xrm.Page.getAttribute("new_sonha").getValue() == null)
{
var sonha = "";
}
var diachi = sonha + phuongxa + quanhuyen + tinhthanh + quocgia;
Xrm.Page.getAttribute("new_diachi").setValue(diachi);
};
Permissions in this forum:
Bạn không có quyền trả lời bài viết