Commit 966ab13e authored by arawankar's avatar arawankar

-Bug fixing in man power requirement module

MPReqmntCloseLocal.java
MPReqmntCloseRemote.java
MPReqmntConfirmationLocal.java
MPReqmntConfirmationRemote.java
MPReqmtnIC.java
MPReqmtnICLocal.java
MPReqmtnICRemote.java
PayarrToProc.java
UpdateNoOfCVICLocal.java
UpdateNoOfCVICRemote.java
UpdateNoOfCVPrcLocal.java
UpdateNoOfCVPrcRemote.java
mpreqmnt11.xml
mpreqmnt12.xml
mpreqmnt21.xml
mpreqmnt22.xml
d_mpreuire_edit11.srd
d_mpreuire_edit12.srd
d_mpreuire_edit21.srd
d_mpreuire_edit22.srd


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@192161 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 507efb6c
package ibase.webitm.ejb.adm;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
......@@ -10,7 +11,7 @@ import javax.ejb.Local;
import org.w3c.dom.Document;
@Local
public interface MPReqmtnICLocal
public interface MPReqmtnICLocal extends ValidatorLocal
{
public String wfValData() throws RemoteException, ITMException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException;
......
package ibase.webitm.ejb.adm;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
......@@ -10,7 +11,7 @@ import javax.ejb.Remote;
import org.w3c.dom.Document;
@Remote
public interface MPReqmtnICRemote
public interface MPReqmtnICRemote extends ValidatorRemote
{
public String wfValData() throws RemoteException, ITMException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException;
......
......@@ -80,6 +80,7 @@ public class PayarrToProc extends ValidatorEJB implements PayarrToProcLocal,Paya
StringBuffer errStringXml = new StringBuffer("<?xml version = \"1.0\"?> \r\n <Root> <Errors>");
String sql = "";
String empCode = "", status = "", prdCode = "", procType = "", paySite = "";
String msgType = "";//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]
int userLevel = 0;
Date fromDate = null, relieveDate = null;
try
......@@ -138,12 +139,26 @@ public class PayarrToProc extends ValidatorEJB implements PayarrToProcLocal,Paya
errCode = "VTPAYARR04";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]start
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]end
}
if(status.equalsIgnoreCase("S"))
{
errCode = "VTPAYARR01";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]start
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]end
}
sql = "select usr_lev from users where code = ?";
......@@ -192,6 +207,13 @@ public class PayarrToProc extends ValidatorEJB implements PayarrToProcLocal,Paya
errCode = "VTPAYARR06";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]start
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]end
}
}
}
......@@ -200,6 +222,13 @@ public class PayarrToProc extends ValidatorEJB implements PayarrToProcLocal,Paya
errCode = "VTPAYARR04";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]start
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]end
}
}
else if("prd_code".equalsIgnoreCase(childNodeName))
......@@ -233,6 +262,13 @@ public class PayarrToProc extends ValidatorEJB implements PayarrToProcLocal,Paya
errCode = "VTPAYARR05";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]start
msgType = errorType(conn, errCode);
if (msgType.equalsIgnoreCase("E"))
{
break;
}
//Modified by Ahmed on 31-AUG-2018[To break and return error message when validation fails]end
}
empCode = checkNull(genericUtility.getColumnValue("emp_code", dom));
......
package ibase.webitm.ejb.adm;
import ibase.webitm.ejb.ValidatorLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
......@@ -9,7 +10,7 @@ import javax.ejb.Local;
import org.w3c.dom.Document;
@Local
public interface UpdateNoOfCVICLocal
public interface UpdateNoOfCVICLocal extends ValidatorLocal
{
public String wfValData() throws RemoteException,ITMException;
public String itemChanged() throws RemoteException,ITMException;
......
package ibase.webitm.ejb.adm;
import ibase.webitm.ejb.ValidatorRemote;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
......@@ -9,7 +10,7 @@ import javax.ejb.Remote;
import org.w3c.dom.Document;
@Remote
public interface UpdateNoOfCVICRemote
public interface UpdateNoOfCVICRemote extends ValidatorRemote
{
public String wfValData() throws RemoteException,ITMException;
public String itemChanged() throws RemoteException,ITMException;
......
......@@ -4,12 +4,13 @@ import javax.ejb.Local;
import org.w3c.dom.Document;
import ibase.webitm.ejb.ProcessLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
@Local
public interface UpdateNoOfCVPrcLocal
public interface UpdateNoOfCVPrcLocal extends ProcessLocal
{
public String getData(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
......
......@@ -4,12 +4,13 @@ import javax.ejb.Remote;
import org.w3c.dom.Document;
import ibase.webitm.ejb.ProcessRemote;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
@Remote
public interface UpdateNoOfCVPrcRemote
public interface UpdateNoOfCVPrcRemote extends ProcessRemote
{
public String getData(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
public String process(String xmlString, String xmlString2, String windowName, String xtraParams) throws RemoteException,ITMException;
......
package ibase.webitm.ejb.adm.adv;
import ibase.webitm.ejb.ActionHandlerLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
......@@ -8,7 +9,11 @@ import java.sql.Connection;
import javax.ejb.Local;
@Local
public interface MPReqmntCloseLocal
//Modified by Anjali R. on [20/10/2018][Start]
//public interface MPReqmntCloseLocal
public interface MPReqmntCloseLocal extends ActionHandlerLocal
//Modified by Anjali R. on [20/10/2018][nd]
{
public String mprreqClose() throws RemoteException, ITMException;
public String mprreqClose( String tranID, String xtraParams,String forcedFlag )throws RemoteException, ITMException;
......
package ibase.webitm.ejb.adm.adv;
import ibase.webitm.ejb.ActionHandlerRemote;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
......@@ -8,7 +9,10 @@ import java.sql.Connection;
import javax.ejb.Remote;
@Remote
public interface MPReqmntCloseRemote
//Modified by Anjali R. on [20/10/2018][Start]
//public interface MPReqmntCloseRemote
public interface MPReqmntCloseRemote extends ActionHandlerRemote
//Modified by Anjali R. on [20/10/2018][End]
{
public String mprreqClose() throws RemoteException, ITMException;
public String mprreqClose( String tranID, String xtraParams,String forcedFlag )throws RemoteException, ITMException;
......
package ibase.webitm.ejb.adm.adv;
import ibase.webitm.ejb.ActionHandlerLocal;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
......@@ -8,7 +9,10 @@ import java.sql.Connection;
import javax.ejb.Local;
@Local
public interface MPReqmntConfirmationLocal
//Modified by Anjali R. on [20/10/2018][Start]
//public interface MPReqmntConfirmationLocal
public interface MPReqmntConfirmationLocal extends ActionHandlerLocal
//Modified by Anjali R. on [20/10/2018][End]
{
public String mpreqApprove() throws RemoteException, ITMException;
public String mpreqApprove( String tranID,String xtraParams,String forcedFlag )throws RemoteException, ITMException;
......
package ibase.webitm.ejb.adm.adv;
import ibase.webitm.ejb.ActionHandlerRemote;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
......@@ -8,7 +9,10 @@ import java.sql.Connection;
import javax.ejb.Remote;
@Remote
public interface MPReqmntConfirmationRemote
//Modified by Anjali R. on [20/10/2018][Start]
//public interface MPReqmntConfirmationRemote
public interface MPReqmntConfirmationRemote extends ActionHandlerRemote
//Modified by Anjali R. on [20/10/2018][End]
{
public String mpreqApprove() throws RemoteException, ITMException;
public String mpreqApprove( String tranID,String xtraParams,String forcedFlag )throws RemoteException, ITMException;
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
$PBExportHeader$d_mprequiredet_brow.srd
release 9;
datawindow(units=1 timer_interval=0 color=79741120 processing=1 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no grid.lines=0 )
header(height=19 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=20 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=vac_no dbname="mpreqdet.vac_no" )
column=(type=long update=yes updatewhereclause=yes key=yes name=line_no dbname="mpreqdet.line_no" )
column=(type=char(40) update=yes updatewhereclause=yes name=candidate_name dbname="mpreqdet.candidate_name" )
column=(type=char(1) update=yes updatewhereclause=yes name=int_ext dbname="mpreqdet.int_ext" )
column=(type=char(100) update=yes updatewhereclause=yes name=background dbname="mpreqdet.background" )
column=(type=char(40) update=yes updatewhereclause=yes name=address_tel dbname="mpreqdet.address_tel" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"mpreqdet~" ) COLUMN(NAME=~"mpreqdet.vac_no~") COLUMN(NAME=~"mpreqdet.line_no~") COLUMN(NAME=~"mpreqdet.candidate_name~") COLUMN(NAME=~"mpreqdet.int_ext~") COLUMN(NAME=~"mpreqdet.background~") COLUMN(NAME=~"mpreqdet.address_tel~")WHERE( EXP1 =~"~~~"mpreqdet~~~".~~~"vac_no~~~"~" OP =~"=~" EXP2 =~":mvac_no~" ) ) ARG(NAME = ~"mvac_no~" TYPE = string) " update="mpreqdet" updatewhere=1 updatekeyinplace=no arguments=(("mvac_no", string)) )
text(band=header alignment="0" text="Line No" border="6" color="0" x="2" y="2" height="16" width="47" html.valueishtml="0" name=line_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Internal/External" border="6" color="0" x="255" y="2" height="16" width="115" html.valueishtml="0" name=int_ext_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Background" border="6" color="0" x="372" y="2" height="16" width="272" html.valueishtml="0" name=background_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Address / Tel." border="6" color="0" x="646" y="2" height="16" width="228" html.valueishtml="0" name=address_tel_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Vacancy No" border="6" color="0" x="876" y="2" height="16" width="94" html.valueishtml="0" name=vac_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=header alignment="2" text="Candidate Name" border="6" color="0" x="51" y="2" height="16" width="202" html.valueishtml="0" name=candidate_name_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="0" x="2" y="2" height="16" width="47" format="0" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="0" x="51" y="2" height="16" width="202" format="[general]" html.valueishtml="0" name=candidate_name visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="0" x="255" y="2" height="16" width="115" format="[general]" html.valueishtml="0" name=int_ext tag="Internal / External" visible="1" edit.limit=1 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="0" x="372" y="2" height="16" width="272" format="[general]" html.valueishtml="0" name=background tag="Background of the candidate" visible="1" edit.limit=100 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="0" x="646" y="2" height="16" width="228" format="[general]" html.valueishtml="0" name=address_tel tag="Contact address / telephone no." visible="1" edit.limit=40 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="0" x="876" y="2" height="16" width="94" format="[general]" html.valueishtml="0" name=vac_no visible="1" edit.limit=10 edit.case=any edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
This diff is collapsed.
$PBExportHeader$d_mprequiredet_edit.srd
release 9;
datawindow(units=1 timer_interval=0 color=79741120 processing=0 HTMLDW=no print.printername="" print.documentname="" print.orientation = 0 print.margin.left = 24 print.margin.right = 24 print.margin.top = 24 print.margin.bottom = 24 print.paper.source = 0 print.paper.size = 0 print.canusedefaultprinter=yes print.prompt=no print.buttons=no print.preview.buttons=no print.cliptext=no print.overrideprintjob=no print.collate=yes hidegrayline=no )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=200 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=vac_no dbname="mpreqdet.vac_no" )
column=(type=long update=yes updatewhereclause=yes key=yes name=line_no dbname="mpreqdet.line_no" )
column=(type=char(40) update=yes updatewhereclause=yes name=candidate_name dbname="mpreqdet.candidate_name" )
column=(type=char(1) update=yes updatewhereclause=yes name=int_ext dbname="mpreqdet.int_ext" initial="E" values="Internal I/External E/" )
column=(type=char(100) update=yes updatewhereclause=yes name=background dbname="mpreqdet.background" )
column=(type=char(40) update=yes updatewhereclause=yes name=address_tel dbname="mpreqdet.address_tel" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"mpreqdet~" ) COLUMN(NAME=~"mpreqdet.vac_no~") COLUMN(NAME=~"mpreqdet.line_no~") COLUMN(NAME=~"mpreqdet.candidate_name~") COLUMN(NAME=~"mpreqdet.int_ext~") COLUMN(NAME=~"mpreqdet.background~") COLUMN(NAME=~"mpreqdet.address_tel~")) " update="mpreqdet" updatewhere=0 updatekeyinplace=no )
text(band=detail alignment="1" text="Line No :" border="0" color="0" x="381" y="34" height="16" width="103" html.valueishtml="0" name=line_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="255" x="489" y="34" height="16" width="43" format="0" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Vacancy No:" border="0" color="0" x="52" y="34" height="16" width="90" html.valueishtml="0" name=vac_no_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Candidate Name :" border="0" color="0" x="39" y="58" height="17" width="103" html.valueishtml="0" name=candidate_name_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Background :" border="0" color="0" x="39" y="106" height="17" width="103" html.valueishtml="0" name=background_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
text(band=detail alignment="1" text="Address / Tel. :" border="0" color="0" x="39" y="156" height="16" width="103" html.valueishtml="0" name=address_tel_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="0" x="148" y="34" height="16" width="99" format="[general]" html.valueishtml="0" name=vac_no visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=30 border="5" color="0" x="148" y="106" height="42" width="384" format="[general]" html.valueishtml="0" name=background tag="Background of the candidate" visible="1" edit.limit=100 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.autovscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=4 alignment="0" tabsequence=20 border="5" color="0" x="148" y="82" height="16" width="124" format="[general]" html.valueishtml="0" name=int_ext tag="Internal / External" visible="1" ddlb.limit=1 ddlb.allowedit=no ddlb.case=upper ddlb.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Internal/External :" border="0" color="0" x="38" y="82" height="16" width="104" html.valueishtml="0" name=int_ext_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="79741120" )
column(band=detail id=6 alignment="0" tabsequence=40 border="5" color="0" x="148" y="156" height="16" width="384" format="[general]" html.valueishtml="0" name=address_tel tag="Contact address / telephone no." visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=10 border="5" color="0" x="148" y="58" height="16" width="384" format="[general]" html.valueishtml="0" name=candidate_name visible="1" edit.limit=40 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
htmltable(border="1" )
htmlgen(clientevents="1" clientvalidation="1" clientcomputedfields="1" clientformatting="0" clientscriptable="0" generatejavascript="1" encodeselflinkargs="1" netscapelayers="0" )
export.xml(headgroups="1" includewhitespace="0" metadatatype=0 savemetadata=0 )
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment