|
@@ -1,6 +1,6 @@
|
1
|
1
|
<div class="modal display_flex justify-content_flex-center align-items_center" *ngIf="show">
|
2
|
2
|
<div class="modalBody" style="width: 1200px;">
|
3
|
|
- <div class="title" *ngIf="(type === 'drugsJpbag' || type === 'drugsWestern' || type === 'drugsReturn' || type === 'drugsPoison' || type === 'drugsHerbal');else elseTpl">药品详情<i class="icon_transport transport-guanbi" (click)="hideModal()"></i></div>
|
|
3
|
+ <div class="title" *ngIf="(type === 'drugsJpbag' || type === 'drugsWestern' || type === 'drugsReturn' || type === 'drugsPoison' || type === 'drugsHerbal');else elseTpl">{{configs.drugsModel === 1 ? '药品详情' : '药包详情'}}<i class="icon_transport transport-guanbi" (click)="hideModal()"></i></div>
|
4
|
4
|
<ng-template #elseTpl>
|
5
|
5
|
<div class="title">业务数据查看<i class="icon_transport transport-guanbi" (click)="hideModal()"></i></div>
|
6
|
6
|
</ng-template>
|
|
@@ -71,8 +71,8 @@
|
71
|
71
|
<th nzWidth="10%">收取交接人</th>
|
72
|
72
|
<th nzWidth="14%">收取时间</th>
|
73
|
73
|
<th nzWidth="10%">送达人</th>
|
74
|
|
- <th nzWidth="14%">送达交接人</th>
|
75
|
|
- <th nzWidth="10%">送达时间</th>
|
|
74
|
+ <th nzWidth="10%">送达交接人</th>
|
|
75
|
+ <th nzWidth="14%">送达时间</th>
|
76
|
76
|
</tr>
|
77
|
77
|
</thead>
|
78
|
78
|
<tbody>
|
|
@@ -81,12 +81,12 @@
|
81
|
81
|
<td>{{ data.batchNo }}</td>
|
82
|
82
|
<td>{{ data.drugsTypeCount }}</td>
|
83
|
83
|
<td>{{ data.drugsCount }}</td>
|
84
|
|
- <td><ng-container *ngIf="handoverStartObj">{{handoverStartObj.username}}</ng-container></td>
|
85
|
|
- <td><ng-container *ngIf="handoverStartObj && handoverStartObj.handoverUserid">{{handoverStartObj.handoverUserid.name}}</ng-container></td>
|
86
|
|
- <td><ng-container *ngIf="handoverStartObj">{{handoverStartObj.operationTime}}</ng-container></td>
|
87
|
|
- <td><ng-container *ngIf="handoverEndObj">{{handoverEndObj.username}}</ng-container></td>
|
88
|
|
- <td><ng-container *ngIf="handoverEndObj && handoverEndObj.handoverUserid">{{handoverEndObj.handoverUserid.name}}</ng-container></td>
|
89
|
|
- <td><ng-container *ngIf="handoverEndObj">{{handoverEndObj.operationTime}}</ng-container></td>
|
|
84
|
+ <td><ng-container *ngIf="data.startLog">{{data.startLog.username}}</ng-container></td>
|
|
85
|
+ <td><ng-container *ngIf="data.startLog">{{data.startLog.handoverName}}</ng-container></td>
|
|
86
|
+ <td><ng-container *ngIf="data.startLog">{{data.startLog.operationTime | date:'yyyy-MM-dd HH:mm'}}</ng-container></td>
|
|
87
|
+ <td><ng-container *ngIf="data.endLog">{{data.endLog.username}}</ng-container></td>
|
|
88
|
+ <td><ng-container *ngIf="data.endLog">{{data.endLog.handoverName}}</ng-container></td>
|
|
89
|
+ <td><ng-container *ngIf="data.endLog">{{data.endLog.operationTime | date:'yyyy-MM-dd HH:mm'}}</ng-container></td>
|
90
|
90
|
</tr>
|
91
|
91
|
</tbody>
|
92
|
92
|
</nz-table>
|