seimin 3 weeks ago
parent
commit
a4a899ae6d

+ 6 - 6
src/app/share/specimen-package-list-modal/specimen-package-list-modal.component.html

@@ -24,10 +24,10 @@
24
             <th nzWidth="6%">打包人</th>
24
             <th nzWidth="6%">打包人</th>
25
             <th nzWidth="15%">打包时间</th>
25
             <th nzWidth="15%">打包时间</th>
26
             <th nzWidth="6%">标本数</th>
26
             <th nzWidth="6%">标本数</th>
27
-            <th nzWidth="6%">配送人</th>
28
-            <th nzWidth="15%">配送时间</th>
29
-            <th nzWidth="6%">接收人</th>
30
-            <th nzWidth="15%">接收时间</th>
27
+            <th nzWidth="6%">收取人</th>
28
+            <th nzWidth="15%">收取时间</th>
29
+            <th nzWidth="6%">送达人</th>
30
+            <th nzWidth="15%">送达时间</th>
31
             <th nzWidth="8%">状态</th>
31
             <th nzWidth="8%">状态</th>
32
             <th nzWidth="10%">操作</th>
32
             <th nzWidth="10%">操作</th>
33
           </tr>
33
           </tr>
@@ -38,10 +38,10 @@
38
             <td>{{ data.packUserDTO?.name }}</td>
38
             <td>{{ data.packUserDTO?.name }}</td>
39
             <td>{{ data.packTime | date: 'yyyy-MM-dd HH:mm'}}</td>
39
             <td>{{ data.packTime | date: 'yyyy-MM-dd HH:mm'}}</td>
40
             <td>{{ data.specimenNum }}</td>
40
             <td>{{ data.specimenNum }}</td>
41
-            <td>{{ data.deliveryUserDTO?.name }}</td>
42
-            <td>{{ data.deliveryTime | date: 'yyyy-MM-dd HH:mm'}}</td>
43
             <td>{{ data.receiveUserDTO?.name }}</td>
41
             <td>{{ data.receiveUserDTO?.name }}</td>
44
             <td>{{ data.receiveTime | date: 'yyyy-MM-dd HH:mm'}}</td>
42
             <td>{{ data.receiveTime | date: 'yyyy-MM-dd HH:mm'}}</td>
43
+            <td>{{ data.deliveryUserDTO?.name }}</td>
44
+            <td>{{ data.deliveryTime | date: 'yyyy-MM-dd HH:mm'}}</td>
45
             <td>{{ data.status?.name }}</td>
45
             <td>{{ data.status?.name }}</td>
46
             <td>
46
             <td>
47
               <div class="coop">
47
               <div class="coop">

+ 2 - 1
src/app/views/batch-specimen/batch-specimen.component.html

@@ -58,7 +58,8 @@
58
   </nz-table>
58
   </nz-table>
59
 </div>
59
 </div>
60
 <div class="footer display_flex align-items_center justify-content_flex-center">
60
 <div class="footer display_flex align-items_center justify-content_flex-center">
61
-  <button nzType="primary" class="btn" nz-button (click)='packageHandler()' *ngIf="this.total > 0">打包</button>
61
+  <button nzType="primary" class="btn" nz-button (click)='packageHandler()' *ngIf="this.total > 0 && package.status.value === '0'">打包</button>
62
+  <button nzType="primary" class="btn" nz-button (click)='printPackage()' *ngIf="this.total > 0 && package.status.value === '1'">补打</button>
62
   <button nzType="default" nz-button class="btn cancel ml8" (click)='goBack()'>取消</button>
63
   <button nzType="default" nz-button class="btn cancel ml8" (click)='goBack()'>取消</button>
63
 </div>
64
 </div>
64
 
65
 

+ 1 - 1
src/app/views/batch-specimen/batch-specimen.component.ts

@@ -232,7 +232,7 @@ export class BatchSpecimenComponent implements OnInit, AfterViewInit {
232
     this.getSpePackageEndDeptList();
232
     this.getSpePackageEndDeptList();
233
   }
233
   }
234
 
234
 
235
-  // 查询标本包里的所有终点克是
235
+  // 查询标本包里的所有终点科室
236
   isShowEndDeptIdArr:any[] = [];
236
   isShowEndDeptIdArr:any[] = [];
237
   getSpePackageEndDeptList(){
237
   getSpePackageEndDeptList(){
238
     this.mainService
238
     this.mainService

+ 5 - 5
src/app/views/specimen-package/specimen-package.component.html

@@ -18,8 +18,8 @@
18
           </nz-select>
18
           </nz-select>
19
         </div>
19
         </div>
20
         <div class="list-template__searchItem">
20
         <div class="list-template__searchItem">
21
-          <span class="label">送人</span>:
22
-          <nz-select class="formItem" [nzDropdownMatchSelectWidth]="false" nzPlaceHolder="请选择送人" [(ngModel)]="searchDto.deliveryUser" nzAllowClear nzServerSearch nzShowSearch (nzOnSearch)="changeInp('patient', $event)" (nzOpenChange)="openChangePatient($event)" (ngModelChange)="setIsSelecting(true)">
21
+          <span class="label">送人</span>:
22
+          <nz-select class="formItem" [nzDropdownMatchSelectWidth]="false" nzPlaceHolder="请选择送人" [(ngModel)]="searchDto.deliveryUser" nzAllowClear nzServerSearch nzShowSearch (nzOnSearch)="changeInp('patient', $event)" (nzOpenChange)="openChangePatient($event)" (ngModelChange)="setIsSelecting(true)">
23
             <ng-container *ngFor="let option of deliveryUserList">
23
             <ng-container *ngFor="let option of deliveryUserList">
24
               <nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
24
               <nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
25
             </ng-container>
25
             </ng-container>
@@ -55,8 +55,8 @@
55
             <th nzWidth="10%">打包科室</th>
55
             <th nzWidth="10%">打包科室</th>
56
             <th nzWidth="10%">检验科室</th>
56
             <th nzWidth="10%">检验科室</th>
57
             <th nzWidth="10%">标本数</th>
57
             <th nzWidth="10%">标本数</th>
58
-            <th nzWidth="10%">配送人|配送时间</th>
59
-            <th nzWidth="10%">接收人|接收时间</th>
58
+            <th nzWidth="10%">收取人|收取时间</th>
59
+            <th nzWidth="10%">送达人|送达时间</th>
60
             <th nzWidth="10%">状态</th>
60
             <th nzWidth="10%">状态</th>
61
             <th nzWidth="10%">工单号</th>
61
             <th nzWidth="10%">工单号</th>
62
             <th nzWidth="10%">操作</th>
62
             <th nzWidth="10%">操作</th>
@@ -69,8 +69,8 @@
69
             <td>{{data.packDeptDTO?.dept}}</td>
69
             <td>{{data.packDeptDTO?.dept}}</td>
70
             <td>{{ data.endDeptNames }}</td>
70
             <td>{{ data.endDeptNames }}</td>
71
             <td>{{data.specimenNum}}</td>
71
             <td>{{data.specimenNum}}</td>
72
-            <td>{{ data.deliveryUserDTO?.name }}<br>{{ data.deliveryTime | date: 'yyyy-MM-dd HH:mm'}}</td>
73
             <td>{{ data.receiveUserDTO?.name }}<br>{{ data.receiveTime | date: 'yyyy-MM-dd HH:mm'}}</td>
72
             <td>{{ data.receiveUserDTO?.name }}<br>{{ data.receiveTime | date: 'yyyy-MM-dd HH:mm'}}</td>
73
+            <td>{{ data.deliveryUserDTO?.name }}<br>{{ data.deliveryTime | date: 'yyyy-MM-dd HH:mm'}}</td>
74
             <td>{{ data.status?.name }}</td>
74
             <td>{{ data.status?.name }}</td>
75
             <td>{{ data.gdDTO?.gdcode }}</td>
75
             <td>{{ data.gdDTO?.gdcode }}</td>
76
             <td>
76
             <td>

+ 1 - 1
src/app/views/specimen-package/specimen-package.component.ts

@@ -184,7 +184,7 @@ export class SpecimenPackageComponent implements OnInit {
184
     flag && this.getDeliveryUserList();
184
     flag && this.getDeliveryUserList();
185
   }
185
   }
186
 
186
 
187
-  // 获取送人
187
+  // 获取送
188
   deliveryUserList: any = [];
188
   deliveryUserList: any = [];
189
   getDeliveryUserList(e = undefined) {
189
   getDeliveryUserList(e = undefined) {
190
     let postData = {
190
     let postData = {