CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx
@@ -1083,7 +1083,7 @@
                    $("select[name='PSF_OpenSpecifications'][value_selspec='" + value_SelWaerId + "']").change();
                    $("select[name='PSF_OpenSpecifications'][value_selspec='" + value_SelWaerId + "']").show();
                    if ($("#spanOrderPrintDemand").html() != "") {
                    if ($("#spanOrderPrintDemand").html() != "" && $("#spanOrderPrintDemand").html().indexOf("table") < 0) {
                        var sss = $("#spanOrderPrintDemand").html().split(';');
                        if (sss != null) {
@@ -1207,6 +1207,60 @@
                    $("tr[name='PSF_PrintedPaperTdtrtr'][value_selspec='" + value_SelWaerId + "']").hide();
                    $("select[name='PSF_Typesettinghide'][value_ppwaerid='" + value_SelWaerId + "']").hide();
                }
                if ($(this).val().indexOf('轮转') >= 0) {
                    var selectElement =  $("select[name='PSF_Typesetting'][value_ppwaerid='" + value_SelWaerId + "']");
                    // 清空现有的option
                    selectElement.empty();
                    const newOptions = [
                        { value: '扣版', text: '扣版' },
                        { value: '单面', text: '单面' }
                    ];
                    // 3. 批量新增option到select中
                    let optionHtml = '';
                    newOptions.forEach(item => {
                        // 拼接option标签,直接赋值即可
                        optionHtml += `<option value="${item.value}">${item.text}</option>`;
                    });
                    selectElement.html(optionHtml); // 赋值到select,完成新增
                }
                else {
                    var selectElement = $("select[name='PSF_Typesetting'][value_ppwaerid='" + value_SelWaerId + "']")
                    // 清空现有的option
                    selectElement.empty();
                    const newOptions = [
                        { value: '自翻', text: '自翻' },
                        { value: '滚翻', text: '滚翻' },
                        { value: '扣版', text: '扣版' },
                        { value: '单面', text: '单面' }
                    ];
                    // 3. 批量新增option到select中
                    let optionHtml = '';
                    newOptions.forEach(item => {
                        // 拼接option标签,直接赋值即可
                        optionHtml += `<option value="${item.value}">${item.text}</option>`;
                    });
                    selectElement.html(optionHtml); // 赋值到select,完成新增
                }
                  
              });
@@ -1495,6 +1549,62 @@
                        $("select[name='PSF_Typesettinghide'][value_ppwaerid='" + value_SelWaerId + "']").hide();
                    }
                    if ($(this).val().indexOf('轮转') >= 0) {
                        var selectElement = $("select[name='PSF_Typesetting'][value_ppwaerid='" + value_SelWaerId + "']");
                        var sssssss = selectElement.val();
                        // 清空现有的option
                        selectElement.empty();
                        const newOptions = [
                            { value: '扣版', text: '扣版' },
                            { value: '单面', text: '单面' }
                        ];
                        // 3. 批量新增option到select中
                        let optionHtml = '';
                        newOptions.forEach(item => {
                            // 拼接option标签,直接赋值即可
                            optionHtml += `<option value="${item.value}">${item.text}</option>`;
                        });
                        selectElement.html(optionHtml); // 赋值到select,完成新增
                        selectElement.val(sssssss);
                    }
                    else {
                        var selectElement = $("select[name='PSF_Typesetting'][value_ppwaerid='" + value_SelWaerId + "']")
                        var sssssss =  selectElement.val();
                        // 清空现有的option
                        selectElement.empty();
                        const newOptions = [
                            { value: '自翻', text: '自翻' },
                            { value: '滚翻', text: '滚翻' },
                            { value: '扣版', text: '扣版' },
                            { value: '单面', text: '单面' }
                        ];
                        // 3. 批量新增option到select中
                        let optionHtml = '';
                        newOptions.forEach(item => {
                            // 拼接option标签,直接赋值即可
                            optionHtml += `<option value="${item.value}">${item.text}</option>`;
                        });
                        selectElement.html(optionHtml); // 赋值到select,完成新增
                        selectElement.val(sssssss);
                    }
                 } 
             });