|
|
@@ -1,7 +1,7 @@
|
|
1
|
1
|
"use strict";
|
|
2
|
2
|
|
|
3
|
3
|
angular.module('app.basic').service("StorehouseService", function($http, $q, APP_CONFIG) {
|
|
4
|
|
- this.getPageInfo = function(pageNum, pageSize, storehouseId, orgId, libraryType, delFlag) {
|
|
|
4
|
+ this.getPageInfo = function(pageNum, pageSize, storehouseId, orgId, libraryType, delFlag, storehouseType) {
|
|
5
|
5
|
var d = $q.defer();
|
|
6
|
6
|
$http({
|
|
7
|
7
|
method : 'GET',
|
|
|
@@ -12,7 +12,8 @@ angular.module('app.basic').service("StorehouseService", function($http, $q, APP
|
|
12
|
12
|
houseId : storehouseId, //仓房id
|
|
13
|
13
|
orgId : orgId,
|
|
14
|
14
|
libraryType : libraryType,
|
|
15
|
|
- delFlag : delFlag
|
|
|
15
|
+ delFlag : delFlag,
|
|
|
16
|
+ storehouseType : storehouseType
|
|
16
|
17
|
}
|
|
17
|
18
|
}).then(function successCallback(response) {
|
|
18
|
19
|
// 请求成功执行代码
|