﻿
function $(id)
{
    return document.getElementById(id);
}

//验证
function Check()
{
    if ($("ctl00_ContentPlaceHolder1_txtCN").value == "")
    {
        alert("单位名称不能为空！");
        return false;
    }

    if ($("ctl00_ContentPlaceHolder1_txtAddress").value == "")
    {
        alert("地址不能为空！");
        return false;
    }

    if ($("ctl00_ContentPlaceHolder1_txtPeople").value == "")
    {
        alert("联系人不能为空！");
        return false;
    }

    if ($("ctl00_ContentPlaceHolder1_txtPhone").value == "")
    {
        alert("联系电话不能为空！");
        return false;
    }

    var type = $("ctl00_ContentPlaceHolder1_txtType2").value;
    var quantity = $("ctl00_ContentPlaceHolder1_txtQuanty2").value;
    var brand = $("ctl00_ContentPlaceHolder1_txtPin2").value;
    var pDate = $("ctl00_ContentPlaceHolder1_txtDate2").value;
    var price = $("ctl00_ContentPlaceHolder1_txtPrice2").value;
    var enFormat = $("ctl00_ContentPlaceHolder1_txtfen2").value;

    if (type == "" || quantity == "" || brand == "" || pDate == "" || price == "" || enFormat == "")
    {
        alert("至少填写一个完整的订单！");
        return false;
    }

    return true;
}

//重置
function Reset()
{
    $("ctl00_ContentPlaceHolder1_txtCN").value = "";
    $("ctl00_ContentPlaceHolder1_txtAddress").value = "";
    $("ctl00_ContentPlaceHolder1_txtPeople").value = ""
    $("ctl00_ContentPlaceHolder1_txtPhone").value = "";
    $("ctl00_ContentPlaceHolder1_txtFax").value = "";
    $("ctl00_ContentPlaceHolder1_txtEmail").value = "";

    $("ctl00_ContentPlaceHolder1_txtType2").value = "";
    $("ctl00_ContentPlaceHolder1_txtQuanty2").value = "";
    $("ctl00_ContentPlaceHolder1_txtPin2").value = "";
    $("ctl00_ContentPlaceHolder1_txtDate2").value = "";
    $("ctl00_ContentPlaceHolder1_txtPrice2").value = "";
    $("ctl00_ContentPlaceHolder1_txtfen2").value = "";

    $("ctl00_ContentPlaceHolder1_txtType3").value = "";
    $("ctl00_ContentPlaceHolder1_txtQuanty4").value = "";
    $("ctl00_ContentPlaceHolder1_txtPin3").value = "";
    $("ctl00_ContentPlaceHolder1_txtDate3").value = "";
    $("ctl00_ContentPlaceHolder1_txtPrice3").value = "";
    $("ctl00_ContentPlaceHolder1_txtfen3").value = "";

    $("ctl00_ContentPlaceHolder1_txtType4").value = "";
    $("ctl00_ContentPlaceHolder1_txtQuanty4").value = "";
    $("ctl00_ContentPlaceHolder1_txtPin4").value = "";
    $("ctl00_ContentPlaceHolder1_txtDate4").value = "";
    $("ctl00_ContentPlaceHolder1_txtPrice4").value = "";
    $("ctl00_ContentPlaceHolder1_txtfen4").value = "";

    $("ctl00_ContentPlaceHolder1_txtRemark").value = "";
}