Browse Source

报销功能调整(报销发票张数错误bug修复)

徐滕 1 tháng trước cách đây
mục cha
commit
40da292745

+ 6 - 8
src/main/webapp/webpage/modules/workreimbursement/treeForm/all/workReimbursementAllFormAdd.jsp

@@ -291,7 +291,7 @@
                                     "</td>" +
 
                                     "<td>" +
-                                    "<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number judgment' style='background-color: #f5f5f5;'/>" +
+                                    "<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number' style='background-color: #f5f5f5;'/>" +
                                     "</td>" +
 
                                     "<td>" +
@@ -2405,7 +2405,7 @@
                             <!-- 多表头1:费用(元) -->
                             <th style="width:400px" colspan="4"><font color="red">*</font>费用(元)</th>
                             <!-- 多表头2:收据张数 -->
-                            <th style="width:300px" colspan="3"><font color="red">*</font>收据张数</th>
+                            <th style="width:300px" colspan="3">收据张数</th>
                             <th style="width:100px" rowspan="2">出差天数</th>
                             <th style="width:200px" rowspan="2">内容</th>
                             <th style="width:200px" rowspan="2">操作</th>
@@ -2419,7 +2419,7 @@
                             <!-- 收据张数子表头 -->
                             <th style="width:100px">数电发票</th>
                             <th style="width:100px">非数电票</th>
-                            <th style="width:100px"><font color="red">*</font>汇总</th>
+                            <th style="width:100px">汇总</th>
                         </tr>
                         </thead>
                         <tbody id="workAccountList">
@@ -2481,7 +2481,7 @@
                                             <input id="workAccountList${index.index}_invoiceBills" onchange="billSum(${index.index})" name="workAccountList[${index.index}].invoiceBills" type="text" value="${workAccount.invoiceBills}"  placeholder="非数电票张数" maxlength="5"  class="form-control number"/>
                                         </td>
                                         <td>
-                                            <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number judgment" style="background-color: #f5f5f5;"/>
+                                            <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number" style="background-color: #f5f5f5;"/>
                                         </td>
 
                                         <td style="vertical-align: middle; text-align:center;">
@@ -2582,7 +2582,7 @@
                     <input id="workAccountList{{idx}}_invoiceBills" onchange="billSum({{idx}})" name="workAccountList[{{idx}}].invoiceBills" type="text" value="{{row.invoiceBills}}"  placeholder="非数电票张数" maxlength="5" class="form-control number"/>
                 </td>
                 <td>
-                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number judgment" style="background-color: #f5f5f5;"/>
+                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number" style="background-color: #f5f5f5;"/>
                 </td>
 
                 <td style="vertical-align: middle; text-align:center;">
@@ -2888,10 +2888,8 @@
         var eInvoice = parseFloat($("#workAccountList" + rowIndex + "_eInvoiceBills").val() || 0);
         // 获取非数电票金额
         var invoice = parseFloat($("#workAccountList" + rowIndex + "_invoiceBills").val() || 0);
-        // 获取数电发票金额
-        var subsidyMoney = parseFloat($("#workAccountList" + rowIndex + "_subsidyMoney").val() || 0);
         // 计算汇总金额
-        var sum = eInvoice + invoice + subsidyMoney;
+        var sum = eInvoice + invoice;
         // 设置汇总金额
         $("#workAccountList" + rowIndex + "_bills").val(sum);
 

+ 2 - 2
src/main/webapp/webpage/modules/workreimbursement/treeForm/all/workReimbursementAllFormDetail.jsp

@@ -822,7 +822,7 @@
                             <!-- 多表头1:费用(元) -->
                             <th style="width:400px" colspan="4"><font color="red">*</font>费用(元)</th>
                             <!-- 多表头2:收据张数 -->
-                            <th style="width:300px" colspan="3"><font color="red">*</font>收据张数</th>
+                            <th style="width:300px" colspan="3">收据张数</th>
                             <th style="width:100px" rowspan="2">出差天数</th>
                             <th style="width:200px" rowspan="2">内容</th>
                             <th style="width:200px" rowspan="2">操作</th>
@@ -836,7 +836,7 @@
                             <!-- 收据张数子表头 -->
                             <th style="width:100px">数电发票</th>
                             <th style="width:100px">非数电票</th>
-                            <th style="width:100px"><font color="red">*</font>汇总</th>
+                            <th style="width:100px">汇总</th>
                         </tr>
                         </thead>
                         <tbody id="workAccountList">

+ 5 - 5
src/main/webapp/webpage/modules/workreimbursement/treeForm/all/workReimbursementAllModifyApply.jsp

@@ -291,7 +291,7 @@
                                     "</td>" +
 
                                     "<td>" +
-                                    "<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number required' style='background-color: #f5f5f5;'/>" +
+                                    "<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number' style='background-color: #f5f5f5;'/>" +
                                     "</td>" +
 
                                     "<td>" +
@@ -2391,7 +2391,7 @@
                             <!-- 多表头1:费用(元) -->
                             <th style="width:400px" colspan="4"><font color="red">*</font>费用(元)</th>
                             <!-- 多表头2:收据张数 -->
-                            <th style="width:300px" colspan="3"><font color="red">*</font>收据张数</th>
+                            <th style="width:300px" colspan="3">收据张数</th>
                             <th style="width:100px" rowspan="2">出差天数</th>
                             <th style="width:200px" rowspan="2">内容</th>
                             <th style="width:200px" rowspan="2">操作</th>
@@ -2405,7 +2405,7 @@
                             <!-- 收据张数子表头 -->
                             <th style="width:100px">数电发票</th>
                             <th style="width:100px">非数电票</th>
-                            <th style="width:100px"><font color="red">*</font>汇总</th>
+                            <th style="width:100px">汇总</th>
                         </tr>
                         </thead>
                         <tbody id="workAccountList">
@@ -2467,7 +2467,7 @@
                                             <input id="workAccountList${index.index}_invoiceBills" onchange="billSum(${index.index})" name="workAccountList[${index.index}].invoiceBills" type="text" value="${workAccount.invoiceBills}"  placeholder="非数电票张数" maxlength="5"  class="form-control number"/>
                                         </td>
                                         <td>
-                                            <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number required" style="background-color: #f5f5f5;"/>
+                                            <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number" style="background-color: #f5f5f5;"/>
                                         </td>
 
                                         <td style="vertical-align: middle; text-align:center;">
@@ -2568,7 +2568,7 @@
                     <input id="workAccountList{{idx}}_invoiceBills" onchange="billSum({{idx}})" name="workAccountList[{{idx}}].invoiceBills" type="text" value="{{row.invoiceBills}}"  placeholder="非数电票张数" maxlength="5" class="form-control number"/>
                 </td>
                 <td>
-                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number required" style="background-color: #f5f5f5;"/>
+                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number" style="background-color: #f5f5f5;"/>
                 </td>
 
                 <td style="vertical-align: middle; text-align:center;">

+ 2 - 2
src/main/webapp/webpage/modules/workreimbursement/treeForm/new/workReimbursementNewAudit.jsp

@@ -877,7 +877,7 @@
                             <!-- 多表头1:费用(元) -->
                             <th style="width:400px" colspan="4"><font color="red">*</font>费用(元)</th>
                             <!-- 多表头2:收据张数 -->
-                            <th style="width:300px" colspan="3"><font color="red">*</font>收据张数</th>
+                            <th style="width:300px" colspan="3">收据张数</th>
                             <th style="width:100px" rowspan="2">出差天数</th>
                             <th style="width:200px" rowspan="2">内容</th>
                             <th style="width:200px" rowspan="2">操作</th>
@@ -891,7 +891,7 @@
                             <!-- 收据张数子表头 -->
                             <th style="width:100px">数电发票</th>
                             <th style="width:100px">非数电票</th>
-                            <th style="width:100px"><font color="red">*</font>汇总</th>
+                            <th style="width:100px">汇总</th>
                         </tr>
                         </thead>
                         <tbody id="workAccountList">

+ 6 - 8
src/main/webapp/webpage/modules/workreimbursement/treeForm/new/workReimbursementNewFormAdd.jsp

@@ -292,7 +292,7 @@
                                     "</td>" +
 
                                     "<td>" +
-                                    "<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number judgment' style='background-color: #f5f5f5;'/>" +
+                                    "<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number' style='background-color: #f5f5f5;'/>" +
                                     "</td>" +
 
                                     "<td>" +
@@ -2410,7 +2410,7 @@
                         <!-- 多表头1:费用(元) -->
                         <th style="width:400px" colspan="4"><font color="red">*</font>费用(元)</th>
                         <!-- 多表头2:收据张数 -->
-                        <th style="width:300px" colspan="3"><font color="red">*</font>收据张数</th>
+                        <th style="width:300px" colspan="3">收据张数</th>
                         <th style="width:100px" rowspan="2">出差天数</th>
                         <th style="width:200px" rowspan="2">内容</th>
                         <th style="width:200px" rowspan="2">操作</th>
@@ -2424,7 +2424,7 @@
                         <!-- 收据张数子表头 -->
                         <th style="width:100px">数电发票</th>
                         <th style="width:100px">非数电票</th>
-                        <th style="width:100px"><font color="red">*</font>汇总</th>
+                        <th style="width:100px">汇总</th>
                     </tr>
                     </thead>
                     <tbody id="workAccountList">
@@ -2486,7 +2486,7 @@
                                     <input id="workAccountList${index.index}_invoiceBills" onchange="billSum(${index.index})" name="workAccountList[${index.index}].invoiceBills" type="text" value="${workAccount.invoiceBills}"  placeholder="非数电票张数" maxlength="5"  class="form-control number"/>
                                 </td>
                                 <td>
-                                    <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number judgment" style="background-color: #f5f5f5;"/>
+                                    <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number" style="background-color: #f5f5f5;"/>
                                 </td>
 
                                 <td style="vertical-align: middle; text-align:center;">
@@ -2587,7 +2587,7 @@
                     <input id="workAccountList{{idx}}_invoiceBills" onchange="billSum({{idx}})" name="workAccountList[{{idx}}].invoiceBills" type="text" value="{{row.invoiceBills}}"  placeholder="非数电票张数" maxlength="5" class="form-control number"/>
                 </td>
                 <td>
-                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number judgment" style="background-color: #f5f5f5;"/>
+                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number" style="background-color: #f5f5f5;"/>
                 </td>
 
                 <td style="vertical-align: middle; text-align:center;">
@@ -2892,10 +2892,8 @@
         var eInvoice = parseFloat($("#workAccountList" + rowIndex + "_eInvoiceBills").val() || 0);
         // 获取非数电票金额
         var invoice = parseFloat($("#workAccountList" + rowIndex + "_invoiceBills").val() || 0);
-        // 获取数电发票金额
-        var subsidyMoney = parseFloat($("#workAccountList" + rowIndex + "_subsidyMoney").val() || 0);
         // 计算汇总金额
-        var sum = eInvoice + invoice + subsidyMoney;
+        var sum = eInvoice + invoice;
         // 设置汇总金额
         $("#workAccountList" + rowIndex + "_bills").val(sum);
 

+ 5 - 5
src/main/webapp/webpage/modules/workreimbursement/treeForm/new/workReimbursementNewModifyApply.jsp

@@ -291,7 +291,7 @@
                                     "</td>" +
 
                                     "<td>" +
-                                    "<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number required' style='background-color: #f5f5f5;'/>" +
+                                    "<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number' style='background-color: #f5f5f5;'/>" +
                                     "</td>" +
 
                                     "<td>" +
@@ -2388,7 +2388,7 @@
                             <!-- 多表头1:费用(元) -->
                             <th style="width:400px" colspan="4"><font color="red">*</font>费用(元)</th>
                             <!-- 多表头2:收据张数 -->
-                            <th style="width:300px" colspan="3"><font color="red">*</font>收据张数</th>
+                            <th style="width:300px" colspan="3">收据张数</th>
                             <th style="width:100px" rowspan="2">出差天数</th>
                             <th style="width:200px" rowspan="2">内容</th>
                             <th style="width:200px" rowspan="2">操作</th>
@@ -2402,7 +2402,7 @@
                             <!-- 收据张数子表头 -->
                             <th style="width:100px">数电发票</th>
                             <th style="width:100px">非数电票</th>
-                            <th style="width:100px"><font color="red">*</font>汇总</th>
+                            <th style="width:100px">汇总</th>
                         </tr>
                         </thead>
                         <tbody id="workAccountList">
@@ -2464,7 +2464,7 @@
                                             <input id="workAccountList${index.index}_invoiceBills" onchange="billSum(${index.index})" name="workAccountList[${index.index}].invoiceBills" type="text" value="${workAccount.invoiceBills}"  placeholder="非数电票张数" maxlength="5"  class="form-control number"/>
                                         </td>
                                         <td>
-                                            <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number required" style="background-color: #f5f5f5;"/>
+                                            <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number" style="background-color: #f5f5f5;"/>
                                         </td>
 
                                         <td style="vertical-align: middle; text-align:center;">
@@ -2565,7 +2565,7 @@
                     <input id="workAccountList{{idx}}_invoiceBills" onchange="billSum({{idx}})" name="workAccountList[{{idx}}].invoiceBills" type="text" value="{{row.invoiceBills}}"  placeholder="非数电票张数" maxlength="5" class="form-control number"/>
                 </td>
                 <td>
-                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number required" style="background-color: #f5f5f5;"/>
+                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number" style="background-color: #f5f5f5;"/>
                 </td>
 
                 <td style="vertical-align: middle; text-align:center;">

+ 5 - 5
src/main/webapp/webpage/modules/workreimbursement/treeForm/replenish/workReimbursementReplenishAudit.jsp

@@ -291,7 +291,7 @@
 										"</td>" +
 
 										"<td>" +
-										"<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number required' style='background-color: #f5f5f5;'/>" +
+										"<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number' style='background-color: #f5f5f5;'/>" +
 										"</td>" +
 
 										"<td>" +
@@ -2385,7 +2385,7 @@
 							<!-- 多表头1:费用(元) -->
 							<th style="width:400px" colspan="4"><font color="red">*</font>费用(元)</th>
 							<!-- 多表头2:收据张数 -->
-							<th style="width:300px" colspan="3"><font color="red">*</font>收据张数</th>
+							<th style="width:300px" colspan="3">收据张数</th>
 							<th style="width:100px" rowspan="2">出差天数</th>
 							<th style="width:200px" rowspan="2">内容</th>
 							<th style="width:200px" rowspan="2">操作</th>
@@ -2399,7 +2399,7 @@
 							<!-- 收据张数子表头 -->
 							<th style="width:100px">数电发票</th>
 							<th style="width:100px">非数电票</th>
-							<th style="width:100px"><font color="red">*</font>汇总</th>
+							<th style="width:100px">汇总</th>
 						</tr>
 						</thead>
 						<tbody id="workAccountList">
@@ -2461,7 +2461,7 @@
                                             <input id="workAccountList${index.index}_invoiceBills" onchange="billSum(${index.index})" name="workAccountList[${index.index}].invoiceBills" type="text" value="${workAccount.invoiceBills}"  placeholder="非数电票张数" maxlength="5"  class="form-control number"/>
                                         </td>
                                         <td>
-                                            <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number required" style="background-color: #f5f5f5;"/>
+                                            <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number" style="background-color: #f5f5f5;"/>
                                         </td>
 
                                         <td style="vertical-align: middle; text-align:center;">
@@ -2562,7 +2562,7 @@
                     <input id="workAccountList{{idx}}_invoiceBills" onchange="billSum({{idx}})" name="workAccountList[{{idx}}].invoiceBills" type="text" value="{{row.invoiceBills}}"  placeholder="非数电票张数" maxlength="5" class="form-control number"/>
                 </td>
                 <td>
-                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number required" style="background-color: #f5f5f5;"/>
+                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number" style="background-color: #f5f5f5;"/>
                 </td>
 
                 <td style="vertical-align: middle; text-align:center;">

+ 2 - 2
src/main/webapp/webpage/modules/workreimbursement/treeForm/replenish/workReimbursementReplenishCwAudit.jsp

@@ -790,7 +790,7 @@
 							<!-- 多表头1:费用(元) -->
 							<th style="width:400px" colspan="4"><font color="red">*</font>费用(元)</th>
 							<!-- 多表头2:收据张数 -->
-							<th style="width:300px" colspan="3"><font color="red">*</font>收据张数</th>
+							<th style="width:300px" colspan="3">收据张数</th>
 							<th style="width:100px" rowspan="2">出差天数</th>
 							<th style="width:200px" rowspan="2">内容</th>
 							<th style="width:200px" rowspan="2">操作</th>
@@ -804,7 +804,7 @@
 							<!-- 收据张数子表头 -->
 							<th style="width:100px">数电发票</th>
 							<th style="width:100px">非数电票</th>
-							<th style="width:100px"><font color="red">*</font>汇总</th>
+							<th style="width:100px">汇总</th>
 						</tr>
 						</thead>
 						<tbody id="workAccountList">

+ 2 - 2
src/main/webapp/webpage/modules/workreimbursement/treeForm/specific/workReimbursementSpecificAudit.jsp

@@ -855,7 +855,7 @@
 							<!-- 多表头1:费用(元) -->
 							<th style="width:400px" colspan="4"><font color="red">*</font>费用(元)</th>
 							<!-- 多表头2:收据张数 -->
-							<th style="width:300px" colspan="3"><font color="red">*</font>收据张数</th>
+							<th style="width:300px" colspan="3">收据张数</th>
 							<th style="width:100px" rowspan="2">出差天数</th>
 							<th style="width:200px" rowspan="2">内容</th>
 							<th style="width:200px" rowspan="2">操作</th>
@@ -869,7 +869,7 @@
 							<!-- 收据张数子表头 -->
 							<th style="width:100px">数电发票</th>
 							<th style="width:100px">非数电票</th>
-							<th style="width:100px"><font color="red">*</font>汇总</th>
+							<th style="width:100px">汇总</th>
 						</tr>
 						</thead>
 						<tbody id="workAccountList">

+ 5 - 5
src/main/webapp/webpage/modules/workreimbursement/treeForm/specific/workReimbursementSpecificModifyApply.jsp

@@ -291,7 +291,7 @@
                                     "</td>" +
 
                                     "<td>" +
-                                    "<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number required' style='background-color: #f5f5f5;'/>" +
+                                    "<input id='workAccountList" + index + "_bills' name='workAccountList[" + index + "].bills' type='text' value='" + (obj.bills === null || obj.bills === undefined ? "" : obj.bills) + "'  readonly='readonly'  class='form-control number' style='background-color: #f5f5f5;'/>" +
                                     "</td>" +
 
                                     "<td>" +
@@ -2402,7 +2402,7 @@
                             <!-- 多表头1:费用(元) -->
                             <th style="width:400px" colspan="4"><font color="red">*</font>费用(元)</th>
                             <!-- 多表头2:收据张数 -->
-                            <th style="width:300px" colspan="3"><font color="red">*</font>收据张数</th>
+                            <th style="width:300px" colspan="3">收据张数</th>
                             <th style="width:100px" rowspan="2">出差天数</th>
                             <th style="width:200px" rowspan="2">内容</th>
                             <th style="width:200px" rowspan="2">操作</th>
@@ -2416,7 +2416,7 @@
                             <!-- 收据张数子表头 -->
                             <th style="width:100px">数电发票</th>
                             <th style="width:100px">非数电票</th>
-                            <th style="width:100px"><font color="red">*</font>汇总</th>
+                            <th style="width:100px">汇总</th>
                         </tr>
                         </thead>
                         <tbody id="workAccountList">
@@ -2478,7 +2478,7 @@
                                             <input id="workAccountList${index.index}_invoiceBills" onchange="billSum(${index.index})" name="workAccountList[${index.index}].invoiceBills" type="text" value="${workAccount.invoiceBills}"  placeholder="非数电票张数" maxlength="5"  class="form-control number"/>
                                         </td>
                                         <td>
-                                            <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number required" style="background-color: #f5f5f5;"/>
+                                            <input id="workAccountList${index.index}_bills" name="workAccountList[${index.index}].bills" type="text" value="${workAccount.bills}"  readonly="readonly"  class="form-control number" style="background-color: #f5f5f5;"/>
                                         </td>
 
                                         <td style="vertical-align: middle; text-align:center;">
@@ -2579,7 +2579,7 @@
                     <input id="workAccountList{{idx}}_invoiceBills" onchange="billSum({{idx}})" name="workAccountList[{{idx}}].invoiceBills" type="text" value="{{row.invoiceBills}}"  placeholder="非数电票张数" maxlength="5" class="form-control number"/>
                 </td>
                 <td>
-                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number required" style="background-color: #f5f5f5;"/>
+                    <input id="workAccountList{{idx}}_bills" name="workAccountList[{{idx}}].bills" type="text" value="{{row.bills}}"  readonly="readonly" class="form-control number" style="background-color: #f5f5f5;"/>
                 </td>
 
                 <td style="vertical-align: middle; text-align:center;">