owl-cli 6.74.0 → 6.76.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -31,7 +31,7 @@ function main(){
|
|
|
31
31
|
var sort = params.sort;
|
|
32
32
|
var exportRange = params.exportRange;
|
|
33
33
|
var outputTarget = params.outputTarget;
|
|
34
|
-
var
|
|
34
|
+
var ids = params.ids;
|
|
35
35
|
|
|
36
36
|
var taskParams = {
|
|
37
37
|
searchArgs:searchArgs,
|
|
@@ -42,7 +42,8 @@ function main(){
|
|
|
42
42
|
loginId:loginId,
|
|
43
43
|
exportRange:exportRange,
|
|
44
44
|
outputTarget:outputTarget,
|
|
45
|
-
templateId:templateId
|
|
45
|
+
templateId:templateId,
|
|
46
|
+
ids:ids
|
|
46
47
|
}
|
|
47
48
|
|
|
48
49
|
var now = new Date().getTime();
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
//#import @handlers/include/checklogin.jsx
|
|
7
7
|
//#import @handlers/include/util.jsx
|
|
8
8
|
//#import $owl_dfiles:services/modelService.jsx
|
|
9
|
+
//#import $owl_task_info:services/modelService.jsx
|
|
9
10
|
|
|
10
11
|
function getAllDocs(searchArgs,sort,tableId,roleId,orgId,loginId,permissions){
|
|
11
12
|
var keyword = searchArgs.keyword;
|
|
@@ -212,6 +213,5 @@ function main(){
|
|
|
212
213
|
taskInfo.msg = "生成Excel文件成功";
|
|
213
214
|
owl_task_infoService.update(taskInfo);
|
|
214
215
|
|
|
215
|
-
|
|
216
216
|
}
|
|
217
217
|
main();
|