LAPTOP-SB56SG4Q\86185
3 years ago
6 changed files with 331 additions and 1 deletions
@ -0,0 +1,121 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<WorkBook xmlVersion="20170720" releaseVersion="10.0.0"> |
||||
<Report class="com.fr.report.worksheet.WorkSheet" name="sheet1"> |
||||
<ReportPageAttr> |
||||
<HR/> |
||||
<FR/> |
||||
<HC/> |
||||
<FC/> |
||||
</ReportPageAttr> |
||||
<ColumnPrivilegeControl/> |
||||
<RowPrivilegeControl/> |
||||
<RowHeight defaultValue="723900"> |
||||
<![CDATA[723900,723900,723900,723900,723900,723900,723900,723900,723900,723900,723900,723900]]></RowHeight> |
||||
<ColumnWidth defaultValue="2743200"> |
||||
<![CDATA[5472000,5472000,3600000,2743200,2743200,2743200,2743200,2743200,2743200,2743200,2743200]]></ColumnWidth> |
||||
<CellElementList> |
||||
<C c="0" r="0"> |
||||
<PrivilegeControl/> |
||||
<Expand/> |
||||
</C> |
||||
<C c="1" r="1" s="0"> |
||||
<O> |
||||
<![CDATA[Test]]></O> |
||||
<PrivilegeControl/> |
||||
<CellGUIAttr adjustmode="2"/> |
||||
<CellPageAttr/> |
||||
<Expand/> |
||||
</C> |
||||
<C c="2" r="1" s="1"> |
||||
<O t="XMLable" class="com.fr.base.Formula"> |
||||
<Attributes> |
||||
<![CDATA[=B2 + " cp"]]></Attributes> |
||||
</O> |
||||
<PrivilegeControl/> |
||||
<Expand/> |
||||
</C> |
||||
<C c="0" r="2" s="2"> |
||||
<O> |
||||
<![CDATA[Test]]></O> |
||||
<PrivilegeControl/> |
||||
<Expand/> |
||||
</C> |
||||
<C c="1" r="2" s="3"> |
||||
<PrivilegeControl/> |
||||
<Expand/> |
||||
</C> |
||||
<C c="1" r="3"> |
||||
<O> |
||||
<![CDATA[实打实]]></O> |
||||
<PrivilegeControl/> |
||||
<Expand/> |
||||
</C> |
||||
</CellElementList> |
||||
<ReportAttrSet> |
||||
<ReportSettings headerHeight="0" footerHeight="0"> |
||||
<PaperSetting/> |
||||
<Background name="ColorBackground" color="-1"/> |
||||
</ReportSettings> |
||||
<Header reportPageType="0"> |
||||
<Background name="NullBackground"/> |
||||
<LeftList/> |
||||
<CenterList/> |
||||
<RightList/> |
||||
</Header> |
||||
<Footer reportPageType="0"> |
||||
<Background name="NullBackground"/> |
||||
<LeftList/> |
||||
<CenterList/> |
||||
<RightList/> |
||||
</Footer> |
||||
</ReportAttrSet> |
||||
<PrivilegeControl/> |
||||
</Report> |
||||
<ReportParameterAttr> |
||||
<Attributes showWindow="true" delayPlaying="true" windowPosition="1" align="0" useParamsTemplate="true" currentIndex="0"/> |
||||
<PWTitle> |
||||
<![CDATA[参数]]></PWTitle> |
||||
</ReportParameterAttr> |
||||
<StyleList> |
||||
<Style imageLayout="1"> |
||||
<FRFont name="SimSun" style="0" size="72"/> |
||||
<Background name="ColorBackground" color="-13395610"/> |
||||
<Border> |
||||
<Top style="1"/> |
||||
<Bottom style="1"/> |
||||
<Left style="1"/> |
||||
<Right style="1"/> |
||||
</Border> |
||||
</Style> |
||||
<Style imageLayout="1"> |
||||
<FRFont name="SimSun" style="0" size="72"/> |
||||
<Background name="ColorBackground" color="-3368449"/> |
||||
<Border/> |
||||
</Style> |
||||
<Style imageLayout="1"> |
||||
<FRFont name="SimSun" style="0" size="72" foreground="-1"/> |
||||
<Background name="ColorBackground" color="-65536"/> |
||||
<Border> |
||||
<Top style="1"/> |
||||
<Bottom style="1"/> |
||||
<Left style="1"/> |
||||
<Right style="1"/> |
||||
</Border> |
||||
</Style> |
||||
<Style imageLayout="1"> |
||||
<FRFont name="SimSun" style="0" size="72"/> |
||||
<Background name="NullBackground"/> |
||||
<Border> |
||||
<Top style="1"/> |
||||
<Bottom style="1"/> |
||||
<Left style="1"/> |
||||
<Right style="1"/> |
||||
</Border> |
||||
</Style> |
||||
</StyleList> |
||||
<DesignerVersion DesignerVersion="KAA"/> |
||||
<PreviewType PreviewType="0"/> |
||||
<TemplateIdAttMark class="com.fr.base.iofile.attr.TemplateIdAttrMark"> |
||||
<TemplateIdAttMark TemplateId="9619893b-d4c9-41c3-b8d1-2c9f45d294aa"/> |
||||
</TemplateIdAttMark> |
||||
</WorkBook> |
@ -1,3 +1,7 @@
|
||||
# demo-cell-value-provider |
||||
|
||||
单元格中间处理接口示例 |
||||
单元格中间处理接口示例\ |
||||
demo生效后、预览CellValue.cpt\ |
||||
跟cpt的设置比,红色的格子高度变成2倍、绿色的格子宽度变成了2倍、紫色格子的值显示Test Demo cp\ |
||||
PC分页或填报预览模板时,红色和绿色的格子的值为Test Demo Tag\ |
||||
导出excel后,excel中红色和绿色格子的值为Test Demo\ |
@ -0,0 +1,124 @@
|
||||
|
||||
apply plugin: 'java' |
||||
|
||||
[compileJava,compileTestJava]*.options*.encoding = 'UTF-8' |
||||
|
||||
ext { |
||||
/** |
||||
* 项目中依赖的jar的路径 |
||||
* 1.如果依赖的jar需要打包到zip中,放置在lib根目录下 |
||||
* 2.如果依赖的jar仅仅是编译时需要,防止在lib下子目录下即可 |
||||
*/ |
||||
libPath = "$projectDir/../../webroot/WEB-INF/lib" |
||||
|
||||
/** |
||||
* 是否对插件的class进行加密保护,防止反编译 |
||||
*/ |
||||
guard = false |
||||
|
||||
def pluginInfo = getPluginInfo() |
||||
pluginPre = "fine-plugin" |
||||
pluginName = pluginInfo.id |
||||
pluginVersion = pluginInfo.version |
||||
|
||||
outputPath = "$projectDir/../../webroot/WEB-INF/plugins/plugin-" + pluginName + "-1.0/classes" |
||||
} |
||||
|
||||
group = 'com.fr.plugin' |
||||
version = '10.0' |
||||
sourceCompatibility = '8' |
||||
|
||||
sourceSets { |
||||
main { |
||||
java.outputDir = file(outputPath) |
||||
output.resourcesDir = file(outputPath) |
||||
} |
||||
} |
||||
|
||||
ant.importBuild("encrypt.xml") |
||||
//定义ant变量 |
||||
ant.projectDir = projectDir |
||||
ant.references["compile.classpath"] = ant.path { |
||||
fileset(dir: libPath, includes: '**/*.jar') |
||||
fileset(dir: ".",includes:"**/*.jar" ) |
||||
} |
||||
|
||||
classes.dependsOn('clean') |
||||
|
||||
task copyFiles(type: Copy,dependsOn: 'classes'){ |
||||
from outputPath |
||||
into "$projectDir/classes" |
||||
} |
||||
|
||||
task preJar(type:Copy,dependsOn: guard ? 'compile_encrypt_javas' : 'compile_plain_javas'){ |
||||
from "$projectDir/classes" |
||||
into "$projectDir/transform-classes" |
||||
include "**/*.*" |
||||
} |
||||
jar.dependsOn("preJar") |
||||
|
||||
task makeJar(type: Jar,dependsOn: preJar){ |
||||
from fileTree(dir: "$projectDir/transform-classes") |
||||
baseName pluginPre |
||||
appendix pluginName |
||||
version pluginVersion |
||||
destinationDir = file("$buildDir/libs") |
||||
|
||||
doLast(){ |
||||
delete file("$projectDir/classes") |
||||
delete file("$projectDir/transform-classes") |
||||
} |
||||
} |
||||
|
||||
task copyFile(type: Copy,dependsOn: ["makeJar"]){ |
||||
from "$buildDir/libs" |
||||
from("$projectDir/lib") { |
||||
include "*.jar" |
||||
} |
||||
from "$projectDir/plugin.xml" |
||||
into file("$buildDir/temp/plugin") |
||||
} |
||||
|
||||
task zip(type:Zip,dependsOn:["copyFile"]){ |
||||
from "$buildDir/temp/plugin" |
||||
destinationDir file("$buildDir/install") |
||||
baseName pluginPre |
||||
appendix pluginName |
||||
version pluginVersion |
||||
} |
||||
|
||||
//控制build时包含哪些文件,排除哪些文件 |
||||
processResources { |
||||
// exclude everything |
||||
// 用*.css没效果 |
||||
// exclude '**/*.css' |
||||
// except this file |
||||
// include 'xx.xml' |
||||
} |
||||
|
||||
/*读取plugin.xml中的version*/ |
||||
def getPluginInfo(){ |
||||
def xmlFile = file("plugin.xml") |
||||
if (!xmlFile.exists()) { |
||||
return ["id":"none", "version":"1.0.0"] |
||||
} |
||||
def plugin = new XmlParser().parse(xmlFile) |
||||
def version = plugin.version[0].text() |
||||
def id = plugin.id[0].text() |
||||
return ["id":id,"version":version] |
||||
} |
||||
|
||||
repositories { |
||||
mavenLocal() |
||||
maven { |
||||
url = uri('http://mvn.finedevelop.com/repository/maven-public/') |
||||
} |
||||
} |
||||
|
||||
dependencies { |
||||
//使用本地jar |
||||
implementation fileTree(dir: 'lib', include: ['**/*.jar']) |
||||
implementation fileTree(dir: libPath, include: ['**/*.jar']) |
||||
} |
||||
|
||||
|
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||
<project> |
||||
<target name="compile_encrypt_javas" depends="copyFiles"> |
||||
<echo message="加密文件"/> |
||||
<echo message="${projectDir}"/> |
||||
<taskdef name="pretreatment" classname="com.fr.plugin.pack.PluginPretreatmentTask"> |
||||
<classpath refid="compile.classpath"/> |
||||
</taskdef> |
||||
<pretreatment baseDir="${projectDir}"/> |
||||
</target> |
||||
<target name="compile_plain_javas" depends="copyFiles"> |
||||
</target> |
||||
</project> |
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><plugin> |
||||
<id>com.tptj.demo.hg.cell.value.provider.v10</id> |
||||
<name><![CDATA[ cell value provider]]></name> |
||||
<active>yes</active> |
||||
<version>1.0</version> |
||||
<env-version>10.0</env-version> |
||||
<vendor>tptj</vendor> |
||||
<jartime>2019-07-18</jartime> |
||||
<description><![CDATA[ ]]></description> |
||||
<change-notes><![CDATA[]]></change-notes> |
||||
<main-package>com.tptj.demo.hg.cell.value.provider</main-package> |
||||
<function-recorder class="com.tptj.demo.hg.cell.value.provider.Demo"/> |
||||
<extra-report> |
||||
<CellValueProvider class="com.tptj.demo.hg.cell.value.provider.Demo"/> |
||||
</extra-report> |
||||
</plugin> |
@ -0,0 +1,52 @@
|
||||
package com.tptj.demo.hg.cell.value.provider; |
||||
|
||||
import com.fr.base.Style; |
||||
import com.fr.intelli.record.Focus; |
||||
import com.fr.record.analyzer.EnableMetrics; |
||||
import com.fr.report.cell.CellElement; |
||||
import com.fr.report.cell.cellattr.CellGUIAttr; |
||||
import com.fr.report.fun.impl.AbstractCellValueProvider; |
||||
import com.fr.stable.script.CalculatorProvider; |
||||
|
||||
/** |
||||
* @author 秃破天际 |
||||
* @version 10.0 |
||||
* Created by 秃破天际 on 2021/6/9 |
||||
**/ |
||||
@EnableMetrics |
||||
public class Demo extends AbstractCellValueProvider { |
||||
@Override |
||||
@Focus(id="com.tptj.demo.hg.cell.value.provider.v10",text = "CellValueProvider") |
||||
public Object process(Object oriValue, CalculatorProvider calculatorProvider) { |
||||
if( !"Test".equals(oriValue) ){ |
||||
return oriValue; |
||||
} |
||||
return oriValue + " Demo"; |
||||
} |
||||
|
||||
@Override |
||||
public Object processBeforeToTag(Object oriValue, CellGUIAttr attr, Style style, int height, int width) { |
||||
if( !"Test Demo".equals(oriValue) ){ |
||||
return oriValue; |
||||
} |
||||
return oriValue +" Tag"; |
||||
} |
||||
|
||||
private static final int M_HEIGHT = 1; |
||||
private static final int M_WIDTH = 2; |
||||
|
||||
@Override |
||||
public int prepare2ShrinkRealWidthOrHeight4Cell(CellElement cell, int height, int width, int mode) { |
||||
Object value = cell.getValue(); |
||||
if( !"Test Demo".equals(value) ){ |
||||
return -1; |
||||
} |
||||
if( M_HEIGHT == mode ){ |
||||
return height*2; |
||||
} |
||||
if( M_WIDTH == mode ){ |
||||
return width*2; |
||||
} |
||||
return -1; |
||||
} |
||||
} |
Loading…
Reference in new issue