From b70fff44283028813373e7c6f02da2a1490ba21d Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期一, 30 九月 2024 14:23:25 +0800 Subject: [PATCH] 订单修改页面,紧凑 --- CY_ECommercePlatform/CY.WebForm/js/Inquiry/Inquiry.js | 39 ++++++++++++++++++++++++++++++++++++++- 1 files changed, 38 insertions(+), 1 deletions(-) diff --git a/CY_ECommercePlatform/CY.WebForm/js/Inquiry/Inquiry.js b/CY_ECommercePlatform/CY.WebForm/js/Inquiry/Inquiry.js index 65bea0d..86264a2 100644 --- a/CY_ECommercePlatform/CY.WebForm/js/Inquiry/Inquiry.js +++ b/CY_ECommercePlatform/CY.WebForm/js/Inquiry/Inquiry.js @@ -253,6 +253,7 @@ if (dataJson.PrintTypeId == "-1" || dataJson.PrintTypeId == -1) { $("[name='printSizeName']").val(dataJson.PrintSizeName); $("[name='printCount']").val(dataJson.PrintCount); + $("[name='ysUnit']").val(dataJson.Unit); $("[name='txtPrintDemand']").val(dataJson.PrintDemand); } else { BindControlByPrintType(dataJson); @@ -290,6 +291,32 @@ //鍔ㄦ�佸姞杞介〉闈㈠悗鎵ц鐨勮鍙� function ExcuteCallBack() { var printTypeId = $("#hidPrintTypeId").val(); + + + setTimeout(function () { + + var element = document.getElementById('txtKeyid'); + + if (element) { + var OldOrderId = document.getElementById('txtKeyid').value; + if (OldOrderId == "" || OldOrderId == "0") { + + if ($("[name='printMode']").length > 1) { + $("[name='printMode']").each( + function () { + if ($(this).val() == "0") { + $(this).click(); + } + } + ); + } + + + } + } + + }, 1000); + $("#selDigitalPrintType").live("change", function () { @@ -1199,7 +1226,7 @@ $("[name='pNameMP']").val(dataJson.PaperMP); $("[name='paper0']").val(dataJson.PaperId); if (dataJson.PrintMode == 0) { - if (dataJson.PaperMP && dataJson.PaperMP != "") { + if (dataJson.PaperMP && dataJson.PaperMP != "" && $("#hidPrintTypeId").val() !="29") { PaperSelect($("[name='pNameMP']").val(), $("#hidPrintTypeId").val(), 0); } else { @@ -1215,6 +1242,7 @@ } $("[name='gramWeight0']").val(dataJson.GramWeight); $("#printCount").val(dataJson.PrintCount); + $("[name='ysUnit']").val(dataJson.Unit); $("[name='RopeTypeName']").val(dataJson.RopeTypeName); $("[name='RopeColor']").val(dataJson.RopeColor); $("[name='printColor0']").val(dataJson.PrintColor); @@ -1296,6 +1324,8 @@ } if (afterWorkArry[i] == "13") { $("#divJT0").show(); + } if (afterWorkArry[i] == "99") { + $("#divJTT0").show(); } } } @@ -2110,6 +2140,13 @@ else { $("#divJT" + index + "").hide(); } + } else if ($(obj).val() == "99") { + if ($("#divJTT" + index + "").is(":hidden")) { + $("#divJTT" + index + "").show(); + } + else { + $("#divJTT" + index + "").hide(); + } } else if ($(obj).val() == "47") { if ($("#divLY" + index + "").is(":hidden")) { $("#divLY" + index + "").show(); -- Gitblit v1.9.1