CY_ECommercePlatform/CY.WebForm/js/business/Order.js
@@ -50,6 +50,28 @@
    });
}
/*
确认受理
*/
function ToSuodan(orderId, orderShowId) {
    var msg ='确认锁单订单:' + orderShowId + '?';
    top.Dialog.confirm(msg, function () {
        CallServer({ Target: "SuodanOrder", id: orderId }, function (data, textStatus) {
            if ('1' == data) {
                alertMsg('操作成功!');
                RefreshDIVOpener();   //关闭页面
            } else {
                alertMsg('-1' == data ? '锁单过程中发生异常,请重新受理!' : '锁单失败!');
                //dialog.close();
            }
        });
    });
}
///批量受理
function ToAllAccept() {
    var commission = parseFloat(document.getElementById('txtCommission').value);
@@ -254,6 +276,38 @@
    }
}
/*
批量完工
*/
function ToDeliverWork(operateFn, validateFn) {
    var ids = '';
    var cks = $("input[name='ckId']:checked");
    if (cks.length == 0) { alertMsg('没有选中任何项!'); return; } else { }
    var isCan = true;
    cks.each(function (ii, vv) {
        var ckVal = $(this).val();
        var ckValJson = eval('(' + ckVal + ')');
        //        if (parseInt(ckValJson.orderType) < 1 && ckValJson.orderState == 1) {
        //            isCan = false;
        //            return false;
        //        }
        if (ckValJson.orderState == 1 || ckValJson.orderState <= 0) {
            isCan = false;
            return false;
        }
        ids = ids + ',' + $(vv).attr("value_keyid");
    });
    if (isCan) {
        dialog.open({ URL: "/Pages/business/DeliverWork.aspx?ids=" + ids, Title: '完工', Height: 600, Width: 680 });
    }
    else {
        alertMsg("所选订单未受理,或已冻结,或者已终止,或已完成,不能操作完工!");
    }
}
function SendToServer(sparam) {
    CallServer(sparam, function (data, textStatus) {
@@ -382,13 +436,16 @@
        }
        else {
            if (DeliveryOrderId == null || DeliveryOrderId == "" || DeliveryOrderId == "00000000-0000-0000-0000-000000000000") {
                var r = confirm("是否安排送货?");
                if (r == true) {
                    OpenWindowByUrl('/Pages/business/PrintAwbOrder.aspx?ids=' + ids + '&buyerid=' + tobjs[0]['buyerId'] + '&orderId=' + orderId + '&shifouDelivery=1' );
                }
                else {
                    OpenWindowByUrl('/Pages/business/PrintAwbOrder.aspx?ids=' + ids + '&buyerid=' + tobjs[0]['buyerId'] + '&orderId=' + orderId + '&shifouDelivery=2'  );
                }
                var url = "/Pages/business/DeliverPlanShifou.aspx?ids=" + ids + '&buyerid=' + tobjs[0]['buyerId'] + '&orderId=' + orderId;
                top.Dialog.open({ URL: url, Title: "送货日期", Height: 300, Width: 680 });
                //var r = confirm("是否安排送货?");
                //if (r == true) {
                //    OpenWindowByUrl('/Pages/business/PrintAwbOrder.aspx?ids=' + ids + '&buyerid=' + tobjs[0]['buyerId'] + '&orderId=' + orderId + '&shifouDelivery=1' );
                //}
                //else {
                //    OpenWindowByUrl('/Pages/business/PrintAwbOrder.aspx?ids=' + ids + '&buyerid=' + tobjs[0]['buyerId'] + '&orderId=' + orderId + '&shifouDelivery=2'  );
                //}
            } else {
                OpenWindowByUrl('/Pages/business/PrintAwbOrder.aspx?ids=' + ids + '&buyerid=' + tobjs[0]['buyerId'] + '&orderId=' + orderId + '&shifouDelivery=2' );
            }
@@ -418,7 +475,9 @@
function printTypeChange(sel) {
    showWait();
    var OldOrderId = document.getElementById('txtKeyid').value;
    if (sel.value == -1 || sel.value == "-1") {//其他类型
    if (sel.value == -1 || sel.value == "-1")
    {
        //其他类型
        $("#hidOrderId").val(OldOrderId);
        $("#divInquiry").load("/Pages/front/OtherType.aspx", { "PrintTypeId": "-1" });
        setTimeout(function () {
@@ -428,10 +487,14 @@
        }, 1000);
       
        window.hideWaitDiv = window.parent.parent.parent.parent.parent.parent.hideWaitDiv;
        if (window.hideWaitDiv) window.hideWaitDiv();
    } else {
        if (window.hideWaitDiv)
            window.hideWaitDiv();
    }
    else
    {
        DelayLoadPrintType(sel.value, '1', OldOrderId, 'order');
    }
    document.getElementById('hidPrintTypeId').value = sel.value;
    if ($("#txtKeyid").val() == "0") {
        //document.getElementById('txtDocumentName').value = sel.value ? sel.options[sel.selectedIndex].text : '';
@@ -439,9 +502,9 @@
    if (sel.value == 6) {
        document.getElementById('trbook').style.display = '';
        var sselCustormer = document.getElementById('selCustormer').value;
        if (sselCustormer != null && sselCustormer != '') {
        if (sselCustormer != null && sselCustormer != '')
        {
           
                //CallServer({ Target: "getPrintAsk", id: sselCustormer }, function (data, textStatus) {
                //    alert(sselCustormer);
                //    var jobj = false;
@@ -503,6 +566,351 @@
        $("#selprintask").empty();
        $("#selprintask").prepend("<option value=''>请选择</option>"); //为Select插入一个Option(第一个位置)
    }
    if (sel.value == 37) {
        document.getElementById('tbFacing').style.display = 'none';
        document.getElementById('selVerifyWay12').style.display = 'none';
        document.getElementById('selVerifyWay21').style.display = 'none';
        document.getElementById('selVerifyWay1234').style.display = 'none';
        document.getElementById('selVerifyWay4321').style.display = 'none';
        if (OldOrderId == "" || OldOrderId == "0") {
            document.getElementById('txtDeliveryTime').value = "";
        }
        if (document.getElementById('txtDocumentNameHide').value != "") {
            document.getElementById('txtDocumentName').value = document.getElementById('txtDocumentNameHide').value;
        }
    }
    else {
        document.getElementById('tbFacing').style.display = '';
        document.getElementById('selVerifyWay12').style.display = '';
        document.getElementById('selVerifyWay21').style.display = '';
        document.getElementById('selVerifyWay123').style.display = '';
        document.getElementById('selVerifyWay321').style.display = '';
        document.getElementById('selVerifyWay1234').style.display = '';
        document.getElementById('selVerifyWay4321').style.display = '';
    }
    if (sel.value == 37 || sel.value == 38) {
        $("#Duiyinghetongbianhao").hide();
    } else {
        $("#Duiyinghetongbianhao").show();
    }
    if (sel.value == 29) {
        $("#BlackAndWhite29").show();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    if (sel.value == 29) {
        $("#BlackAndWhite29").show();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 6) {
        $("#BlackAndWhite29").hide();
        $("#Book6").show();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 15) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").show();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 14) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").show();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 27) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").show();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 21) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").show();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 7) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").show();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 38) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").show();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 20) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").show();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 16) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").show();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 22) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").show();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 39) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").show();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 23) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").show();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 25) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").show();
        $("#Packet26").hide();
        $("#Qita1111").hide();
    }
    else if (sel.value == 26) {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").show();
        $("#Qita1111").hide();
    }
    else {
        $("#BlackAndWhite29").hide();
        $("#Book6").hide();
        $("#PictureAlbumNew15").hide();
        $("#DMInquiry14").hide();
        $("#ReceiptDocument27").hide();
        $("#Envelop21").hide();
        $("#NewsPaper7").hide();
        $("#Shijuan38").hide();
        $("#Adhesive20").hide();
        $("#Reticule16").hide();
        $("#Note22").hide();
        $("#GongWenZhi39").hide();
        $("#Calendary23").hide();
        $("#DeskCalendar25").hide();
        $("#Packet26").hide();
        $("#Qita1111").show();
    }
}
@@ -537,6 +945,14 @@
                document.getElementById('selBusinessManagers').value = jobj.BusinessManagerId;
                document.getElementById('txtContact').value = jobj.BusinessManagers;
                document.getElementById('txtPhone').value = jobj.CompanyPhone;
                document.getElementById('txtPrintPackDeliveryRequir').value = jobj.Note;
                var aaaaaaaaaselPrintTypes = document.getElementById('selPrintTypes').value;
                if (aaaaaaaaaselPrintTypes == "37") {
                    document.getElementById('txtDocumentName').value = jobj.CompanyName + "作业本";
                    document.getElementById('txtDocumentNameHide').value = jobj.CompanyName + "作业本";
                } else {
                    document.getElementById('txtDocumentNameHide').value = jobj.CompanyName + "作业本";
                }
                setTimeout(function () { ReceiptT('customer', jobj.Keyid, 6, 120); }, 0); //获取收货方式
            } else;
        });
@@ -597,4 +1013,10 @@
        return verfy_form(document.forms[0]);
    }
}
function Save() { return ValidateForm(); }
function Save() {
    if (document.getElementById('txtSumPrice').value == "" || parseFloat(document.getElementById('txtSumPrice').value) <= 0) {
        if (!confirm("订单总价为0,是否继续保存?"))
            return false;
    }
    return ValidateForm();
}