seimin 1 rok temu
rodzic
commit
790f9ca307

+ 10 - 6
src/app/views/quilt-washing-search/quilt-washing-search.component.html

@@ -30,16 +30,18 @@
30 30
         [nzLoading]="loading1">
31 31
         <thead>
32 32
           <tr class="thead">
33
-            <th nzWidth="6%">序号</th>
33
+            <th nzWidth="5%">序号</th>
34 34
             <th nzWidth="8%">关联科室</th>
35 35
             <th nzWidth="8%">批次号</th>
36 36
             <th nzWidth="8%">被服类型</th>
37
-            <th nzWidth="8%">回收数量</th>
38
-            <th nzWidth="8%">送回数量</th>
39
-            <th nzWidth="8%">是否异常</th>
40
-            <th nzWidth="8%">回收人</th>
37
+            <th nzWidth="6%">回收数量</th>
38
+            <th nzWidth="6%">送回数量</th>
39
+            <th nzWidth="5%">是否异常</th>
40
+            <th nzWidth="6%">回收人</th>
41
+            <th nzWidth="6%">回收交接人</th>
41 42
             <th nzWidth="11%">回收时间</th>
42
-            <th nzWidth="8%">送回人</th>
43
+            <th nzWidth="6%">送回人</th>
44
+            <th nzWidth="6%">送回交接人</th>
43 45
             <th nzWidth="11%">送回时间</th>
44 46
             <th nzWidth="8%">状态</th>
45 47
           </tr>
@@ -54,8 +56,10 @@
54 56
             <td>{{ data.sendBackNum }}</td>
55 57
             <td>{{ data.exception == 1 ? '是' : '否' }}</td>
56 58
             <td>{{ data.recyclersIdDTO?.name }}</td>
59
+            <td>{{ data.recyclingHandoverDTO?.name }}</td>
57 60
             <td>{{ data.recyclingTime | date:'yyyy-MM-dd HH:mm' }}</td>
58 61
             <td>{{ data.sendBackIdDTO?.name }}</td>
62
+            <td>{{ data.sendHandoverDTO?.name }}</td>
59 63
             <td>{{ data.sendBackTime | date:'yyyy-MM-dd HH:mm' }}</td>
60 64
             <td>{{ data.clothesState?.name }}</td>
61 65
           </tr>

+ 1 - 1
src/app/views/washing-batch-view/washing-batch-view.component.ts

@@ -264,7 +264,7 @@ export class WashingBatchViewComponent implements OnInit, AfterViewInit {
264 264
 
265 265
   // 表格数据
266 266
   getList() {
267
-    if(!this.searchDto.parent && !this.searchDto.child){
267
+    if(!this.searchDto.child){
268 268
       this.rows = [['id', 'clothesState', ''], [], ['','件数', '费用/元']];
269 269
       this.listOfData = [];
270 270
       this.totalData = {};