Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
leaf-hlcm
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hlcm
leaf-hlcm
Commits
a7deffa3
Commit
a7deffa3
authored
Apr 03, 2023
by
gzj34291
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
付款第三方
parent
685a4805
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
13 deletions
+34
-13
create_content_for_collection.lsc
...app/modules/cont/CON620/create_content_for_collection.lsc
+34
-13
No files found.
src/main/webapp/modules/cont/CON620/create_content_for_collection.lsc
View file @
a7deffa3
...
@@ -5,12 +5,12 @@
...
@@ -5,12 +5,12 @@
importPackage(java.io);
importPackage(java.io);
importPackage(Packages.hls.plugin.docx4j)
importPackage(Packages.hls.plugin.docx4j)
importPackage(Packages.org.apache.commons.io);
importPackage(Packages.org.apache.commons.io);
importPackage(Packages.com.hand.hl);
function RandomString(length) {
function RandomString(length) {
var str = '';
var str = '';
for (;str.length < length;str += Math.random().toString(36).substr(2));
for (;str.length < length;str += Math.random().toString(36).substr(2));
return str.substr(0, length);
return str.substr(0, length);
}
}
//删除文件
//删除文件
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
//按日期创建目录
//按日期创建目录
function getDatePath() {
function getDatePath() {
set_parameter_file_path();
set_p
df_p
arameter_file_path();
var file_path = $ctx.parameter.file_path; //file_path = c:/hls_test_files/content_files/
var file_path = $ctx.parameter.file_path; //file_path = c:/hls_test_files/content_files/
var now = new Date()
var now = new Date()
y = now.getFullYear()
y = now.getFullYear()
...
@@ -47,6 +47,16 @@
...
@@ -47,6 +47,16 @@
return datePath; //datePath = d:/hls_test_files/fileupload/2018/04/
return datePath; //datePath = d:/hls_test_files/fileupload/2018/04/
}
}
function get_file_length(path){
var file=new File(String(path));
if(file.exists() && file.isFile()){
length=file.length();
return length;
}else{
return 0 ;
}
}
function write_os_to_file(file, os) {
function write_os_to_file(file, os) {
var fis = new FileInputStream(file);
var fis = new FileInputStream(file);
var b = new java.lang.reflect.Array.newInstance(java.lang.Byte.TYPE, 1024 * 64);
var b = new java.lang.reflect.Array.newInstance(java.lang.Byte.TYPE, 1024 * 64);
...
@@ -110,19 +120,30 @@
...
@@ -110,19 +120,30 @@
} catch (e) {
} catch (e) {
raise_app_error(e);
raise_app_error(e);
}
}
$bm('cont.CON500.con_file_content_copy_update').update({
<!-- $bm('cont.CON500.con_file_content_copy_update').update({-->
table_name: 'CON_CONTRACT_CONTENT',
<!-- table_name: 'CON_CONTRACT_CONTENT',-->
content_id: record_data.content_id,
<!-- content_id: record_data.content_id,-->
file_name: to_file_name.toString(),
<!-- file_name: to_file_name.toString(),-->
file_path: to_file_path.toString()
<!-- file_path: to_file_path.toString()-->
});
<!-- });-->
var test=new File(to_file_path);
var test=new File(to_file_path);
var test1=new File('D:'+to_file_path);
var test1=new File('D:'+to_file_path);
download_file(to_file_path.toString(),to_file_name.toString());
<!-- download_file(to_file_path.toString(),to_file_name.toString());-->
var file_size=get_file_length(to_file_path);
var business_daily_email=$bm('cont.CON301N.insert_into_attachment_bmp').update({
p_file_path :(to_file_path).toString(),
p_file_name :($ctx.parameter.file_name+'.docx').toString(),
p_file_size :file_size,
p_user_id :$ctx.session.user_id,
p_contract_id :$ctx.parameter.contract_id,
p_file_type :'WORD',
p_lease_type :'02'
});
}
}
}
}
$ctx.parameter.return_status = 'S';
$ctx.parameter.return_status = 'S';
$ctx.parameter.return_message = '执行成功';
$ctx.parameter.return_message = '执行成功';
} catch (e) {
} catch (e) {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment