|
@@ -99,7 +99,7 @@ export class SpecimenPackageComponent implements OnInit {
|
99
|
99
|
hosId: this.currentHospital.id,
|
100
|
100
|
busiType: 'specimen',//标本打包
|
101
|
101
|
status: this.searchDto.status ? { id: this.searchDto.status } : undefined,
|
102
|
|
- receiveUser: this.searchDto.receiveUser || undefined,
|
|
102
|
+ deliveryUser: this.searchDto.deliveryUser || undefined,
|
103
|
103
|
packDept: this.searchDto.packDept || undefined,
|
104
|
104
|
startTime: this.dateRange.length ? format(this.dateRange[0], 'yyyy-MM-dd HH:mm:ss') : undefined,
|
105
|
105
|
endTime: this.dateRange.length ? format(this.dateRange[1], 'yyyy-MM-dd HH:mm:ss') : undefined,
|
|
@@ -144,7 +144,7 @@ export class SpecimenPackageComponent implements OnInit {
|
144
|
144
|
if(type === 'department'){
|
145
|
145
|
this.searchTimer(this.getDeptList, e);
|
146
|
146
|
}else if(type === 'patient'){
|
147
|
|
- this.searchTimer(this.getReceiveUserList, e);
|
|
147
|
+ this.searchTimer(this.getDeliveryUserList, e);
|
148
|
148
|
}
|
149
|
149
|
}
|
150
|
150
|
|
|
@@ -181,12 +181,12 @@ export class SpecimenPackageComponent implements OnInit {
|
181
|
181
|
|
182
|
182
|
openChangePatient(flag){
|
183
|
183
|
flag && this.setIsSelecting(false);
|
184
|
|
- flag && this.getReceiveUserList();
|
|
184
|
+ flag && this.getDeliveryUserList();
|
185
|
185
|
}
|
186
|
186
|
|
187
|
|
- // 获取收取人
|
188
|
|
- receiveUserList: any = [];
|
189
|
|
- getReceiveUserList(e = undefined) {
|
|
187
|
+ // 获取配送人
|
|
188
|
+ deliveryUserList: any = [];
|
|
189
|
+ getDeliveryUserList(e = undefined) {
|
190
|
190
|
let postData = {
|
191
|
191
|
idx: 0,
|
192
|
192
|
sum: 20,
|
|
@@ -200,7 +200,7 @@ export class SpecimenPackageComponent implements OnInit {
|
200
|
200
|
.getFetchDataList("simple/data", "user", postData)
|
201
|
201
|
.subscribe((data) => {
|
202
|
202
|
this.isLoading = false;
|
203
|
|
- this.receiveUserList = data.list || [];
|
|
203
|
+ this.deliveryUserList = data.list || [];
|
204
|
204
|
});
|
205
|
205
|
}
|
206
|
206
|
|