25个文件已修改
479 ■■■■ 已修改文件
CY_ECommercePlatform/CY.BLL/EC/EC_OrderBasicBLL.cs 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.IDAL/EC/IEC_OrderBasicDAL.cs 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.Model/Inquiry/InquiryCommonModel.cs 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.Model/Inquiry/InquiryInsideModel.cs 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.Model/OA/OA_WorkPlan.cs 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.SQLDAL/EC/EC_OrderBasicDAL.cs 25 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/business/AgOutsourcSingleAllList.aspx 12 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/business/AgOutsourcSingleAllList.aspx.cs 61 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx 20 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx.cs 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/business/OrderEdit.aspx 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/front/BlackAndWhite.aspx 34 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/front/Book.aspx 30 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/front/InquiryOnLine.aspx.cs 138 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/front/PictureAlbumNew.aspx 30 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/front/ReceiptDocument.aspx 18 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/work/BaoxiaoFukuanList.aspx 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/work/BaoxiaoReplyAdd.aspx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/work/BaoxiaoReplyList.aspx 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/work/MyBaoxiaoAdd.aspx 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/work/MyBaoxiaoDetail.aspx 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/Pages/work/MyBaoxiaoList.aspx 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/js/Inquiry/Inquiry.js 27 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.WebForm/js/business/Order.js 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
CY_ECommercePlatform/CY.BLL/EC/EC_OrderBasicBLL.cs
@@ -546,6 +546,18 @@
            return _eC_OrderBasicDAL.DeleteOutOrder(OrderId);
        }
        /// <summary>
        /// 删除外协订单
        /// </summary>
        /// <param name="OrderId"></param>
        /// <returns></returns>
        public bool UpdateOldOrderSurplusPrintNum(int outOrderId)
        {
            return _eC_OrderBasicDAL.UpdateOldOrderSurplusPrintNum(outOrderId);
        }
        /// <summary>
        /// 根据新增订单操作,并修改订单状态
        /// </summary>
CY_ECommercePlatform/CY.IDAL/EC/IEC_OrderBasicDAL.cs
@@ -376,6 +376,13 @@
        bool DeleteOutOrder(int OrderId);
        /// <summary>
        /// 修改原订单数量
        /// </summary>
        /// <param name="OrderId"></param>
        /// <returns></returns>
        bool UpdateOldOrderSurplusPrintNum(int outOrderId);
        /// <summary>
        /// 统计订单金额
        /// </summary>
        /// <param name="pagination">分页对象</param>
CY_ECommercePlatform/CY.Model/Inquiry/InquiryCommonModel.cs
@@ -49,6 +49,11 @@
        public int PaperId { get; set; }
        /// <summary>
        /// 纸张Id
        /// </summary>
        public string Qitazhi { get; set; }
        /// <summary>
        /// 克重
        /// </summary>
        public int GramWeight { get; set; }
@@ -307,6 +312,11 @@
        public string JTWZ { get; set; }
        /// <summary>
        /// 封面印刷要求
        /// </summary>
        public string jtWZFM { get; set; }
        /// <summary>
        /// 封面类型
        /// </summary>
        public string FrontType { get; set; }
CY_ECommercePlatform/CY.Model/Inquiry/InquiryInsideModel.cs
@@ -29,6 +29,11 @@
        public int GramWeight { get; set; }
        /// <summary>
        /// 内页克重
        /// </summary>
        public string Qitazhi { get; set; }
        /// <summary>
        /// 品牌Id
        /// </summary>
        public int BrandId { get; set; }
CY_ECommercePlatform/CY.Model/OA/OA_WorkPlan.cs
@@ -57,7 +57,7 @@
                    }
                    else if (HoubufapiaoStatus == 2)
                    {
                        return "候补发票";
                        return "后补发票";
                    }
                    else if (HoubufapiaoStatus == 3)
                    {
@@ -81,15 +81,15 @@
                {
                    if (EvaluationStatus == 1)
                    {
                        return "已付款";
                        return "已报销";
                    }
                    else if (EvaluationStatus == 2)
                    {
                        return "未付款";
                        return "未报销";
                    }
                    
                    else
                        return "未付款";
                        return "未报销";
                }
                else
                {
CY_ECommercePlatform/CY.SQLDAL/EC/EC_OrderBasicDAL.cs
@@ -293,6 +293,31 @@
        }
        /// <summary>
        /// 删除外协订单
        /// </summary>
        /// <param name="OrderId"></param>
        /// <returns></returns>
        public bool UpdateOldOrderSurplusPrintNum(int OrderId)
        {
            IList<SqlParameter> sqlParms = new List<SqlParameter>()
            {
                new SqlParameter("@Keyid",OrderId)
            };
            string sql = " Update [EC_OrderExtend] Set [SurplusPrintNum]=[PrintNum]   where [Keyid] = (select [OrderId] from [OA_OrderWorkListRelation] where [RelationTargetId] = @Keyid and [RelationTypeId]=4 )  ;Update [EC_OrderBasic] Set [OrderState]=2   where [Keyid] = (select [OrderId] from [OA_OrderWorkListRelation] where [RelationTargetId] = @Keyid and [RelationTypeId]=4 )   ";
            try
            {
                _dataBase.ExecuteSql(sql, sqlParms.ToArray<SqlParameter>());
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return true;
        }
        /// <summary>
        /// 分页查询
        /// </summary>
        /// <param name="query">查询对象</param>
CY_ECommercePlatform/CY.WebForm/Pages/business/AgOutsourcSingleAllList.aspx
@@ -24,6 +24,15 @@
            });
        }
        //删除
        function onChexiao(keyid) {
            top.Dialog.confirm("确定要撤销该外协订单吗?", function () {
                window.location = "/Pages/business/AgOutsourcSingleAllList.aspx?chexiao=" + keyid;
            });
        }
        $(function () {
            $(".UnRecive").each(function (ii, vv) {
                $(vv).remove();
@@ -211,7 +220,7 @@
                        <th class='w40px' style="text-align: center;">
                            送货
                        </th>
                        <th class='w80px'>
                        <th class='w120px'>
                            操作
                        </th>
                    </tr>
@@ -271,6 +280,7 @@
                                </td>
                                <td>
                                        <span menu_member_case_id="case_outAfterOrder" menu_member_case_name="修改" class="a_under <%#Eval("OrderState").ToString() == "1"?"":"UnRecive" %>" onclick='outAfterOrder(<%#Eval("Keyid") %>,<%#Eval("OldOrderId") %>)'>修改</span>&nbsp; 
                                    <span menu_member_case_id="case_chexiaoOrder" menu_member_case_name="撤销" class="a_under <%#Eval("OrderState").ToString() == "1"?"":"UnRecive" %>" onclick='onChexiao(<%#Eval("Keyid") %>)'>撤销</span>&nbsp;
                                        <span menu_member_case_id="case_deleteOrder" menu_member_case_name="删除" class="a_under <%#Eval("OrderState").ToString() == "1"?"":"UnRecive" %>" onclick='onDelete(<%#Eval("Keyid") %>)'>删除</span>
                                </td>
                            </tr>
CY_ECommercePlatform/CY.WebForm/Pages/business/AgOutsourcSingleAllList.aspx.cs
@@ -9,6 +9,7 @@
using CY.Model;
using CY.BLL.EC;
using CY.Infrastructure.Query;
using System.Transactions;
namespace CY.WebForm.Pages.business
{
@@ -35,12 +36,66 @@
                if (_eC_OrderBasic.BuyerId == CurrentUser.MemberId)
                {
                    if (bll_EC_OrderBasicBLL.DeleteOutOrder(Request["delete"].ToInt32().Value))
                        Response.Redirect("/Pages/business/AgOutsourcSingleAllList.aspx");
                        JavaScript.MessageBox("删除成功", this, "window.location='/Pages/business/AgOutsourcSingleAllList.aspx'");
                    else
                        Response.Redirect("/Pages/business/AgOutsourcSingleAllList.aspx");
                        JavaScript.MessageBox("删除失败", this);
                }
                else
                    Response.Redirect("/Pages/business/AgOutsourcSingleAllList.aspx");
                    JavaScript.MessageBox("删除失败", this);
            }
            if (!string.IsNullOrEmpty(Request["chexiao"]))
            {
                EC_OrderBasic _eC_OrderBasic = bll_EC_OrderBasicBLL.SelectModelById(Request["chexiao"].ToInt32().Value);
                if(_eC_OrderBasic.SellerName != "其他")
                {
                    JavaScript.MessageBox("已经确认供应商不能撤单!", this);
                }
                if (_eC_OrderBasic.BuyerId == CurrentUser.MemberId)
                {
                    var res = false;
                    using (TransactionScope scope = new TransactionScope(TransactionScopeOption.Required,
  new TransactionOptions
  {
      IsolationLevel = System.Transactions.IsolationLevel.ReadCommitted,
      Timeout = TransactionManager.MaximumTimeout
  }
  )
           )
                    {
                        try
                        {
                            res = bll_EC_OrderBasicBLL.UpdateOldOrderSurplusPrintNum(Request["chexiao"].ToInt32().Value);
                            res = bll_EC_OrderBasicBLL.DeleteOutOrder(Request["chexiao"].ToInt32().Value);
                            scope.Complete();
                        }
                        catch (Exception ex)
                        {
                            PAGEHandleException(ex);
                            JavaScript.MessageBox("撤单成功", this);
                        }
                        finally
                        {
                            // 释放资源
                            scope.Dispose();
                        }
                    }
                    if (res)
                    {
                        JavaScript.MessageBox("撤单成功", this, "window.location='/Pages/business/AgOutsourcSingleAllList.aspx'");
                    }
                    else
                    {
                        JavaScript.MessageBox("撤单失败", this);
                    }
                }
                else
                    JavaScript.MessageBox("撤单失败", this);
            }
            UCPager1.AspNetPager.PageChanged += AspNetPager1_PageChanged;
CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderDetail.aspx
@@ -350,10 +350,10 @@
                                </tr>
                                <tr class=" price_tabbg" style="font-weight: bold; background-color: #E6E6E6;">
                                    <td>
                                        版材类型
                                        <span  style="<%#Eval("shifouxianshi")%>" >版材类型</span>
                                    </td>
                                    <td colspan="2">
                                        规格
                                         <span  style="<%#Eval("shifouxianshi")%>" >  规格</span>
                                    </td>
                                    <td id="lbCTPCount" <%#show("CTPCount",Eval("PSF_PlateSource").ToString())%>>
                                       <span  style="<%#Eval("shifouxianshi")%>" > CTP数量(张) </span>
@@ -369,10 +369,10 @@
                                    <tr>
                                        <tr style="background-color: #FFFFFF;">
                                            <td>
                                                <%#Eval("PSF_PlateSource")%>
                                               <span  style="<%#Eval("shifouxianshi")%>" > <%#Eval("PSF_PlateSource")%> </span>
                                            </td>
                                            <td colspan="2">
                                                <%#Eval("PSF_CTPSpecType")%>
                                                <span  style="<%#Eval("shifouxianshi")%>" > <%#Eval("PSF_CTPSpecType")%> </span>
                                            </td>
                                            <td id="tdCTPCount" <%#show("CTPCount",Eval("PSF_PlateSource").ToString())%>>
                                              <span  style="<%#Eval("shifouxianshi")%>" >   <%#0.Equals(Eval("PSF_CTPCount")) ? "" : Eval("PSF_CTPCount")%> </span>
CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx
@@ -369,7 +369,7 @@
                                <td style="display:none;">
                                    版材类型
                                </td>
                                <td colspan="2">
                                <td colspan="2"  class="lb lbCTPCount" value_ppwaerid='<%#Container.ItemIndex + 1%>' >
                                    规格
                                </td>
                                <td id="lbCTPCount" value_ppwaerid='<%#Container.ItemIndex + 1%>' class="lb lbCTPCount" colspan="3">
@@ -395,7 +395,7 @@
                                    <label class="Btnb CangKubtn_o" style="margin-left: 10px;">
                                        <input type="button" value_waerid="<%#Container.ItemIndex + 1%>" class="Btn FromWarehouseByBanCai" value="连接仓库" id="BtnStorePlate" /></label><input type="hidden" value_ppwaerid="<%#Container.ItemIndex + 1%>" name="PSF_PaperId2" />
                                </td>
                                <td colspan="2" >
                                <td colspan="2"  class="lb lbCTPCount" value_ppwaerid='<%#Container.ItemIndex + 1%>' >
                                      <div class="xialapp" style="margin-left:32%;">
                                    <input type="text" value_ppwaerid="<%#Container.ItemIndex + 1%>" class="txt CTPSpecName " name="CTPSpecName" id="PlateSpec" value="<%#Eval("PSF_CTPSpecType")%>" />
                                          <div class="xialapbp" >
@@ -1002,13 +1002,13 @@
                                    if (ssssaaa.indexOf('×') >= 0) {
                                        var dfdfdf = ssssaaa.split('×');
                                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[0]);
                                        $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[1]);
                                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[0].replace("mm",""));
                                        $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[1].replace("mm", ""));
                                    } else if (ssssaaa.indexOf('*') >= 0) {
                                        var dfdfdf = ssssaaa.split('*');
                                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[0]);
                                        $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[1]);
                                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[0].replace("mm", ""));
                                        $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[1].replace("mm", ""));
                                    }
@@ -1018,15 +1018,15 @@
                                        var sfdsdfdf = sss[i].split(',');
                                        var dfdfdf = sfdsdfdf[0].split('×');
                                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[0]);
                                        $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[1]);
                                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[0].replace("mm", ""));
                                        $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[1].replace("mm", ""));
                                    } else if (sss[i].indexOf('*') >= 0) {
                                        var sfdsdfdf = sss[i].split(',');
                                        var dfdfdf = sfdsdfdf[0].split('*');
                                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[0]);
                                        $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[1]);
                                        $("input[name='PSF_OpenWidth'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[0].replace("mm", ""));
                                        $("input[name='PSF_OpenLength'][value_ppwaerid='" + value_SelWaerId + "']").val(dfdfdf[1].replace("mm", ""));
                                    } 
                                }
                               
CY_ECommercePlatform/CY.WebForm/Pages/business/AgSpecialOrderEdit.aspx.cs
@@ -236,8 +236,10 @@
            {
                m_EC_SpecialForumsList = new List<EC_SpecialForums>();
                EC_SpecialForums m_EC_SpecialForums = new EC_SpecialForums();
                //m_EC_SpecialForums.PSF_Note = _inquiryCommonModel.AfterWorksDemand;
                m_EC_SpecialForums.PSF_Forumsid = 1;
                m_EC_SpecialForumsList.Add(m_EC_SpecialForums);
                this.txtPSO_Work.InnerText = _inquiryCommonModel.AfterWorksDemand;
            }
            this.RepClientList.DataSource = m_EC_SpecialForumsList;
            this.RepClientList.DataBind();
CY_ECommercePlatform/CY.WebForm/Pages/business/OrderEdit.aspx
@@ -9,8 +9,8 @@
    <link rel="stylesheet" type="text/css" href="../../Styles/base.css" />
    <link href="../../Styles/changes.css" rel="stylesheet" type="text/css" />
    <link href="../../Styles/ParticularWQJ.css" rel="stylesheet" type="text/css" />
    <script src="../../js/Inquiry/Inquiry.js?v=130" type="text/javascript"></script>
    <script src="../../js/business/Order.js?v=38" type="text/javascript"></script>
    <script src="../../js/Inquiry/Inquiry.js?v=153" type="text/javascript"></script>
    <script src="../../js/business/Order.js?v=43" type="text/javascript"></script>
    <!--前台页面end-->
    <script type="text/javascript" language="javascript">
@@ -343,7 +343,7 @@
        <div id="divInquiry"  style=' display: block;width:1010px;'  >
        </div>
         <br />
          <table class="table2 table2Left"  align="left" style=" width:1000px;">
          <table class="table2 table2Left" id="Duiyinghetongbianhao"  align="left" style=" width:1000px;">
               <tr   style=" height:11px;">
                     <td    style="width:100px;text-align:right;">
                         对应合同序号:
CY_ECommercePlatform/CY.WebForm/Pages/front/BlackAndWhite.aspx
@@ -137,11 +137,35 @@
                </th>
            </tr>
            <tr>
                <td align="left" style="padding-left: 40px;"><input type="checkbox" name="works" value="24" />&nbsp;套号</td>
                <td align="left"><input type="checkbox" name="works" value="4" />&nbsp;压痕</td>
                <td align="left"><input type="checkbox" name="works" value="6" />&nbsp;打点线</td>
                 <td align="left"><div style="float:left"><input type="checkbox" id="worksjiaozuo"  name="works" value="99" onclick="SelectFuc(this)" index="0"/>&nbsp;胶左</div><div style="float:left; display:none" id="divJTT0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;每本张数:<input type="text" name="pNameMP" style="width:60px" class="validateInt" defaultValue="1" value="1"/>张/本</div></td>
                <td align="left"><div style="float:left"><input type="checkbox" id="worksjiaotou"  name="works" value="13" onclick="SelectFuc(this)" index="0"/>&nbsp;胶头</div><div style="float:left; display:none" id="divJT0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;每本张数:<input type="text" name="pageNum" style="width:60px" class="validateInt" defaultValue="1" value="1"/>张/本</div></td>
                <td align="left" style="padding-left: 40px;width:80px;" ><input type="checkbox" name="works" value="24" />&nbsp;套号</td>
                <td align="left" style="width:80px;" ><input type="checkbox" name="works" value="4" />&nbsp;压痕</td>
                <td align="left" style="width:80px;" ><input type="checkbox" name="works" value="6" />&nbsp;打点线</td>
               <%--  <td align="left"><div style="float:left"><input type="checkbox" id="worksjiaozuo"  name="works" value="99" onclick="SelectFuc(this)" index="0"/>&nbsp;胶左</div><div style="float:left; display:none" id="divJTT0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;每本张数:<input type="text" name="pNameMP" style="width:60px" class="validateInt" defaultValue="1" value="1"/>张/本</div></td>
                <td align="left"><div style="float:left"><input type="checkbox" id="worksjiaotou"  name="works" value="13" onclick="SelectFuc(this)" index="0"/>&nbsp;胶头</div><div style="float:left; display:none" id="divJT0">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;每本张数:<input type="text" name="pageNum" style="width:60px" class="validateInt" defaultValue="1" value="1"/>张/本</div></td>--%>
                 <td align="left" style="width:150px;" > 装订:<select name='jtWZ'   onchange="SelectjtWZ();"  >
                             <option value="胶头">胶头</option>
                             <option value="胶左">胶左</option>
                     <option value="封面80克牛皮纸">封面80克牛皮纸</option>
                     <option value="封面100克牛皮纸">封面100克牛皮纸</option>
                     <option value="封面120克牛皮纸">封面120克牛皮纸</option>
                     <option value="封面兰皮文">封面兰皮文</option>
                     <option value="封面白皮文">封面白皮文</option>
                     <option value="封面黄皮文">封面黄皮文</option>
                     <option value="封面红皮文">封面红皮文</option>
                     <option value="封面200克牛皮纸">封面200克牛皮纸</option>
                     <option value="封面230克牛皮纸">封面230克牛皮纸</option>
                     <option value="散页">散页</option>
                     <option value="其他">其他</option>
                        </select></td>
                 <td align="left" style="display:none;width:150px;"  id="jtWZFMyaoqiu"> 封面印刷要求:<select name='jtWZFM'>
                             <option value="单面黑色">单面黑色</option>
                             <option value="单面彩色">单面彩色</option>
                     <option value="双面黑色">双面黑色</option>
                     <option value="正彩背黑">正彩背黑</option>
                     <option value="不印刷">不印刷</option>
                     <option value="其他">其他</option>
                        </select></td>
                <td align="left" style="width:150px;" > 每本张数:<input type="text" name="pageNum" style="width:60px" class="validateInt" defaultValue="1" value="1"/>张/本  </td>
            </tr>
        </tbody>
    </table>
CY_ECommercePlatform/CY.WebForm/Pages/front/Book.aspx
@@ -64,6 +64,7 @@
        <td>印刷纸张</td>
        <td class="Brand0">品牌</td>
        <td class="gramWeight0">纸张克重</td>
         <td class="Qitazhi0">纸张</td>
        <td class="singleOrdouble">单双面</td>
        <td>印刷颜色</td>
        <td>页码</td>
@@ -81,6 +82,7 @@
                        <%
                            }
                        %>
                   <option value="-1">其他</option>
             </select>
        </td>
        <td class="Brand0"><select class="selectLaber" id="brand0" name="brand0">
@@ -89,6 +91,9 @@
        <td class="gramWeight0">
             <select class="selectLaber" id="gramWeight0" name="gramWeight0">
             </select>
        </td>
        <td class="Qitazhi0" style="display:none;">
             <input id="Qitazhi0" name="Qitazhi0" type="text"  />
        </td>
        <td class="singleOrdouble">
           <select class="selectLaber" name="singleOrdouble0">
@@ -203,6 +208,7 @@
            <td>印刷纸张</td>
            <td class="Brand1">品牌</td>
            <td class="gramWeight1">纸张克重</td>
              <td class="Qitazhi1">纸张</td>
            <td>印刷颜色</td>
            <td><span class="zhang1">页码</span></td>
        </tr>
@@ -219,6 +225,7 @@
                        <%
                            }
                        %>
                     <option value="-1">其他</option>
             </select>
            </td>
            <td class="Brand1"><select class="selectLaber" id="brand1" name="brand1">
@@ -228,6 +235,9 @@
                 <select class="selectLaber" id="gramWeight1" name="gramWeight1">
                 </select>
            </td>
              <td class="Qitazhi1" style="display:none;">
             <input id="Qitazhi1" name="Qitazhi1" type="text"  />
        </td>
            <td>
                 <select name="printColor1" >
                    <option value="四色印刷">四色印刷</option>
@@ -310,6 +320,7 @@
            <td>印刷纸张</td>
            <td class="Brand2">品牌</td>
            <td class="gramWeight2">纸张克重</td>
             <td class="Qitazhi2">纸张</td>
            <td>印刷颜色</td>
            <td><span class="zhang2">页码</span></td>
        </tr>
@@ -326,6 +337,7 @@
                        <%
                            }
                        %>
                     <option value="-1">其他</option>
             </select>
            </td>
            <td class="Brand2">
@@ -336,6 +348,9 @@
                 <select class="selectLaber" id="gramWeight2" name="gramWeight2">
                 </select>
            </td>
              <td class="Qitazhi2" style="display:none;">
             <input id="Qitazhi2" name="Qitazhi2" type="text"  />
        </td>
            <td>
                 <select name="printColor2" >
                    <option value="四色印刷">四色印刷</option>
@@ -417,6 +432,7 @@
            <td>印刷纸张</td>
            <td class="Brand3">品牌</td>
            <td class="gramWeight3">纸张克重</td>
             <td class="Qitazhi3">纸张</td>
            <td>印刷颜色</td>
            <td><span class="zhang3">页码</span></td>
        </tr>
@@ -433,6 +449,7 @@
                        <%
                            }
                        %>
                     <option value="-1">其他</option>
             </select>
            </td>
             <td class="Brand3"><select class="selectLaber" id="brand3" name="brand3">
@@ -442,6 +459,9 @@
                 <select class="selectLaber" id="gramWeight3" name="gramWeight3">
                 </select>
            </td>
             <td class="Qitazhi3" style="display:none;">
             <input id="Qitazhi3" name="Qitazhi3" type="text"  />
        </td>
            <td>
                 <select name="printColor3" >
                    <option value="四色印刷">四色印刷</option>
@@ -523,6 +543,7 @@
            <td>印刷纸张</td>
            <td class="Brand4">品牌</td>
            <td class="gramWeight4">纸张克重</td>
            <td class="Qitazhi4">纸张</td>
            <td>印刷颜色</td>
            <td><span class="zhang4">页码</span></td>
        </tr>
@@ -539,6 +560,7 @@
                        <%
                            }
                        %>
                      <option value="-1">其他</option>
             </select>
            </td>
            <td class="Brand4"><select class="selectLaber" id="brand4" name="brand4">
@@ -548,6 +570,9 @@
                 <select class="selectLaber" id="gramWeight4" name="gramWeight4">
                 </select>
            </td>
             <td class="Qitazhi4" style="display:none;">
             <input id="Qitazhi4" name="Qitazhi4" type="text"  />
        </td>
            <td>
                 <select name="printColor4" >
                    <option value="四色印刷">四色印刷</option>
@@ -629,6 +654,7 @@
            <td>印刷纸张</td>
            <td class="Brand5">品牌</td>
            <td class="gramWeight5">纸张克重</td>
            <td class="Qitazhi5">纸张</td>
            <td>印刷颜色</td>
            <td><span class="zhang5">页码</span></td>
        </tr>
@@ -645,6 +671,7 @@
                        <%
                            }
                        %>
                     <option value="-1">其他</option>
             </select>
            </td>
             <td class="Brand5"><select class="selectLaber" id="brand5" name="brand5">
@@ -654,6 +681,9 @@
                 <select class="selectLaber" id="gramWeight5" name="gramWeight5">
                 </select>
            </td>
             <td class="Qitazhi5" style="display:none;">
             <input id="Qitazhi5" name="Qitazhi5" type="text"  />
        </td>
            <td>
                 <select name="printColor5" >
                    <option value="四色印刷">四色印刷</option>
CY_ECommercePlatform/CY.WebForm/Pages/front/InquiryOnLine.aspx.cs
@@ -102,6 +102,7 @@
                string works = string.Empty;
                int printMode = 1;
                int gramWeight = -1;
                string Qitazhi = string.Empty;
                int brandId = -1;
                int printCount = -1;
                string singleOrdouble = string.Empty;
@@ -153,11 +154,16 @@
                {
                    paperId = 3;
                }
                if (request["Qitazhi0"] != null)
                {
                    Qitazhi = request["Qitazhi0"];
                }
                if (request["gramWeight0"] != null)
                    gramWeight = request["gramWeight0"].ToString().ToInt32().Value;
                    gramWeight = request["gramWeight0"].ToInt32().HasValue? request["gramWeight0"].ToInt32().Value:0;
                if (request["brand0"] != null)
                {
                    brandId = request["brand0"].ToString().ToInt32().Value;
                    brandId = request["brand0"].ToInt32().HasValue ?request["brand0"].ToString().ToInt32().Value : 0;
                }
                if (request["printCount"] != null)
                    printCount = request["printCount"].ToString().ToInt32().Value;
@@ -239,6 +245,7 @@
                model.PaperId = paperId;
                model.GramWeight = gramWeight;
                model.BrandId = brandId;
                model.Qitazhi = Qitazhi;
                model.PrintCount = printCount;
                model.Unit = ysuint;
                model.SingleOrdouble = singleOrdouble;
@@ -352,9 +359,9 @@
                        insideModel.PaperId = 3;
                        insideModel.PrintColor = "四色印刷";
                        if (request["pageNum1"] != null)
                            insideModel.PageNum = request["pageNum1"].ToString().ToInt32().Value;
                            insideModel.PageNum = request["pageNum1"].ToInt32().HasValue ? request["pageNum1"].ToString().ToInt32().Value : 0;
                        if (request["gramWeight1"] != null)
                            insideModel.GramWeight = request["gramWeight1"].ToString().ToInt32().Value;
                            insideModel.GramWeight = request["gramWeight1"].ToInt32().HasValue? request["gramWeight1"].ToString().ToInt32().Value:0;
                        model.InquiryInsideList.Add(insideModel);
                        printDemand += paperSize.Name + ",骑马订";
                        printDemand += ",封面要求:铜版纸," + model.GramWeight + "克," + model.PrintColor + ",4页";
@@ -401,13 +408,15 @@
                                insideModel.PaperId = request["paper" + i].ToString().ToInt32().Value;
                            }
                            if (request["brand" + i] != null)
                                insideModel.BrandId = request["brand" + i].ToString().ToInt32().Value;
                                insideModel.BrandId = request["brand" + i].ToInt32().HasValue ? request["brand" + i].ToString().ToInt32().Value:0;
                            if (request["gramWeight" + i] != null)
                                insideModel.GramWeight = request["gramWeight" + i].ToString().ToInt32().Value;
                                insideModel.GramWeight = request["gramWeight" + i].ToInt32().HasValue ? request["gramWeight" + i].ToString().ToInt32().Value:0;
                            if (request["Qitazhi" + i] != null)
                                insideModel.Qitazhi = request["Qitazhi" + i];
                            if (request["printColor" + i] != null)
                                insideModel.PrintColor = request["printColor" + i].ToString();
                            if (request["pageNum" + i] != null)
                                insideModel.PageNum = request["pageNum" + i].ToString().ToInt32().Value;
                                insideModel.PageNum = request["pageNum" + i].ToInt32().HasValue? request["pageNum" + i].ToInt32().Value:0;
                            if (request["works" + i] != null)
                                works = request["works" + i].ToString();
                            if (!string.IsNullOrEmpty(works))
@@ -437,14 +446,25 @@
                                insideModel.GildingType = request["gildingType" + i].ToString();
                            model.InquiryInsideList.Add(insideModel);
                        }
                        PaperInfoBLL _paperInfoBLL = new PaperInfoBLL();
                        SysInquiry_PaperInfo paperInfo = _paperInfoBLL.GetPaperModel(model.PaperId);
                        AfterParameterInfoBLL _afterParameterInfoBLL = new AfterParameterInfoBLL();
                        SysInquiry_AfterParameterInfo bindingModeObj = _afterParameterInfoBLL.GetModel(model.BindingMode);
                        printDemand += model.PrintSizeName + "," + bindingModeObj.ParameterName;
                        printDemand += ",封面要求:" + paperInfo.PaperName + "";
                        PaperInfoBLL _paperInfoBLL = new PaperInfoBLL();
                        SysInquiry_PaperInfo paperInfo = null;
                        if (model.PaperId >= 0)
                        {
                            paperInfo = _paperInfoBLL.GetPaperModel(model.PaperId);
                            printDemand += ",封面要求:" + paperInfo.PaperName + "";
                        }
                        else
                        {
                            printDemand += ",封面要求:" + model.Qitazhi + "";
                        }
                        BrandInfoBLL _brandInfoBLL = new BrandInfoBLL();
                        if (model.PaperId != 0)
                        if (model.PaperId > 0)
                        {
                            SysInquiry_BrandInfo brandInfo = _brandInfoBLL.SelectModelByKey(model.BrandId);
                            printDemand += "(" + brandInfo.BrandName + ")";
@@ -455,16 +475,24 @@
                        foreach (InquiryInsideModel insideModelObj in model.InquiryInsideList)
                        {
                            printDemand += "内页" + insideModelObj.InsideIndex.ToString() + ":";
                            paperInfo = _paperInfoBLL.GetPaperModel(insideModelObj.PaperId);
                            printDemand += paperInfo.PaperName;
                            if (insideModelObj.PaperId != 0)
                            if(insideModelObj.PaperId >= 0)
                            {
                                paperInfo = _paperInfoBLL.GetPaperModel(insideModelObj.PaperId);
                                printDemand += paperInfo.PaperName;
                            }
                            else
                            {
                                printDemand += insideModelObj.Qitazhi;
                            }
                            if (insideModelObj.PaperId > 0)
                            {
                                SysInquiry_BrandInfo brandInfo = _brandInfoBLL.SelectModelByKey(insideModelObj.BrandId);
                                printDemand += "(" + brandInfo.BrandName + ")";
                                printDemand += "," + insideModelObj.GramWeight + "克";
                            }
                            printDemand += "," + insideModelObj.PrintColor + "," + insideModelObj.PageNum.ToString();
                            if (paperInfo.PaperName == "硫酸纸")
                            if (insideModelObj.PaperId >= 0 && paperInfo.PaperName == "硫酸纸")
                            {
                                printDemand += "张";
                            }
@@ -527,13 +555,15 @@
                            insideModel.PaperId = request["paper" + i].ToString().ToInt32().Value;
                        }
                        if (request["brand" + i] != null)
                            insideModel.BrandId = request["brand" + i].ToString().ToInt32().Value;
                            insideModel.BrandId = request["brand" + i].ToInt32().HasValue ? request["brand" + i].ToString().ToInt32().Value:0;
                        if (request["gramWeight" + i] != null)
                            insideModel.GramWeight = request["gramWeight" + i].ToString().ToInt32().Value;
                            insideModel.GramWeight = request["gramWeight" + i].ToInt32().HasValue? request["gramWeight" + i].ToString().ToInt32().Value:0;
                        if (request["Qitazhi" + i] != null)
                            insideModel.Qitazhi = request["Qitazhi" + i];
                        if (request["printColor" + i] != null)
                            insideModel.PrintColor = request["printColor" + i].ToString();
                        if (request["pageNum" + i] != null)
                            insideModel.PageNum = request["pageNum" + i].ToString().ToInt32().Value;
                            insideModel.PageNum = request["pageNum" + i].ToInt32().HasValue ? request["pageNum" + i].ToString().ToInt32().Value:0;
                        if (request["works" + i] != null)
                            works = request["works" + i].ToString();
                        if (!string.IsNullOrEmpty(works))
@@ -564,13 +594,21 @@
                        model.InquiryInsideList.Add(insideModel);
                    }
                    PaperInfoBLL _paperInfoBLL = new PaperInfoBLL();
                    SysInquiry_PaperInfo paperInfo = _paperInfoBLL.GetPaperModel(model.PaperId);
                    SysInquiry_PaperInfo paperInfo = null;
                    AfterParameterInfoBLL _afterParameterInfoBLL = new AfterParameterInfoBLL();
                    SysInquiry_AfterParameterInfo bindingModeObj = _afterParameterInfoBLL.GetModel(model.BindingMode);
                    printDemand += model.PrintSizeName + "," + bindingModeObj.ParameterName;
                    printDemand += ",封面要求:" + paperInfo.PaperName + "";
                    if(model.PaperId >= 0)
                    {
                        paperInfo = _paperInfoBLL.GetPaperModel(model.PaperId);
                        printDemand += ",封面要求:" + paperInfo.PaperName + "";
                    }
                    else
                    {
                        printDemand += ",封面要求:" + model.Qitazhi + "";
                    }
                    BrandInfoBLL _brandInfoBLL = new BrandInfoBLL();
                    if (model.PaperId != 0)
                    if (model.PaperId > 0)
                    {
                        SysInquiry_BrandInfo brandInfo = _brandInfoBLL.SelectModelByKey(model.BrandId);
                        printDemand += "(" + brandInfo.BrandName + ")";
@@ -581,16 +619,24 @@
                    foreach (InquiryInsideModel insideModelObj in model.InquiryInsideList)
                    {
                        printDemand += "内页" + insideModelObj.InsideIndex.ToString() + ":";
                        paperInfo = _paperInfoBLL.GetPaperModel(insideModelObj.PaperId);
                        printDemand += paperInfo.PaperName;
                        if (insideModelObj.PaperId != 0)
                        if (insideModelObj.PaperId >= 0)
                        {
                            paperInfo = _paperInfoBLL.GetPaperModel(insideModelObj.PaperId);
                            printDemand += paperInfo.PaperName;
                        }
                        else
                        {
                            printDemand += insideModelObj.Qitazhi;
                        }
                        if (insideModelObj.PaperId > 0)
                        {
                            SysInquiry_BrandInfo brandInfo = _brandInfoBLL.SelectModelByKey(insideModelObj.BrandId);
                            printDemand += "(" + brandInfo.BrandName + ")";
                            printDemand += "," + insideModelObj.GramWeight + "克";
                        }
                        printDemand += "," + insideModelObj.PrintColor + "," + insideModelObj.PageNum.ToString();
                        if (paperInfo.PaperName == "硫酸纸")
                        if (insideModelObj.PaperId >= 0 && paperInfo.PaperName == "硫酸纸")
                        {
                            printDemand += "张";
                        }
@@ -1630,6 +1676,10 @@
                        printDemand += "," + model.GramWeight + "克";
                    }
                    printDemand += "," + model.SingleOrdouble + "," + model.PrintColor;
                    if (request["jtWZ"] != null)
                        model.JTWZ = request["jtWZ"].ToString();
                    if (request["jtWZFM"] != null)
                        model.jtWZFM = request["jtWZFM"].ToString();
                }
                else if (model.PrintTypeId == 39) //公文纸
                {
@@ -1869,6 +1919,8 @@
                    }
                    if (request["jtWZ"] != null)
                        model.JTWZ = request["jtWZ"].ToString();
                    if (request["jtWZFM"] != null)
                        model.jtWZFM = request["jtWZFM"].ToString();
                    if (request["frontType"] != null)
                        model.FrontType = request["frontType"].ToString();
                    if (request["pDemand"] != null)
@@ -2159,11 +2211,11 @@
                                insideModel.PaperId = request["paper" + i].ToString().ToInt32().Value;
                            }
                            if (request["gramWeight" + i] != null)
                                insideModel.GramWeight = request["gramWeight" + i].ToString().ToInt32().Value;
                                insideModel.GramWeight = request["gramWeight" + i].ToInt32().HasValue? request["gramWeight" + i].ToString().ToInt32().Value:0;
                            if (request["printColor" + i] != null)
                                insideModel.PrintColor = request["printColor" + i].ToString();
                            if (request["pageNum" + i] != null)
                                insideModel.PageNum = request["pageNum" + i].ToString().ToInt32().Value;
                                insideModel.PageNum = request["pageNum" + i].ToInt32().HasValue ? request["pageNum" + i].ToString().ToInt32().Value : 0; ;
                            if (request["works" + i] != null)
                                works = request["works" + i].ToString();
                            if (!string.IsNullOrEmpty(works))
@@ -2460,8 +2512,13 @@
            {
                if (!string.IsNullOrEmpty(model.JTWZ))
                {
                    afterWorkStr = model.JTWZ  ;
                    afterWorkStr = "装订:" + model.JTWZ  ;
                    if (model.JTWZ != "胶头" && model.JTWZ != "胶左" && model.JTWZ != "其他")
                    {
                        afterWorkStr   += ",封面印刷要求:" + model.jtWZFM;
                    }
                }
                if(!string.IsNullOrEmpty(model.ThStart) || !string.IsNullOrEmpty(model.ThEnd))
                {
                    afterWorkStr += ",套号号段(" + model.ThStart + "-" + model.ThEnd + ")";
@@ -2469,6 +2526,31 @@
                } 
            }
            if (model.PrintTypeId == 29)
            {
                if (!string.IsNullOrEmpty(model.JTWZ))
                {
                    if (!string.IsNullOrEmpty(afterWorkStr))
                    {
                        afterWorkStr += ",";
                    }
                    afterWorkStr += "装订:" + model.JTWZ;
                    if (model.JTWZ != "胶头" && model.JTWZ != "胶左" && model.JTWZ != "其他" && model.JTWZ != "散页")
                    {
                        if (!string.IsNullOrEmpty(model.jtWZFM))
                            afterWorkStr += ",封面印刷要求:" + model.jtWZFM;
                    }
                    if ( model.PageNum > 0)
                        afterWorkStr += "(每本" + model.PageNum.ToString() + "张)";
                }
                //if (!string.IsNullOrEmpty(model.ThStart) || !string.IsNullOrEmpty(model.ThEnd))
                //{
                //    afterWorkStr += ",套号号段(" + model.ThStart + "-" + model.ThEnd + ")";
                //    //afterWorkStr += "," + model.JTWZ;
                //}
            }
            if (model.PrintTypeId == 25)
             {
                 
CY_ECommercePlatform/CY.WebForm/Pages/front/PictureAlbumNew.aspx
@@ -69,6 +69,7 @@
        <td>印刷纸张</td>
        <td class="Brand0">品牌</td>
        <td class="gramWeight0">纸张克重</td>
         <td class="Qitazhi0">纸张</td>
        <td class="singleOrdouble">单双面</td>
        <td>印刷颜色</td>
        <td>页码</td>
@@ -86,6 +87,7 @@
                        <%
                            }
                        %>
                  <option value="-1">其他</option>
             </select>
        </td>
        <td class="Brand0"><select class="selectLaber" id="brand0" name="brand0">
@@ -94,6 +96,9 @@
        <td class="gramWeight0">
             <select class="selectLaber" id="gramWeight0" name="gramWeight0">
             </select>
        </td>
         <td class="Qitazhi0" style="display:none;">
             <input id="Qitazhi0" name="Qitazhi0" type="text"  />
        </td>
        <td class="singleOrdouble">
           <select class="selectLaber" name="singleOrdouble0">
@@ -206,6 +211,7 @@
            <td>印刷纸张</td>
            <td class="Brand1">品牌</td>
            <td class="gramWeight1">纸张克重</td>
             <td class="Qitazhi1">纸张</td>
            <td>印刷颜色</td>
            <td><span class="zhang1">页码</span></td>
        </tr>
@@ -222,6 +228,7 @@
                        <%
                            }
                        %>
                       <option value="-1">其他</option>
             </select>
            </td>
            <td class="Brand1"><select class="selectLaber" id="brand1" name="brand1">
@@ -231,6 +238,9 @@
                 <select class="selectLaber" id="gramWeight1" name="gramWeight1">
                 </select>
            </td>
            <td class="Qitazhi1" style="display:none;">
             <input id="Qitazhi1" name="Qitazhi1" type="text"  />
        </td>
            <td>
                 <select name="printColor1" >
                    <option value="四色印刷">四色印刷</option>
@@ -311,6 +321,7 @@
            <td>印刷纸张</td>
            <td class="Brand2">品牌</td>
            <td class="gramWeight2">纸张克重</td>
            <td class="Qitazhi2">纸张</td>
            <td>印刷颜色</td>
            <td><span class="zhang2">页码</span></td>
        </tr>
@@ -327,6 +338,7 @@
                        <%
                            }
                        %>
                     <option value="-1">其他</option>
             </select>
            </td>
            <td class="Brand2">
@@ -337,6 +349,9 @@
                 <select class="selectLaber" id="gramWeight2" name="gramWeight2">
                 </select>
            </td>
             <td class="Qitazhi2" style="display:none;">
             <input id="Qitazhi2" name="Qitazhi2" type="text"  />
        </td>
            <td>
                 <select name="printColor2" >
                    <option value="四色印刷">四色印刷</option>
@@ -415,6 +430,7 @@
            <td>印刷纸张</td>
            <td class="Brand3">品牌</td>
            <td class="gramWeight3">纸张克重</td>
             <td class="Qitazhi3">纸张</td>
            <td>印刷颜色</td>
            <td><span class="zhang3">页码</span></td>
        </tr>
@@ -431,6 +447,7 @@
                        <%
                            }
                        %>
                     <option value="-1">其他</option>
             </select>
            </td>
             <td class="Brand3"><select class="selectLaber" id="brand3" name="brand3">
@@ -440,6 +457,9 @@
                 <select class="selectLaber" id="gramWeight3" name="gramWeight3">
                 </select>
            </td>
             <td class="Qitazhi3" style="display:none;">
             <input id="Qitazhi3" name="Qitazhi3" type="text"  />
        </td>
            <td>
                 <select name="printColor3" >
                    <option value="四色印刷">四色印刷</option>
@@ -519,6 +539,7 @@
            <td>印刷纸张</td>
            <td class="Brand4">品牌</td>
            <td class="gramWeight4">纸张克重</td>
             <td class="Qitazhi4">纸张</td>
            <td>印刷颜色</td>
            <td><span class="zhang4">页码</span></td>
        </tr>
@@ -535,6 +556,7 @@
                        <%
                            }
                        %>
                     <option value="-1">其他</option>
             </select>
            </td>
            <td class="Brand4"><select class="selectLaber" id="brand4" name="brand4">
@@ -544,6 +566,9 @@
                 <select class="selectLaber" id="gramWeight4" name="gramWeight4">
                 </select>
            </td>
             <td class="Qitazhi4" style="display:none;">
             <input id="Qitazhi4" name="Qitazhi4" type="text"  />
        </td>
            <td>
                 <select name="printColor4" >
                    <option value="四色印刷">四色印刷</option>
@@ -623,6 +648,7 @@
            <td>印刷纸张</td>
            <td class="Brand5">品牌</td>
            <td class="gramWeight5">纸张克重</td>
             <td class="Qitazhi5">纸张</td>
            <td>印刷颜色</td>
            <td><span class="zhang5">页码</span></td>
        </tr>
@@ -639,6 +665,7 @@
                        <%
                            }
                        %>
                     <option value="-1">其他</option>
             </select>
            </td>
             <td class="Brand5"><select class="selectLaber" id="brand5" name="brand5">
@@ -648,6 +675,9 @@
                 <select class="selectLaber" id="gramWeight5" name="gramWeight5">
                 </select>
            </td>
             <td class="Qitazhi5" style="display:none;">
             <input id="Qitazhi5" name="Qitazhi5" type="text"  />
        </td>
            <td>
                 <select name="printColor5" >
                    <option value="四色印刷">四色印刷</option>
CY_ECommercePlatform/CY.WebForm/Pages/front/ReceiptDocument.aspx
@@ -143,16 +143,30 @@
                <td align="left" style="padding-left: 40px;">
                套号号段:<input type="text" name="thStart" />-<input type="text" name="thEnd" />
                <span style=" margin-left:10px">
                胶头位置:<select name='jtWZ'>
                装订:<select name='jtWZ'   onchange="SelectjtWZ();"  >
                             <option value="胶头">胶头</option>
                             <option value="胶左">胶左</option>
                     <option value="80克牛皮纸">80克牛皮纸</option>
                     <option value="100克牛皮纸">100克牛皮纸</option>
                     <option value="120克牛皮纸">120克牛皮纸</option>
                     <option value="其他">其他</option>
                        </select>
                </span>
                     <span style="margin-left:10px;display:none;" id="jtWZFMyaoqiu">
                封面印刷要求:<select name='jtWZFM'>
                             <option value="单面黑色">单面黑色</option>
                             <option value="单面彩色">单面彩色</option>
                     <option value="双面黑色">双面黑色</option>
                     <option value="正彩背黑">正彩背黑</option>
                     <option value="不印刷">不印刷</option>
                     <option value="其他">其他</option>
                        </select>
                </span>
                </td>
            </tr>
        </tbody>
    </table>
    <table class="table2">
    <table class="table2" style="display:none;">
        <tbody>
            <tr>
                <th>
CY_ECommercePlatform/CY.WebForm/Pages/work/BaoxiaoFukuanList.aspx
@@ -95,8 +95,8 @@
                    <td>
                        <select keepdefaultstyle="true" runat="server" id="selEvaluationStatus">
                            <option value="-1">全部</option>
                            <option value="1">已付款</option>
                            <option value="2">未付款</option>
                            <option value="1">已报销</option>
                            <option value="2">未报销</option>
                        </select>
                    </td>
                    <td>
@@ -146,7 +146,7 @@
                            <th width="70" style="text-align: center">
                                科目
                            </th>
                            <th style="text-align: center">
                            <th width="250"  style="text-align: center">
                                摘要
                            </th>
                            <th width="70" style="text-align: center">
@@ -187,7 +187,7 @@
                            <%#Eval("RewardContent")%> 
                        </td>
                        <td style="text-align: center">
                            <%#Eval("PlanContent")%>
                           <%#(Eval("PlanContent")!=null && Eval("PlanContent").ToString().Length>50)?Eval("PlanContent").ToString().Substring(0,50):Eval("PlanContent") %>
                        </td>
                        <td style="text-align: center">
                            <%#Eval("PlanMoney", "{0:F2}")%>   
CY_ECommercePlatform/CY.WebForm/Pages/work/BaoxiaoReplyAdd.aspx
@@ -99,7 +99,7 @@
              <tr>
                   
                    <td class="ali03 " colspan="3">
                       候补发票:
                       后补发票:
                    </td>
                    <td>
                        <span id="spanHoubufapiaoStatus" runat="server"></span>
CY_ECommercePlatform/CY.WebForm/Pages/work/BaoxiaoReplyList.aspx
@@ -147,7 +147,7 @@
                            <th width="70" style="text-align: center">
                                科目
                            </th>
                            <th style="text-align: center">
                            <th width="250"  style="text-align: center;">
                                摘要
                            </th>
                            <th width="70" style="text-align: center">
@@ -188,7 +188,7 @@
                            <%#Eval("RewardContent")%> 
                        </td>
                        <td style="text-align: center">
                            <%#Eval("PlanContent")%>
                            <%#(Eval("PlanContent")!=null && Eval("PlanContent").ToString().Length>50)?Eval("PlanContent").ToString().Substring(0,50):Eval("PlanContent") %>
                        </td>
                        <td style="text-align: center">
                            <%#Eval("PlanMoney", "{0:F2}")%>   
CY_ECommercePlatform/CY.WebForm/Pages/work/MyBaoxiaoAdd.aspx
@@ -254,12 +254,12 @@
                 
            <tr>
             <td class="ali03 w100px">
                    候补发票:
                    后补发票:
                </td>
                <td>
                    <select id="selHoubufapiaoStatus" runat="server" keepdefaultstyle="true" style=" width:100px;">
                            <option value="1">有发票</option>
                            <option value="2">候补发票</option>
                            <option value="2">后补发票</option>
                            <option value="3">无发票</option>
                            
                    </select>
CY_ECommercePlatform/CY.WebForm/Pages/work/MyBaoxiaoDetail.aspx
@@ -97,7 +97,7 @@
              <tr>
                   
                    <td class="ali03 " colspan="3">
                       候补发票:
                       后补发票:
                    </td>
                    <td>
                        <span id="spanHoubufapiaoStatus" runat="server"></span>
CY_ECommercePlatform/CY.WebForm/Pages/work/MyBaoxiaoList.aspx
@@ -135,7 +135,7 @@
                            <th width="70" style="text-align: center">
                                科目
                            </th>
                            <th  style="text-align: center">
                            <th  width="250" style="text-align: center;" >
                                摘要
                            </th>
                            <th width="70" style="text-align: center">
@@ -170,7 +170,7 @@
                            <%#Eval("RewardContent")%> 
                        </td>
                        <td style="text-align: center">
                            <%#Eval("PlanContent")%>
                          <%#(Eval("PlanContent")!=null && Eval("PlanContent").ToString().Length>50)?Eval("PlanContent").ToString().Substring(0,50):Eval("PlanContent") %>
                        </td>
                        <td style="text-align: center">
                            <%#Eval("PlanMoney", "{0:F2}")%>   
CY_ECommercePlatform/CY.WebForm/js/Inquiry/Inquiry.js
@@ -1142,10 +1142,16 @@
        if (paperId == "0") {
            $(".Brand" + index).hide();
            $(".gramWeight" + index).hide();
            $(".Qitazhi" + index).hide();
        } else if(paperId == "-1") {
            $(".Brand" + index).hide();
            $(".gramWeight" + index).hide();
            $(".Qitazhi" + index).show();
        }
        else {
            $(".Brand" + index).show();
            $(".gramWeight" + index).show();
            $(".Qitazhi" + index).hide();
            if (printTypeId == 15 || printTypeId == 6) {
                var isSuccess = true;
@@ -1359,9 +1365,9 @@
    $("#selCovered").val(dataJson.CoveredTypeId);
    $("[name='printBoxNumber']").val(dataJson.PrintBoxNumber);
    $("[name='printCountByBox']").val(dataJson.PrintCount);
    $("[name='singleOrdouble0']").val(dataJson.SingleOrdouble);
    $("[name='pNameMP']").val(dataJson.PaperMP);
    $("[name='paper0']").val(dataJson.PaperId);
    $("[name='Qitazhi0']").val(dataJson.Qitazhi);
    if (dataJson.PrintMode == 0) {
        if (dataJson.PaperMP && dataJson.PaperMP != "" && $("#hidPrintTypeId").val() != "29") {
            PaperSelect($("[name='pNameMP']").val(), $("#hidPrintTypeId").val(), 0);
@@ -1377,6 +1383,7 @@
    if (dataJson.PrintMode == 0) {
        $("[name='brand0']").change();
    }
    $("[name='singleOrdouble0']").val(dataJson.SingleOrdouble);
    $("[name='gramWeight0']").val(dataJson.GramWeight);
    $("#printCount").val(dataJson.PrintCount);
    $("[name='ysUnit']").val(dataJson.Unit);
@@ -1399,6 +1406,7 @@
    $("[name='thStart']").val(dataJson.ThStart);
    $("[name='thEnd']").val(dataJson.ThEnd);
    $("[name='jtWZ']").val(dataJson.JTWZ);
    $("[name='jtWZFM']").val(dataJson.jtWZFM);
    $("[name='frontType']").val(dataJson.FrontType);
    if (dataJson.FrontType != "无封面") {
        $("#spPrintDemand").show();
@@ -1415,6 +1423,10 @@
                $(this).attr("checked", false);
            }
        );
    }
    if (printTypeId == 27 || printTypeId == 29) {
        SelectjtWZ();
    }
   
    if (afterWorkArry.length > 0) {
@@ -1541,6 +1553,7 @@
                }
                $("[name='gramWeight" + index + "']").val(insideArry[j].GramWeight);
                $("[name='printColor" + index + "']").val(insideArry[j].PrintColor);
                $("[name='Qitazhi" + index + "']").val(insideArry[j].Qitazhi);
                $("[name='pageNum" + index + "']").val(insideArry[j].PageNum);
                $("[name='gildingType" + index + "']").val(insideArry[j].GildingType);
                var insideAfterWorkArry = insideArry[j].AfterWorkList;
@@ -2427,7 +2440,17 @@
    }
    return true;
}
function SelectjtWZ() {
    var dddd = $("[name='jtWZ']").val();
    if (dddd != "胶头" && dddd != "胶左" && dddd != "其他" && dddd != "散页") {
            $("#jtWZFMyaoqiu").show();
        } else {
            $("#jtWZFMyaoqiu").hide();
        }
}
function SelectFuc(obj) {
    var index = $(obj).attr("index");
    if ($(obj).val() == "8") {
CY_ECommercePlatform/CY.WebForm/js/business/Order.js
@@ -546,6 +546,7 @@
            document.getElementById('txtDocumentName').value = document.getElementById('txtDocumentNameHide').value;
        }
       
        $("#Duiyinghetongbianhao").hide();
    }
    else {
        document.getElementById('tbFacing').style.display = '';
@@ -555,6 +556,7 @@
        document.getElementById('selVerifyWay321').style.display = '';
        document.getElementById('selVerifyWay1234').style.display = '';
        document.getElementById('selVerifyWay4321').style.display = '';
        $("#Duiyinghetongbianhao").show();
    }
}