|
|
@@ -206,7 +206,8 @@ angular.module('app.intelligent').service("temperatureRecordService", function($
|
|
206
|
206
|
method : 'GET',
|
|
207
|
207
|
url : APP_CONFIG.intelligentUrl + '/intelligents/temperatureRecord/sendTemperatureDetectionAll',
|
|
208
|
208
|
params : {
|
|
209
|
|
- tType: tType
|
|
|
209
|
+ tType: tType,
|
|
|
210
|
+ orgId: $rootScope.orgInfo.orgId
|
|
210
|
211
|
}
|
|
211
|
212
|
}).then(function successCallback(response) {
|
|
212
|
213
|
// 请求成功执行代码
|
|
|
@@ -226,7 +227,8 @@ angular.module('app.intelligent').service("temperatureRecordService", function($
|
|
226
|
227
|
url : APP_CONFIG.intelligentUrl + '/intelligents/temperatureRecord/sendOnlyStoreDetection',
|
|
227
|
228
|
data : {
|
|
228
|
229
|
storeCode : storehouse,
|
|
229
|
|
- tType: tType
|
|
|
230
|
+ tType: tType,
|
|
|
231
|
+ orgId: $rootScope.orgInfo.orgId
|
|
230
|
232
|
}
|
|
231
|
233
|
}).then(function successCallback(response) {
|
|
232
|
234
|
// 请求成功执行代码
|