1
0

5 Commity 99c73a820f ... 2ee4c80b59

Autor SHA1 Správa Dátum
  lxp 2ee4c80b59 Merge remote-tracking branch 'origin/master' 1 rok pred
  lxp 6663a4131e Merge remote-tracking branch 'origin/master' 1 rok pred
  lxp f082bfad73 后台控制打印状态 1 rok pred
  lxp 0d512630cd 承诺书 1 rok pred
  lxp 711bee996c 后台显示图片大小 1 rok pred

+ 1 - 1
yinet-admin/src/main/resources/templates/rlzy/apply/apply.html

@@ -153,7 +153,7 @@
         }
         function show(id){
             $.modal.open("查看","/rlzy/apply/edit/"+id,1020,760);
-            $('.layui-layer-btn0').attr("style","display: none;");
+            $('.layui-layer-btn0').text("保存");
             $('.layui-layer-btn1').text("关闭")
         }
     </script>

+ 25 - 1
yinet-admin/src/main/resources/templates/rlzy/apply/edit.html

@@ -123,7 +123,7 @@
                     <div class="form-group">
                         <label class="col-sm-2 control-label">文件:</label>
                         <div class="col-sm-10">
-                            <img  th:src="*{file}" >
+                            <img  style="width: 300px;height: 200px" th:src="*{file}" >
                         </div>
                     </div>
                 </div>
@@ -171,6 +171,30 @@
                     </div>
                 </div>
             </div>
+            <div class="row">
+                <div class="col-sm-6">
+                    <div class="form-group">
+                        <label class="col-sm-4 control-label">打印正本:</label>
+                        <div class="col-sm-8">
+                            <div class="radio-box" th:each="dict : ${@dict.getType('sys_dy')}">
+                                <input type="radio" th:field="*{iszprint}" th:id="${dict.dictCode}" name="iszprint" th:value="${dict.dictValue}" th:checked="${dict.default}">
+                                <label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
+                            </div>
+                        </div>
+                    </div>
+                </div>
+                <div class="col-sm-6">
+                    <div class="form-group">
+                        <label class="col-sm-4 control-label">打印副本:</label>
+                        <div class="col-sm-8">
+                            <div class="radio-box" th:each="dict : ${@dict.getType('sys_dy')}">
+                                <input type="radio" th:field="*{isfprint}" th:id="${dict.dictCode}" name="isfprint" th:value="${dict.dictValue}" th:checked="${dict.default}">
+                                <label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
+                            </div>
+                        </div>
+                    </div>
+                </div>
+            </div>
         </form>
     </div>
 

+ 2 - 2
yinet-admin/src/main/resources/templates/rlzy/print/dylist.html

@@ -338,7 +338,7 @@
 								0,     //打印纸盒选择(0:使用默认纸盒,1:使用纸盒1,2:使用纸盒2,5:使用手动纸盒)
 								0,       //打印纸张选择(0:A4,1:A3,2:A5)
 								1,      //是否彩色打印(0:黑白打印,1:彩色打印)
-								1,  //是否横向打印(0:纵向,1:横向)
+								0,  //是否横向打印(0:纵向,1:横向)
 								0     //是否需要返回实际打印结果(0:不需要,1:需要
 						);
 
@@ -410,7 +410,7 @@
 								0,     //打印纸盒选择(0:使用默认纸盒,1:使用纸盒1,2:使用纸盒2,5:使用手动纸盒)
 								0,       //打印纸张选择(0:A4,1:A3,2:A5)
 								1,      //是否彩色打印(0:黑白打印,1:彩色打印)
-								1,  //是否横向打印(0:纵向,1:横向)
+								0,  //是否横向打印(0:纵向,1:横向)
 								0     //是否需要返回实际打印结果(0:不需要,1:需要
 						);
 					}else  {

+ 3 - 0
yinet-system/src/main/java/com/yinet/rlzy/domain/RlzyApply.java

@@ -147,6 +147,9 @@ public class RlzyApply extends BaseEntity {
     @Column(name = "efficacious_date")
     private Date efficaciousDate;
 
+    @Excel(name = "告知承诺书")
+    @Column(name = "chengnuoshu")
+    private String chengnuoshu;
 
     @Column(name = "create_by")
     private String createBy;

+ 5 - 0
yinet-system/src/main/resources/mapper/rlzy/RlzyApplyMapper.xml

@@ -26,6 +26,7 @@
         <result property="status" column="status"/>
         <result property="openingDate" column="opening_date"/>
         <result property="efficaciousDate" column="efficacious_date"/>
+        <result property="chengnuoshu" column="chengnuoshu"/>
         <result property="file" column="file"/>
         <result property="createBy" column="create_by"/>
         <result property="createTime" column="create_time"/>
@@ -53,6 +54,7 @@
                license_code,
                opening_date,
                efficacious_date,
+               chengnuoshu,
                status,
                create_by,
                create_time,
@@ -131,6 +133,9 @@
             <if test="efficaciousDate != null ">
                 and efficacious_date = #{efficaciousDate}
             </if>
+            <if test="chengnuoshu != null and chengnuoshu != ''">
+                and chengnuoshu = #{chengnuoshu}
+            </if>
             and  status = 1
         </where>
     </select>