Commit 62ae4d36 authored by awarekar's avatar awarekar

- Total calculation for quantity, price and period wise quantity.

- validation for invalid (past) years.
- css apply to wizard.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@199734 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 37718286
...@@ -250,6 +250,30 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB ...@@ -250,6 +250,30 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB
rs = null; rs = null;
pstmt.close(); pstmt.close();
pstmt = null; pstmt = null;
// Validation for the PAST YEAR
String currentYear = String.valueOf(Calendar.getInstance().get(Calendar.YEAR));
int currentYearInt = Integer.valueOf(currentYear.substring(2));
System.out.println("currentYear= "+currentYearInt);
String[] arrOfenterYear = acctPrd.split("-");
for (int i=0; i < arrOfenterYear.length; i++)
{
if( i == 0 )
{
int fYear = Integer.valueOf(arrOfenterYear[i]);
System.out.println("1 -"+fYear);
if( fYear < currentYearInt)
{
System.out.println("1 - Year less");
errCode = "CREPASTPLN ";
errString = getErrorString("acct_prd", errCode, userId);
break;
}
}
}
} }
} }
...@@ -414,21 +438,11 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB ...@@ -414,21 +438,11 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB
siteCode = userInfo.getSiteCode(); siteCode = userInfo.getSiteCode();
userId = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" ); userId = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "loginCode" );
//chgTerm = genericUtility.getValueFromXTRA_PARAMS( xtraParams, "chgTerm" );
DateFormat dtFormat = new SimpleDateFormat(getApplDateFormat()); DateFormat dtFormat = new SimpleDateFormat(getApplDateFormat());
java.util.Date date = Calendar.getInstance().getTime(); java.util.Date date = Calendar.getInstance().getTime();
currDate = dtFormat.format( date ); currDate = dtFormat.format( date );
/*Calendar cal = Calendar.getInstance();
cal.add(Calendar.MONTH, -1);
Date result = cal.getTime();
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
String prevPrd = String.valueOf(sdf.format(result));
String curPrd = String.valueOf(sdf.format(date));
prevPrd = prevPrd.substring(0,prevPrd.length()-2);
curPrd = curPrd.substring(0,curPrd.length()-2);*/
if ((objContext != null) && (objContext.trim().length() > 0)) if ((objContext != null) && (objContext.trim().length() > 0))
{ {
currentFormNo = Integer.parseInt(objContext); currentFormNo = Integer.parseInt(objContext);
...@@ -439,14 +453,12 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB ...@@ -439,14 +453,12 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB
switch (currentFormNo) switch (currentFormNo)
{ {
case 1: case 1:
System.out.println("AMM x==> current column"+currentColumn); System.out.println("AMM x==> current column"+currentColumn);
parentNodeList = dom.getElementsByTagName("Detail1"); parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0); parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes(); childNodeList = parentNode.getChildNodes();
//valueXmlString.append("<Detail1>");
childNodeListLength = childNodeList.getLength(); childNodeListLength = childNodeList.getLength();
do do
{ {
...@@ -461,16 +473,12 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB ...@@ -461,16 +473,12 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB
while ((ctr < childNodeListLength) && (!childNodeName.equals(currentColumn))); while ((ctr < childNodeListLength) && (!childNodeName.equals(currentColumn)));
System.out.println("AMM x==> IC CURRENT COLUMN 111 " + currentColumn + "]"); System.out.println("AMM x==> IC CURRENT COLUMN 111 " + currentColumn + "]");
//valueXmlString.append("<Detail1>\r\n");
valueXmlString.append( "<Detail1 domID='" + count + "'>"); valueXmlString.append( "<Detail1 domID='" + count + "'>");
if ( "itm_default".equalsIgnoreCase( currentColumn ) ) if ( "itm_default".equalsIgnoreCase( currentColumn ) )
{ {
valueXmlString.append( "<attribute selected=\"Y\" updateFlag=\"E\" status=\"O\" pkNames=\"\"/>\r\n"); valueXmlString.append( "<attribute selected=\"Y\" updateFlag=\"E\" status=\"O\" pkNames=\"\"/>\r\n");
valueXmlString.append( "<tran_date><![CDATA[").append( currDate ).append( "]]></tran_date>\r\n" ); valueXmlString.append( "<tran_date><![CDATA[").append( currDate ).append( "]]></tran_date>\r\n" );
/*valueXmlString.append( "<chg_date><![CDATA[" ).append( currDate ).append( "]]></chg_date>\r\n" );
valueXmlString.append( "<chg_user><![CDATA[" ).append( userId ).append( "]]></chg_user>\r\n" );
valueXmlString.append( "<chg_term><![CDATA[" ).append( chgTerm ).append( "]]></chg_term>\r\n" );*/
valueXmlString.append( "<site_code><![CDATA[" ).append( siteCode ).append( "]]></site_code>\r\n" ); valueXmlString.append( "<site_code><![CDATA[" ).append( siteCode ).append( "]]></site_code>\r\n" );
valueXmlString.append( "<cust_code><![CDATA[" ).append( nullVar ).append( "]]></cust_code>\r\n" ); valueXmlString.append( "<cust_code><![CDATA[" ).append( nullVar ).append( "]]></cust_code>\r\n" );
...@@ -608,12 +616,11 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB ...@@ -608,12 +616,11 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB
String sql=""; String sql="";
String priclist=""; String priclist="";
int initialQnty = 0; int initialQnty = 0;
String itemSer="",acctPrd=""; String itemSer="",acctPrd="",remark="";
System.out.println("itemChanged:currentFormNo:" + currentFormNo); System.out.println("itemChanged:currentFormNo:" + currentFormNo);
parentNodeList = dom.getElementsByTagName("Detail2"); parentNodeList = dom.getElementsByTagName("Detail2");
parentNode = parentNodeList.item(0); parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes(); childNodeList = parentNode.getChildNodes();
//valueXmlString.append("<Detail2>");
childNodeListLength = childNodeList.getLength(); childNodeListLength = childNodeList.getLength();
do do
{ {
...@@ -635,6 +642,8 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB ...@@ -635,6 +642,8 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB
priclist = checkNull(genericUtility.getColumnValue("price_list", dom1)); priclist = checkNull(genericUtility.getColumnValue("price_list", dom1));
itemSer = checkNull(genericUtility.getColumnValue("item_ser", dom1)); itemSer = checkNull(genericUtility.getColumnValue("item_ser", dom1));
acctPrd = checkNull(genericUtility.getColumnValue("acct_prd", dom1)); acctPrd = checkNull(genericUtility.getColumnValue("acct_prd", dom1));
remark = checkNull(genericUtility.getColumnValue("remarks", dom1));
System.out.println("aaa===>> remarks "+remark);
//String lineNo = genericUtility.getColumnValue("line_no", dom); //String lineNo = genericUtility.getColumnValue("line_no", dom);
//Period Code //Period Code
...@@ -700,10 +709,22 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB ...@@ -700,10 +709,22 @@ public class SalesBudgetCustWizEJB extends ValidatorEJB
valueXmlString.append("<line_no><![CDATA[" + count + "]]></line_no>"); valueXmlString.append("<line_no><![CDATA[" + count + "]]></line_no>");
valueXmlString.append("<rate><![CDATA[" + rate + "]]></rate>"); valueXmlString.append("<rate><![CDATA[" + rate + "]]></rate>");
valueXmlString.append("<net_amt><![CDATA[" + nullVar + "]]></net_amt>"); valueXmlString.append("<net_amt><![CDATA[" + nullVar + "]]></net_amt>");
valueXmlString.append("<remarks><![CDATA[" + remark + "]]></remarks>");
valueXmlString.append("<item_quantity><![CDATA[" + initialQnty + "]]></item_quantity>");
valueXmlString.append("<item_price><![CDATA[" + initialQnty + "]]></item_price>");
valueXmlString.append("<prd_quantity><![CDATA[" + initialQnty + "]]></prd_quantity>");
valueXmlString.append("<total_quantity><![CDATA[" + initialQnty + "]]></total_quantity>");
valueXmlString.append("<total_price><![CDATA[" + initialQnty + "]]></total_price>");
//valueXmlString.append("<item_no><![CDATA[" + itemNo + "]]></item_no>");
valueXmlString.append("</Detail2>"); valueXmlString.append("</Detail2>");
count ++; count ++;
} }
} }
System.out.println("x==>> valueXmlString == > "+valueXmlString);
rs.close(); rs.close();
rs = null; rs = null;
pstmt.close(); pstmt.close();
......
$PBExportHeader$d_sales_budget_cust11.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 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=23 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=22 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="sales_budget_cust.tran_id" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="sales_budget_cust.site_code" )
column=(type=char(3) update=yes updatewhereclause=yes name=tran_type dbname="sales_budget_cust.tran_type" )
column=(type=char(6) update=yes updatewhereclause=yes name=acct_prd dbname="sales_budget_cust.acct_prd" )
column=(type=char(5) update=yes updatewhereclause=yes name=item_ser dbname="sales_budget_cust.item_ser" )
column=(type=char(5) update=yes updatewhereclause=yes name=price_list dbname="sales_budget_cust.price_list" )
column=(type=char(20) update=yes updatewhereclause=yes name=bud_cat dbname="sales_budget_cust.bud_cat" )
column=(type=char(1) update=yes updatewhereclause=yes name=confirmed dbname="sales_budget_cust.confirmed" )
column=(type=datetime update=yes updatewhereclause=yes name=conf_date dbname="sales_budget_cust.conf_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__aprv dbname="sales_budget_cust.emp_code__aprv" )
column=(type=datetime update=yes updatewhereclause=yes name=add_date dbname="sales_budget_cust.add_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=add_user dbname="sales_budget_cust.add_user" )
column=(type=char(300) update=yes updatewhereclause=yes name=add_term dbname="sales_budget_cust.add_term" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="sales_budget_cust.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="sales_budget_cust.chg_user" )
column=(type=char(300) update=yes updatewhereclause=yes name=chg_term dbname="sales_budget_cust.chg_term" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="sales_budget_cust.tran_date" )
column=(type=char(200) update=yes updatewhereclause=yes name=remarks dbname="sales_budget_cust.remarks" )
column=(type=char(15) updatewhereclause=yes name=employee_emp_fname dbname="employee.emp_fname" )
column=(type=char(15) updatewhereclause=yes name=employee_emp_mname dbname="employee.emp_mname" )
column=(type=char(15) updatewhereclause=yes name=employee_emp_lname dbname="employee.emp_lname" )
column=(type=char(10) update=yes updatewhereclause=yes name=cust_code dbname="sales_budget_cust.cust_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=pos_code dbname="sales_budget_cust.pos_code" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=net_amt dbname="sales_budget_cust.net_amt" )
column=(type=char(60) updatewhereclause=yes name=org_structure_pos_descr dbname="org_structure.pos_descr" )
column=(type=char(60) updatewhereclause=yes name=org_structure_descr dbname="org_structure.descr" )
column=(type=char(40) updatewhereclause=yes name=pricelist_mst_descr dbname="pricelist_mst.descr" )
column=(type=char(50) updatewhereclause=yes name=cust_name dbname="customer.cust_name" )
column=(type=char(40) updatewhereclause=yes name=itemser_descr dbname="itemser.descr" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sales_budget_cust~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"org_structure~" ) TABLE(NAME=~"pricelist_mst~" ) TABLE(NAME=~"customer~" ) TABLE(NAME=~"itemser~" ) COLUMN(NAME=~"sales_budget_cust.tran_id~") COLUMN(NAME=~"sales_budget_cust.site_code~") COLUMN(NAME=~"sales_budget_cust.tran_type~") COLUMN(NAME=~"sales_budget_cust.acct_prd~") COLUMN(NAME=~"sales_budget_cust.item_ser~") COLUMN(NAME=~"sales_budget_cust.price_list~") COLUMN(NAME=~"sales_budget_cust.bud_cat~") COLUMN(NAME=~"sales_budget_cust.confirmed~") COLUMN(NAME=~"sales_budget_cust.conf_date~") COLUMN(NAME=~"sales_budget_cust.emp_code__aprv~") COLUMN(NAME=~"sales_budget_cust.add_date~") COLUMN(NAME=~"sales_budget_cust.add_user~") COLUMN(NAME=~"sales_budget_cust.add_term~") COLUMN(NAME=~"sales_budget_cust.chg_date~") COLUMN(NAME=~"sales_budget_cust.chg_user~") COLUMN(NAME=~"sales_budget_cust.chg_term~") COLUMN(NAME=~"sales_budget_cust.tran_date~") COLUMN(NAME=~"sales_budget_cust.remarks~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"sales_budget_cust.cust_code~") COLUMN(NAME=~"sales_budget_cust.pos_code~") COLUMN(NAME=~"sales_budget_cust.net_amt~") COMPUTE(NAME=~"org_structure.descr as pos_descr~") COLUMN(NAME=~"org_structure.descr~") COLUMN(NAME=~"pricelist_mst.descr~") COLUMN(NAME=~"customer.cust_name~") COLUMN(NAME=~"itemser.descr~") JOIN (LEFT=~"sales_budget_cust.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"sales_budget_cust.emp_code__aprv~" ) JOIN (LEFT=~"sales_budget_cust.pos_code~" OP =~"=~"RIGHT=~"org_structure.pos_code~" ) JOIN (LEFT=~"sales_budget_cust.price_list~" OP =~"=~"RIGHT=~"pricelist_mst.price_list~" ) JOIN (LEFT=~"sales_budget_cust.cust_code~" OP =~"=~"RIGHT=~"customer.cust_code~" ) JOIN (LEFT=~"sales_budget_cust.item_ser~" OP =~"=~"RIGHT=~"itemser.item_ser~" )WHERE( EXP1 =~"~~~"SALES_BUDGET_CUST~~~".~~~"TRAN_DATE~~~"~" OP =~">=~" EXP2 =~":from_date~" LOGIC =~"and~" ) WHERE( EXP1 =~"~~~"SALES_BUDGET_CUST~~~".~~~"TRAN_DATE~~~"~" OP =~"<=~" EXP2 =~":to_date~" ) ) ARG(NAME = ~"from_date~" TYPE = date) ARG(NAME = ~"to_date~" TYPE = date) " update="SALES_BUDGET_CUST" updatewhere=0 updatekeyinplace=no arguments=(("from_date", date),("to_date", date)) )
text(band=header alignment="2" text="Tran Id" border="6" color="33554432" x="2" y="1" height="19" width="66" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Site Code" border="6" color="33554432" x="70" y="2" height="19" width="73" html.valueishtml="0" name=site_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Tran Date" border="6" color="33554432" x="145" y="2" height="19" width="68" html.valueishtml="0" name=tran_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Tran Type" border="6" color="33554432" x="215" y="2" height="19" width="72" html.valueishtml="0" name=tran_type_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Acct Prd" border="6" color="33554432" x="289" y="2" height="19" width="66" html.valueishtml="0" name=acct_prd_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Item Ser" border="6" color="33554432" x="357" y="2" height="19" width="74" html.valueishtml="0" name=item_ser_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Price List" border="6" color="33554432" x="433" y="2" height="19" width="80" html.valueishtml="0" name=price_list_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Budget Category" border="6" color="33554432" x="515" y="2" height="19" width="116" html.valueishtml="0" name=bud_cat_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Confirmed" border="6" color="33554432" x="633" y="2" height="19" width="60" html.valueishtml="0" name=confirmed_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Conf Date" border="6" color="33554432" x="695" y="2" height="19" width="132" html.valueishtml="0" name=conf_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Emp Code Aprv" border="6" color="33554432" x="971" y="2" height="19" width="94" html.valueishtml="0" name=emp_code__aprv_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Remarks" border="6" color="33554432" x="829" y="2" height="19" width="140" html.valueishtml="0" name=remarks_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Add Date" border="6" color="33554432" x="1337" y="2" height="19" width="105" html.valueishtml="0" name=add_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Add User" border="6" color="33554432" x="1444" y="2" height="19" width="66" html.valueishtml="0" name=add_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Add Term" border="6" color="33554432" x="1512" y="2" height="19" width="96" html.valueishtml="0" name=add_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Chg Date" border="6" color="33554432" x="1610" y="2" height="19" width="132" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Chg User" border="6" color="33554432" x="1744" y="2" height="19" width="66" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Chg Term" border="6" color="33554432" x="1812" y="2" height="19" width="96" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Employee Emp Fname" border="6" color="134217734" x="1067" y="1" height="19" width="88" html.valueishtml="0" name=employee_emp_fname_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Employee Emp Mname" border="6" color="134217734" x="1157" y="1" height="19" width="88" html.valueishtml="0" name=employee_emp_mname_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Employee Emp Lname" border="6" color="134217734" x="1247" y="1" height="19" width="88" html.valueishtml="0" name=employee_emp_lname_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="0" text="Cust Code" border="0" color="33554432" x="1910" y="1" height="16" width="78" html.valueishtml="0" name=cust_code_t visible="1" font.face="Liberation Sans" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=header alignment="0" text="Pos Code" border="0" color="33554432" x="1990" y="1" height="16" width="78" html.valueishtml="0" name=pos_code_t visible="1" font.face="Liberation Sans" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=header alignment="0" text="Net Amt" border="0" color="33554432" x="2070" y="1" height="16" width="342" html.valueishtml="0" name=net_amt_t visible="1" font.face="Liberation Sans" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=header alignment="0" text="Org Structure Pos Descr" border="0" color="33554432" x="2414" y="1" height="17" width="478" html.valueishtml="0" name=org_structure_pos_descr_t visible="1" font.face="Liberation Sans" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=header alignment="0" text="Org Structure Descr" border="0" color="33554432" x="2894" y="1" height="17" width="478" html.valueishtml="0" name=org_structure_descr_t visible="1" font.face="Liberation Sans" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=header alignment="0" text="Pricelist Mst Descr" border="0" color="33554432" x="3374" y="1" height="17" width="318" html.valueishtml="0" name=pricelist_mst_descr_t visible="1" font.face="Liberation Sans" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=header alignment="0" text="Customer Cust Name" border="0" color="33554432" x="3694" y="1" height="17" width="398" html.valueishtml="0" name=cust_name_t visible="1" font.face="Liberation Sans" font.height="-11" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
text(band=header alignment="0" text="Itemser Descr" border="0" color="0" x="4094" y="1" height="15" width="318" html.valueishtml="0" name=itemser_descr_t visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="0" x="2" y="2" height="16" width="66" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="0" x="70" y="2" height="16" width="73" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="0" x="145" y="2" height="16" width="68" format="[shortdate] [time]" html.valueishtml="0" name=tran_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="0" x="215" y="2" height="16" width="72" format="[general]" html.valueishtml="0" name=tran_type visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=4 alignment="0" tabsequence=32766 border="5" color="0" x="289" y="2" height="16" width="66" format="[general]" html.valueishtml="0" name=acct_prd visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="0" x="357" y="2" height="16" width="74" format="[general]" html.valueishtml="0" name=item_ser visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="0" x="433" y="2" height="16" width="80" format="[general]" html.valueishtml="0" name=price_list visible="1" edit.limit=5 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="0" x="515" y="2" height="16" width="116" format="[general]" html.valueishtml="0" name=bud_cat visible="1" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="0" x="633" y="2" height="16" width="60" format="[general]" html.valueishtml="0" name=confirmed visible="1" edit.limit=1 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="0" x="695" y="2" height="16" width="132" format="[shortdate] [time]" html.valueishtml="0" name=conf_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="0" x="829" y="2" height="16" width="140" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=200 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="0" x="971" y="2" height="16" width="94" format="[general]" html.valueishtml="0" name=emp_code__aprv visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=19 alignment="0" tabsequence=32766 border="5" color="0" x="1067" y="1" height="15" width="88" format="[general]" html.valueishtml="0" name=employee_emp_fname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="0" x="1157" y="1" height="15" width="88" format="[general]" html.valueishtml="0" name=employee_emp_mname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=21 alignment="0" tabsequence=32766 border="5" color="0" x="1247" y="1" height="15" width="88" format="[general]" html.valueishtml="0" name=employee_emp_lname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="0" x="1337" y="2" height="16" width="105" format="[shortdate] [time]" html.valueishtml="0" name=add_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="0" x="1444" y="2" height="16" width="66" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="0" x="1512" y="2" height="16" width="96" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="0" x="1610" y="2" height="16" width="132" format="[shortdate] [time]" html.valueishtml="0" name=chg_date visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="0" x="1744" y="2" height="16" width="66" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="0" x="1812" y="2" height="16" width="96" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=22 alignment="0" tabsequence=32766 border="0" color="0" x="1910" y="1" height="15" width="78" format="[general]" html.valueishtml="0" name=cust_code visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=23 alignment="0" tabsequence=32766 border="0" color="0" x="1990" y="1" height="15" width="78" format="[general]" html.valueishtml="0" name=pos_code visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=24 alignment="0" tabsequence=32766 border="0" color="0" x="2070" y="1" height="15" width="342" format="[general]" html.valueishtml="0" name=net_amt visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=25 alignment="0" tabsequence=32766 border="0" color="0" x="2414" y="1" height="15" width="478" format="[general]" html.valueishtml="0" name=org_structure_pos_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=26 alignment="0" tabsequence=32766 border="0" color="0" x="2894" y="1" height="15" width="478" format="[general]" html.valueishtml="0" name=org_structure_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=27 alignment="0" tabsequence=32766 border="0" color="0" x="3374" y="1" height="15" width="318" format="[general]" html.valueishtml="0" name=pricelist_mst_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=28 alignment="0" tabsequence=32766 border="0" color="0" x="3694" y="1" height="15" width="398" format="[general]" html.valueishtml="0" name=cust_name visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=29 alignment="0" tabsequence=32766 border="0" color="0" x="4094" y="1" height="15" width="318" format="[general]" html.valueishtml="0" name=itemser_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
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
$PBExportHeader$d_sales_budget_cust12.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 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=24 color="536870912" )
summary(height=4 color="536870912" )
footer(height=0 color="536870912" )
detail(height=27 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="sales_budget_cust_det.tran_id" )
column=(type=decimal(0) update=yes updatewhereclause=yes key=yes name=line_no dbname="sales_budget_cust_det.line_no" )
column=(type=char(6) update=yes updatewhereclause=yes name=prd_code dbname="sales_budget_cust_det.prd_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=item_code dbname="sales_budget_cust_det.item_code" )
column=(type=char(3) update=yes updatewhereclause=yes name=unit dbname="sales_budget_cust_det.unit" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=quantity dbname="sales_budget_cust_det.quantity" initial="0" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=rate dbname="sales_budget_cust_det.rate" initial="0" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=net_amt dbname="sales_budget_cust_det.net_amt" initial="0" )
column=(type=char(200) update=yes updatewhereclause=yes name=remarks dbname="sales_budget_cust_det.remarks" )
column=(type=char(130) updatewhereclause=yes name=item_descr dbname="item.descr" )
column=(type=char(40) updatewhereclause=yes name=uom_descr dbname="uom.descr" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sales_budget_cust_det~" ) TABLE(NAME=~"item~" ) TABLE(NAME=~"uom~" ) COLUMN(NAME=~"sales_budget_cust_det.tran_id~") COLUMN(NAME=~"sales_budget_cust_det.line_no~") COLUMN(NAME=~"sales_budget_cust_det.prd_code~") COLUMN(NAME=~"sales_budget_cust_det.item_code~") COLUMN(NAME=~"sales_budget_cust_det.unit~") COLUMN(NAME=~"sales_budget_cust_det.quantity~") COLUMN(NAME=~"sales_budget_cust_det.rate~") COLUMN(NAME=~"sales_budget_cust_det.net_amt~") COLUMN(NAME=~"sales_budget_cust_det.remarks~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"uom.descr~") JOIN (LEFT=~"sales_budget_cust_det.item_code~" OP =~"=~"RIGHT=~"item.item_code~" OUTER1 =~"sales_budget_cust_det.item_code~" ) JOIN (LEFT=~"sales_budget_cust_det.unit~" OP =~"=~"RIGHT=~"uom.unit~" OUTER1 =~"sales_budget_cust_det.unit~" )WHERE( EXP1 =~"~~~"SALES_BUDGET_CUST_DET~~~".~~~"TRAN_ID~~~"~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = number) " update="SALES_BUDGET_CUST_DET" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", number)) )
text(band=header alignment="2" text="Net Amt" border="6" color="0" x="521" y="6" height="18" width="104" html.valueishtml="0" name=net_amt_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Tran Id" border="6" color="0" x="2" y="7" height="19" width="65" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Line No" border="6" color="0" x="69" y="7" height="19" width="61" html.valueishtml="0" name=line_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Prd Code" border="6" color="0" x="132" y="6" height="19" width="73" html.valueishtml="0" name=prd_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Item Code" border="6" color="0" x="207" y="6" height="19" width="69" html.valueishtml="0" name=item_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Unit" border="6" color="0" x="278" y="6" height="19" width="66" html.valueishtml="0" name=unit_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Quantity" border="6" color="0" x="346" y="6" height="19" width="101" html.valueishtml="0" name=quantity_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Rate" border="6" color="0" x="449" y="6" height="19" width="70" html.valueishtml="0" name=rate_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Remarks" border="6" color="0" x="627" y="5" height="19" width="130" html.valueishtml="0" name=remarks_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Item Descr" border="6" color="33554432" x="759" y="5" height="16" width="142" html.valueishtml="0" name=item_descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=header alignment="2" text="Uom Descr" border="6" color="33554432" x="903" y="5" height="16" width="165" html.valueishtml="0" name=uom_descr_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=9 alignment="2" tabsequence=32766 border="5" color="33554432" x="627" y="1" height="16" width="130" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=8 alignment="2" tabsequence=32766 border="5" color="33554432" x="521" y="1" height="16" width="104" format="[general]" html.valueishtml="0" name=net_amt visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=7 alignment="2" tabsequence=32766 border="5" color="33554432" x="449" y="1" height="16" width="70" format="[general]" html.valueishtml="0" name=rate visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=6 alignment="2" tabsequence=32766 border="5" color="33554432" x="346" y="1" height="16" width="101" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=5 alignment="2" tabsequence=32766 border="5" color="33554432" x="278" y="1" height="16" width="66" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=4 alignment="2" tabsequence=32766 border="5" color="33554432" x="207" y="1" height="16" width="69" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=3 alignment="2" tabsequence=32766 border="5" color="33554432" x="132" y="1" height="16" width="73" format="[general]" html.valueishtml="0" name=prd_code visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=2 alignment="2" tabsequence=32766 border="5" color="33554432" x="69" y="1" height="16" width="61" format="[general]" html.valueishtml="0" name=line_no visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=1 alignment="2" tabsequence=32766 border="5" color="33554432" x="2" y="1" height="16" width="65" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="33554432" x="759" y="1" height="15" width="142" format="[general]" html.valueishtml="0" name=item_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="33554432" x="903" y="1" height="15" width="165" format="[general]" html.valueishtml="0" name=uom_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="1073741824" )
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
$PBExportHeader$d_sales_budget_cust21.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 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=649 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="sales_budget_cust.tran_id" )
column=(type=datetime update=yes updatewhereclause=yes name=tran_date dbname="sales_budget_cust.tran_date" )
column=(type=char(3) update=yes updatewhereclause=yes name=tran_type dbname="sales_budget_cust.tran_type" )
column=(type=char(6) update=yes updatewhereclause=yes name=acct_prd dbname="sales_budget_cust.acct_prd" )
column=(type=char(5) update=yes updatewhereclause=yes name=item_ser dbname="sales_budget_cust.item_ser" )
column=(type=char(20) update=yes updatewhereclause=yes name=bud_cat dbname="sales_budget_cust.bud_cat" )
column=(type=char(5) update=yes updatewhereclause=yes name=price_list dbname="sales_budget_cust.price_list" )
column=(type=char(1) update=yes updatewhereclause=yes name=confirmed dbname="sales_budget_cust.confirmed" values="Yes Y/No N/" )
column=(type=datetime update=yes updatewhereclause=yes name=conf_date dbname="sales_budget_cust.conf_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=emp_code__aprv dbname="sales_budget_cust.emp_code__aprv" )
column=(type=char(200) update=yes updatewhereclause=yes name=remarks dbname="sales_budget_cust.remarks" )
column=(type=datetime update=yes updatewhereclause=yes name=add_date dbname="sales_budget_cust.add_date" )
column=(type=char(300) update=yes updatewhereclause=yes name=add_term dbname="sales_budget_cust.add_term" )
column=(type=char(10) update=yes updatewhereclause=yes name=add_user dbname="sales_budget_cust.add_user" )
column=(type=datetime update=yes updatewhereclause=yes name=chg_date dbname="sales_budget_cust.chg_date" )
column=(type=char(10) update=yes updatewhereclause=yes name=chg_user dbname="sales_budget_cust.chg_user" )
column=(type=char(300) update=yes updatewhereclause=yes name=chg_term dbname="sales_budget_cust.chg_term" )
column=(type=char(60) updatewhereclause=yes name=site_descr dbname="site.descr" )
column=(type=char(5) update=yes updatewhereclause=yes name=site_code dbname="sales_budget_cust.site_code" )
column=(type=char(40) updatewhereclause=yes name=itemser_descr dbname="itemser.descr" )
column=(type=char(1) updatewhereclause=yes name=site_site_type dbname="site.site_type" )
column=(type=char(15) updatewhereclause=yes name=emp_fname dbname="employee.emp_fname" )
column=(type=char(15) updatewhereclause=yes name=emp_mname dbname="employee.emp_mname" )
column=(type=char(15) updatewhereclause=yes name=emp_lname dbname="employee.emp_lname" )
column=(type=char(10) update=yes updatewhereclause=yes name=cust_code dbname="sales_budget_cust.cust_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=pos_code dbname="sales_budget_cust.pos_code" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=net_amt dbname="sales_budget_cust.net_amt" )
column=(type=char(60) updatewhereclause=yes name=org_structure_descr dbname="org_structure.descr" )
column=(type=char(40) updatewhereclause=yes name=pricelist_mst_descr dbname="pricelist_mst.descr" )
column=(type=char(50) updatewhereclause=yes name=cust_name dbname="customer.cust_name" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sales_budget_cust~" ) TABLE(NAME=~"site~" ) TABLE(NAME=~"itemser~" ) TABLE(NAME=~"employee~" ) TABLE(NAME=~"org_structure~" ) TABLE(NAME=~"pricelist_mst~" ) TABLE(NAME=~"customer~" ) COLUMN(NAME=~"sales_budget_cust.tran_id~") COLUMN(NAME=~"sales_budget_cust.tran_date~") COLUMN(NAME=~"sales_budget_cust.tran_type~") COLUMN(NAME=~"sales_budget_cust.acct_prd~") COLUMN(NAME=~"sales_budget_cust.item_ser~") COLUMN(NAME=~"sales_budget_cust.bud_cat~") COLUMN(NAME=~"sales_budget_cust.price_list~") COLUMN(NAME=~"sales_budget_cust.confirmed~") COLUMN(NAME=~"sales_budget_cust.conf_date~") COLUMN(NAME=~"sales_budget_cust.emp_code__aprv~") COLUMN(NAME=~"sales_budget_cust.remarks~") COLUMN(NAME=~"sales_budget_cust.add_date~") COLUMN(NAME=~"sales_budget_cust.add_term~") COLUMN(NAME=~"sales_budget_cust.add_user~") COLUMN(NAME=~"sales_budget_cust.chg_date~") COLUMN(NAME=~"sales_budget_cust.chg_user~") COLUMN(NAME=~"sales_budget_cust.chg_term~") COLUMN(NAME=~"site.descr~") COLUMN(NAME=~"sales_budget_cust.site_code~") COLUMN(NAME=~"itemser.descr~") COLUMN(NAME=~"site.site_type~") COLUMN(NAME=~"employee.emp_fname~") COLUMN(NAME=~"employee.emp_mname~") COLUMN(NAME=~"employee.emp_lname~") COLUMN(NAME=~"sales_budget_cust.cust_code~") COLUMN(NAME=~"sales_budget_cust.pos_code~") COLUMN(NAME=~"sales_budget_cust.net_amt~") COLUMN(NAME=~"org_structure.descr~") COLUMN(NAME=~"pricelist_mst.descr~") COLUMN(NAME=~"customer.cust_name~") JOIN (LEFT=~"sales_budget_cust.emp_code__aprv~" OP =~"=~"RIGHT=~"employee.emp_code~" OUTER1 =~"sales_budget_cust.emp_code__aprv~" ) JOIN (LEFT=~"sales_budget_cust.pos_code~" OP =~"=~"RIGHT=~"org_structure.pos_code~" ) JOIN (LEFT=~"sales_budget_cust.site_code~" OP =~"=~"RIGHT=~"site.site_code~" ) JOIN (LEFT=~"sales_budget_cust.item_ser~" OP =~"=~"RIGHT=~"itemser.item_ser~" ) JOIN (LEFT=~"sales_budget_cust.price_list~" OP =~"=~"RIGHT=~"pricelist_mst.price_list~" ) JOIN (LEFT=~"sales_budget_cust.cust_code~" OP =~"=~"RIGHT=~"customer.cust_code~" )WHERE( EXP1 =~"~~~"SALES_BUDGET_CUST~~~".~~~"TRAN_ID~~~"~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = number) " update="SALES_BUDGET_CUST" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", number)) )
groupbox(band=detail text="Basic"border="2" color="33554432" x="4" y="13" height="201" width="561" name=gb_1 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Others"border="2" color="33554432" x="4" y="320" height="97" width="558" name=gb_2 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
groupbox(band=detail text="Status"border="2" color="33554432" x="4" y="223" height="80" width="560" name=gb_3 visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="134217857" x="127" y="32" height="16" width="72" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Transaction Id :" border="0" color="33554432" x="13" y="32" height="16" width="107" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Tran Date :" border="0" color="33554432" x="399" y="32" height="15" width="71" html.valueishtml="0" name=tran_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="33554432" x="474" y="32" height="16" width="72" format="dd/mm/yy" html.valueishtml="0" name=tran_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Cutomer :" border="0" color="33554432" x="13" y="54" height="15" width="107" html.valueishtml="0" name=cust_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=25 alignment="0" tabsequence=10 border="0" color="33554432" x="127" y="54" height="15" width="80" format="[general]" html.valueishtml="0" name=cust_code visible="1" edit.limit=10 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Account Period :" border="0" color="33554432" x="13" y="113" height="15" width="107" html.valueishtml="0" name=acct_prd_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=4 alignment="0" tabsequence=50 border="5" color="33554432" x="127" y="113" height="16" width="72" format="[general]" html.valueishtml="0" name=acct_prd visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Item Series :" border="0" color="33554432" x="206" y="113" height="16" width="95" html.valueishtml="0" name=item_ser_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=5 alignment="0" tabsequence=60 border="5" color="33554432" x="305" y="113" height="16" width="72" format="[general]" html.valueishtml="0" name=item_ser visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="134217857" x="382" y="113" height="16" width="164" format="[general]" html.valueishtml="0" name=itemser_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Price List :" border="0" color="33554432" x="13" y="133" height="16" width="107" html.valueishtml="0" name=price_list_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=7 alignment="0" tabsequence=70 border="5" color="33554432" x="127" y="133" height="16" width="72" format="[general]" html.valueishtml="0" name=price_list visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=20 alignment="0" tabsequence=32766 border="5" color="134217857" x="204" y="133" height="16" width="164" format="[general]" html.valueishtml="0" name=pricelist_mst_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Remarks :" border="0" color="33554432" x="13" y="155" height="15" width="107" html.valueishtml="0" name=remarks_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=11 alignment="0" tabsequence=80 border="5" color="33554432" x="127" y="155" height="38" width="420" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=200 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Approved By :" border="0" color="33554432" x="13" y="248" height="16" width="107" html.valueishtml="0" name=emp_code__aprv_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="134217857" x="127" y="248" height="16" width="72" format="[general]" html.valueishtml="0" name=emp_code__aprv visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=22 alignment="0" tabsequence=32766 border="5" color="134217857" x="199" y="248" height="16" width="100" format="[general]" html.valueishtml="0" name=emp_fname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=23 alignment="0" tabsequence=32766 border="5" color="134217857" x="304" y="248" height="16" width="110" format="[general]" html.valueishtml="0" name=emp_mname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=24 alignment="0" tabsequence=32766 border="5" color="134217857" x="418" y="248" height="16" width="128" format="[general]" html.valueishtml="0" name=emp_lname visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Confirmed :" border="0" color="33554432" x="13" y="270" height="16" width="107" html.valueishtml="0" name=confirmed_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=8 alignment="0" tabsequence=32766 border="5" color="134217857" x="127" y="270" height="16" width="72" format="[Yes/No]" html.valueishtml="0" name=confirmed visible="1" ddlb.limit=0 ddlb.allowedit=no ddlb.case=any ddlb.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Confirmed Date :" border="0" color="33554432" x="202" y="270" height="16" width="98" html.valueishtml="0" name=conf_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=9 alignment="0" tabsequence=32766 border="5" color="134217857" x="304" y="270" height="16" width="72" format="dd/mm/yy" html.valueishtml="0" name=conf_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Budget Category :" border="0" color="33554432" x="13" y="93" height="15" width="107" html.valueishtml="0" name=bud_cat_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=6 alignment="0" tabsequence=40 border="5" color="33554432" x="127" y="93" height="16" width="230" format="[general]" html.valueishtml="0" name=bud_cat visible="1" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=19 alignment="0" tabsequence=90 border="5" color="33554432" x="127" y="346" height="16" width="72" format="[general]" html.valueishtml="0" name=site_code visible="1" edit.limit=5 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=18 alignment="0" tabsequence=32766 border="5" color="134217857" x="205" y="346" height="16" width="343" format="[general]" html.valueishtml="0" name=site_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Site :" border="0" color="33554432" x="13" y="346" height="16" width="107" html.valueishtml="0" name=site_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Add Date :" border="0" color="33554432" x="13" y="366" height="16" width="107" html.valueishtml="0" name=add_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=12 alignment="0" tabsequence=32766 border="5" color="134217857" x="127" y="366" height="16" width="72" format="dd/mm/yy" html.valueishtml="0" name=add_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Add User :" border="0" color="33554432" x="209" y="366" height="15" width="82" html.valueishtml="0" name=add_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=14 alignment="0" tabsequence=32766 border="5" color="134217857" x="296" y="366" height="16" width="72" format="[general]" html.valueishtml="0" name=add_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Add Term :" border="0" color="33554432" x="382" y="366" height="16" width="82" html.valueishtml="0" name=add_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=13 alignment="0" tabsequence=32766 border="5" color="134217857" x="471" y="366" height="16" width="77" format="[general]" html.valueishtml="0" name=add_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Date :" border="0" color="33554432" x="13" y="389" height="15" width="107" html.valueishtml="0" name=chg_date_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=15 alignment="0" tabsequence=32766 border="5" color="134217857" x="127" y="389" height="16" width="72" format="dd/mm/yy" html.valueishtml="0" name=chg_date visible="1" editmask.mask="dd/mm/yy" editmask.imemode=0 editmask.focusrectangle=no font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change User :" border="0" color="33554432" x="209" y="389" height="15" width="83" html.valueishtml="0" name=chg_user_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=16 alignment="0" tabsequence=32766 border="5" color="134217857" x="296" y="389" height="16" width="72" format="[general]" html.valueishtml="0" name=chg_user visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Change Term :" border="0" color="33554432" x="381" y="389" height="15" width="84" html.valueishtml="0" name=chg_term_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=17 alignment="0" tabsequence=32766 border="5" color="134217857" x="471" y="389" height="16" width="77" format="[general]" html.valueishtml="0" name=chg_term visible="1" edit.limit=15 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Position Code :" border="0" color="33554432" x="13" y="73" height="15" width="107" html.valueishtml="0" name=pos_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=detail alignment="1" text="Transaction Type :" border="0" color="33554432" x="364" y="73" height="16" width="107" html.valueishtml="0" name=tran_type_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=3 alignment="0" tabsequence=30 border="5" color="33554432" x="478" y="73" height="16" width="72" format="[general]" html.valueishtml="0" name=tran_type visible="1" edit.limit=3 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=27 alignment="1" tabsequence=32766 border="0" color="33554432" x="496" y="133" height="15" width="52" format="[general]" html.valueishtml="0" name=net_amt visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Net Amount :" border="0" color="33554432" x="402" y="133" height="15" width="77" html.valueishtml="0" name=net_amt_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
column(band=detail id=26 alignment="0" tabsequence=20 border="0" color="33554432" x="127" y="73" height="15" width="80" format="[general]" html.valueishtml="0" name=pos_code visible="1" edit.limit=10 edit.case=any edit.autoselect=yes edit.required=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=28 alignment="0" tabsequence=32766 border="5" color="134217857" x="211" y="73" height="15" width="148" format="[general]" html.valueishtml="0" name=org_structure_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=30 alignment="0" tabsequence=100 border="0" color="134217857" x="211" y="54" height="15" width="149" html.valueishtml="0" name=cust_name visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
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
$PBExportHeader$d_sales_budget_cust22.srd
release 9;
datawindow(units=1 timer_interval=0 color=67108864 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=5 color="536870912" )
footer(height=0 color="536870912" )
detail(height=748 color="536870912" )
table(column=(type=char(10) update=yes updatewhereclause=yes key=yes name=tran_id dbname="sales_budget_cust_det.tran_id" )
column=(type=decimal(0) update=yes updatewhereclause=yes key=yes name=line_no dbname="sales_budget_cust_det.line_no" )
column=(type=char(6) update=yes updatewhereclause=yes name=prd_code dbname="sales_budget_cust_det.prd_code" )
column=(type=char(10) update=yes updatewhereclause=yes name=item_code dbname="sales_budget_cust_det.item_code" )
column=(type=char(3) update=yes updatewhereclause=yes name=unit dbname="sales_budget_cust_det.unit" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=quantity dbname="sales_budget_cust_det.quantity" initial="0" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=net_amt dbname="sales_budget_cust_det.net_amt" initial="0" )
column=(type=decimal(3) update=yes updatewhereclause=yes name=rate dbname="sales_budget_cust_det.rate" initial="0" )
column=(type=char(200) update=yes updatewhereclause=yes name=remarks dbname="sales_budget_cust_det.remarks" )
column=(type=char(130) updatewhereclause=yes name=item_descr dbname="item.descr" )
column=(type=char(40) updatewhereclause=yes name=uom_descr dbname="uom.descr" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"sales_budget_cust_det~" ) TABLE(NAME=~"item~" ) TABLE(NAME=~"uom~" ) COLUMN(NAME=~"sales_budget_cust_det.tran_id~") COLUMN(NAME=~"sales_budget_cust_det.line_no~") COLUMN(NAME=~"sales_budget_cust_det.prd_code~") COLUMN(NAME=~"sales_budget_cust_det.item_code~") COLUMN(NAME=~"sales_budget_cust_det.unit~") COLUMN(NAME=~"sales_budget_cust_det.quantity~") COLUMN(NAME=~"sales_budget_cust_det.net_amt~") COLUMN(NAME=~"sales_budget_cust_det.rate~") COLUMN(NAME=~"sales_budget_cust_det.remarks~") COLUMN(NAME=~"item.descr~") COLUMN(NAME=~"uom.descr~") JOIN (LEFT=~"sales_budget_cust_det.unit~" OP =~"=~"RIGHT=~"uom.unit~" OUTER1 =~"sales_budget_cust_det.unit~" ) JOIN (LEFT=~"sales_budget_cust_det.item_code~" OP =~"=~"RIGHT=~"item.item_code~" OUTER1 =~"sales_budget_cust_det.item_code~" )WHERE( EXP1 =~"~~~"SALES_BUDGET_CUST_DET~~~".~~~"TRAN_ID~~~"~" OP =~"=~" EXP2 =~":tran_id~" ) ) ARG(NAME = ~"tran_id~" TYPE = number) " update="SALES_BUDGET_CUST_DET" updatewhere=0 updatekeyinplace=no arguments=(("tran_id", number)) )
groupbox(band=detail text="Others"border="2" color="33554432" x="26" y="247" height="49" width="554" name=gb_2 visible="1" font.face="Liberation Sans" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Line# :" border="0" color="33554432" x="35" y="268" height="15" width="82" html.valueishtml="0" name=line_no_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=2 alignment="1" tabsequence=32766 border="5" color="33554432" x="121" y="268" height="17" width="68" format="[general]" 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="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Tran Id :" border="0" color="33554432" x="362" y="268" height="15" width="82" html.valueishtml="0" name=tran_id_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="134217857" x="448" y="268" height="17" width="90" format="[general]" html.valueishtml="0" name=tran_id visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
groupbox(band=detail text="Basic"border="2" color="33554432" x="26" y="12" height="209" width="552" name=gb_1 visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="1" background.color="553648127" )
text(band=detail alignment="1" text="Rate :" border="0" color="33554432" x="228" y="122" height="15" width="69" html.valueishtml="0" name=rate_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=8 alignment="1" tabsequence=32766 border="5" color="33554432" x="301" y="122" height="17" width="68" format="[general]" html.valueishtml="0" name=rate visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=11 alignment="0" tabsequence=32766 border="5" color="134217857" x="218" y="60" height="17" width="322" format="[general]" html.valueishtml="0" name=item_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=10 alignment="0" tabsequence=32766 border="5" color="134217857" x="218" y="81" height="17" width="322" format="[general]" html.valueishtml="0" name=uom_descr visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Net Amount :" border="0" color="33554432" x="386" y="122" height="15" width="77" html.valueishtml="0" name=net_amt_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=7 alignment="1" tabsequence=32766 border="5" color="255" x="466" y="122" height="17" width="72" format="[general]" html.valueishtml="0" name=net_amt visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=4 alignment="0" tabsequence=10 border="5" color="33554432" x="121" y="61" height="17" width="90" format="[general]" html.valueishtml="0" name=item_code visible="1" edit.limit=10 edit.case=upper edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=5 alignment="0" tabsequence=32766 border="5" color="255" x="121" y="82" height="15" width="90" format="[general]" html.valueishtml="0" name=unit visible="1" edit.limit=3 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
column(band=detail id=3 alignment="0" tabsequence=20 border="5" color="33554432" x="121" y="101" height="17" width="68" format="[general]" html.valueishtml="0" name=prd_code visible="1" edit.limit=6 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=6 alignment="1" tabsequence=30 border="5" color="33554432" x="121" y="122" height="17" width="68" format="[general]" html.valueishtml="0" name=quantity visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=9 alignment="0" tabsequence=40 border="5" color="33554432" x="121" y="144" height="47" width="418" format="[general]" html.valueishtml="0" name=remarks visible="1" edit.limit=200 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
text(band=detail alignment="1" text="Item :" border="0" color="33554432" x="35" y="61" height="15" width="82" html.valueishtml="0" name=item_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Unit :" border="0" color="33554432" x="35" y="81" height="15" width="82" html.valueishtml="0" name=unit_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Period Code :" border="0" color="33554432" x="35" y="101" height="15" width="82" html.valueishtml="0" name=prd_code_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Quantity :" border="0" color="33554432" x="35" y="122" height="15" width="82" html.valueishtml="0" name=quantity_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
text(band=detail alignment="1" text="Remarks :" border="0" color="33554432" x="36" y="143" height="15" width="82" html.valueishtml="0" name=remarks_t visible="1" font.face="Arial" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="67108864" )
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 template=(comment="" encoding="UTF-8" name="d_sales_budget_cust22" xml="<?xml version=~"1.0~" encoding=~"UTF-8~" standalone=~"no~"?><d_sales_budget_cust22><d_sales_budget_cust22_row __pbband=~"detail~"><tran_id/><line_no/><prd_code>prd_code</prd_code><item_code/><unit>unit</unit><quantity>quantity</quantity><net_amt>net_amt</net_amt><rate>rate</rate><remarks>remarks</remarks><item_descr>item_descr</item_descr><uom_descr>uom_descr</uom_descr></d_sales_budget_cust22_row></d_sales_budget_cust22>"))
import.xml()
export.pdf(method=0 distill.custompostscript="0" xslfop.print="0" )
\ No newline at end of file
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
<script type="text/javascript" src="/ibase/webitm/js/ITMWizard.js"></script> <script type="text/javascript" src="/ibase/webitm/js/ITMWizard.js"></script>
<script type="text/javascript" src="/ibase/webitm/js/SalesBudgetCustWiz.js"></script> <script type="text/javascript" src="/ibase/webitm/js/SalesBudgetCustWiz.js"></script>
<!--<script type="text/javascript" src="/ibase/webitm/js/ITMWizardCalendar.js"></script>-->
<!--<script type="text/javascript" src="/ibase/webitm/js/SavexWizardCalendar.js"></script>-->
</head> </head>
<body style="font-family: 'MuseoLight-300', sans-serif; border-color: lightgrey;color : #COCOCO; background-color: #f7f8fa; text-align : left; font-size: 14px;"> <body style="font-family: 'MuseoLight-300', sans-serif; border-color: lightgrey;color : #COCOCO; background-color: #f7f8fa; text-align : left; font-size: 14px;">
...@@ -22,10 +20,8 @@ ...@@ -22,10 +20,8 @@
<script> <script>
</script> </script>
<!--Changed by Rahul Barve on 27-10-14 [Start] -->
<LINK HREF="/ibase/webitm/css/theme/galaxy-theme.css" TYPE="text/css" REL="stylesheet"></LINK> <LINK HREF="/ibase/webitm/css/theme/galaxy-theme.css" TYPE="text/css" REL="stylesheet"></LINK>
<!--Changed by Rahul Barve on 27-10-14 [End] -->
<style type="text/css"> <style type="text/css">
.header_class .header_class
...@@ -129,7 +125,6 @@ border: 1px solid #E7E7E7 !important; ...@@ -129,7 +125,6 @@ border: 1px solid #E7E7E7 !important;
<link type="text/css" rel="stylesheet" href="/ibase/webitm/xsl/Standard/WIZARD/css/htmlWizard.css"/> <link type="text/css" rel="stylesheet" href="/ibase/webitm/xsl/Standard/WIZARD/css/htmlWizard.css"/>
<form name = "Wizard_activity" METHOD="POST" ACTION="/ibase/ITMWizardHandlerServlet" style="background-color: #f7f8fa;" onSubmit="javascript:disableButtons(1);"> <form name = "Wizard_activity" METHOD="POST" ACTION="/ibase/ITMWizardHandlerServlet" style="background-color: #f7f8fa;" onSubmit="javascript:disableButtons(1);">
<!-- changed by rahul barve on 6-apr-2015 [Start]-->
<TABLE border="0" width="99%" height="2%" class="header_td" cellpadding="0" cellspacing="0" style="background-color: #f7f8fa;"> <TABLE border="0" width="99%" height="2%" class="header_td" cellpadding="0" cellspacing="0" style="background-color: #f7f8fa;">
<TR> <TR>
...@@ -142,7 +137,6 @@ border: 1px solid #E7E7E7 !important; ...@@ -142,7 +137,6 @@ border: 1px solid #E7E7E7 !important;
</TABLE> </TABLE>
<table id="errorActivityTable" width="100%" class="tableClass" style="margin: 0px 0px 0px 0px;position: relative;width: calc(literal('100% - 15px'));width: -moz-calc(literal('100% - 15px'));padding-right:0px; padding-left:5xp; width: -webkit-calc(literal('100% - 15px'));box-shadow: 3px 3px 3px gray;-moz-box-shadow:3px 3px 3px gray;-webkit-box-shadow: 3px 3px 3px gray;-o-box-shadow: 3px 3px 3px gray;background: rgba(255, 204, 0, 0.66);min-height: 50px;bottom:10px" border="0" cellspacing="0" cellpadding="0"> <table id="errorActivityTable" width="100%" class="tableClass" style="margin: 0px 0px 0px 0px;position: relative;width: calc(literal('100% - 15px'));width: -moz-calc(literal('100% - 15px'));padding-right:0px; padding-left:5xp; width: -webkit-calc(literal('100% - 15px'));box-shadow: 3px 3px 3px gray;-moz-box-shadow:3px 3px 3px gray;-webkit-box-shadow: 3px 3px 3px gray;-o-box-shadow: 3px 3px 3px gray;background: rgba(255, 204, 0, 0.66);min-height: 50px;bottom:10px" border="0" cellspacing="0" cellpadding="0">
<!--Changed by Dhiraj 30/09/10 [WS01SUN007] .end-->
<xsl:for-each select="//error"> <xsl:for-each select="//error">
<xsl:if test="position() = 1"> <xsl:if test="position() = 1">
...@@ -290,39 +284,6 @@ border: 1px solid #E7E7E7 !important; ...@@ -290,39 +284,6 @@ border: 1px solid #E7E7E7 !important;
</tr> </tr>
<!-- <tr width ="100%">
<td class="td_rightAlign" nowrap="true" width = "1%">
<strong>From Period: </strong>
</td>
<td class="td_leftAlign" >
<input type="hidden" class="input_editable" name="Detail1.{normalize-space($dbID)}.acct_from_date" id="Detail1.{normalize-space($dbID)}.acct_from_date" ISCHANGED="false" readonly="true" />
</td>
</tr>
<tr width ="100%">
<td class="td_rightAlign" nowrap="true" width = "1%">
<strong>To Period: </strong>
</td>
<td class="td_leftAlign" >
<input type="hidden" class="input_editable" name="Detail1.{normalize-space($dbID)}.acct_to_date" id="Detail1.{normalize-space($dbID)}.acct_to_date" ISCHANGED="false" readonly="true" />
</td>
</tr>-->
<!--<tr width ="100%">
<td class="td_rightAlign" nowrap="true" width = "1%">
<strong>Net Amount: </strong>
</td>
<td class="td_leftAlign" >
<input type="text" value="{$net_amt}" class="input_editable" name="Detail1.{normalize-space($dbID)}.net_amt" id="Detail1.{normalize-space($dbID)}.net_amt" ISCHANGED="false" readonly="true" />
</td>
</tr>-->
<tr width ="100%"> <tr width ="100%">
<td class="td_rightAlign" nowrap="true" width = "1%"> <td class="td_rightAlign" nowrap="true" width = "1%">
<strong>Remarks : </strong> <strong>Remarks : </strong>
...@@ -337,12 +298,6 @@ border: 1px solid #E7E7E7 !important; ...@@ -337,12 +298,6 @@ border: 1px solid #E7E7E7 !important;
<input type="hidden" class="input_editable" size="10" value="{$site_code}" name="Detail1.{normalize-space($dbID)}.site_code" id="Detail1.{normalize-space($dbID)}.site_code" maxlength="8" ISCHANGED="false" readonly="true"/> <input type="hidden" class="input_editable" size="10" value="{$site_code}" name="Detail1.{normalize-space($dbID)}.site_code" id="Detail1.{normalize-space($dbID)}.site_code" maxlength="8" ISCHANGED="false" readonly="true"/>
<!--<input type="hidden" class="input_editable" size="10" value="{$chg_date}" name="Detail1.{normalize-space($dbID)}.chg_date" id="Detail1.{normalize-space($dbID)}.chg_date" maxlength="8" ISCHANGED="false" readonly="true"/>
<input type="hidden" class="input_editable" size="10" value="{$chg_user}" name="Detail1.{normalize-space($dbID)}.chg_user" id="Detail1.{normalize-space($dbID)}.chg_user" maxlength="8" ISCHANGED="false" readonly="true"/>
<input type="hidden" class="input_editable" size="10" value="{$chg_term}" name="Detail1.{normalize-space($dbID)}.chg_term" id="Detail1.{normalize-space($dbID)}.chg_term" maxlength="8" ISCHANGED="false" readonly="true"/>-->
</xsl:for-each> </xsl:for-each>
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
<xsl:output method="html"/> <xsl:output method="html"/>
<xsl:decimal-format NaN="0"/> <xsl:decimal-format NaN="0"/>
<!--<xsl:key name="item_code" match="//Detail2/item_code/text()" use="." /> -->
<xsl:key name="item_descr" match="//Detail2/item_descr/text()" use="." /> <xsl:key name="item_descr" match="//Detail2/item_descr/text()" use="." />
<xsl:template match="/"> <xsl:template match="/">
...@@ -15,131 +14,389 @@ ...@@ -15,131 +14,389 @@
<script type="text/javascript" src="/ibase/webitm/js/ITMWizard.js"></script> <script type="text/javascript" src="/ibase/webitm/js/ITMWizard.js"></script>
<script type="text/javascript" src="/ibase/webitm/js/SalesBudgetCustWiz.js"></script> <script type="text/javascript" src="/ibase/webitm/js/SalesBudgetCustWiz.js"></script>
<!--<script type="text/javascript" src="/ibase/webitm/js/ITMWizardCalendar.js"></script>
<script type="text/javascript" src="/ibase/webitm/js/BrandReportingWizard.js"></script>-->
<!--<script type="text/javascript" src="/ibase/webitm/js/SavexWizardCalendar.js"></script>-->
</head>
<body style="font-family: 'MuseoLight-300', sans-serif; border-color: lightgrey;color : #COCOCO; background-color: #f7f8fa; text-align : left; font-size: 14px;">
<script> <script>
</script> </script>
<!--Changed by Rahul Barve on 27-10-14 [Start] -->
<LINK HREF="/ibase/webitm/css/theme/galaxy-theme.css" TYPE="text/css" REL="stylesheet"></LINK> <LINK HREF="/ibase/webitm/css/theme/galaxy-theme.css" TYPE="text/css" REL="stylesheet"></LINK>
<!--Changed by Rahul Barve on 27-10-14 [End] -->
<style type="text/css"> <style type="text/css">
.header_class .button.disabled { background: #EBEBEB !important; color:gray
{border:inset 0;font-family: 'MuseoLight-300', sans-serif; color : #COCOCO; background : #FFF; text-align : left; font-size: 14px;} !IMPORTANT; pointer-events:none !IMPORTANT; }
.input_editablecenter .button.enabled {
{border:solid 0; font-family: 'MuseoLight-300', sans-serif; border-color: lightgrey;color : #COCOCO; background : #FFF; text-align : left; font-size: 14px;} color:#333
.tableClass_rep !IMPORTANT; pointer-events:auto !IMPORTANT; }
{margin-left:0px}
body{
font-size: 100%;
opacity: 1;
background: #eff3f7;
margin: 0;
padding:
0;
font-family: 'Roboto',
sans-serif;
text-rendering:
optimizeLegibility;
-webkit-text-size-adjust: none;
}
input{
height:
inherit;
min-height:
40px;
font-size: 1em;
font-weight: 400;
color:
#000;
white-space:
nowrap;
width: 100%;
font-family: roboto;
opacity:
1;
background-color:
transparent;
-webkit-writing-mode: horizontal-tb
!important;
text-rendering: auto;
letter-spacing: normal;
word-spacing: normal;
text-transform: none;
text-indent: 0px;
text-shadow: none;
display:
inline-block;
margin: 0em;
-webkit-appearance: textfield;
-webkit-rtl-ordering: logical;
cursor: text;
padding: 0;
border-width: 1px;
border-style: none;
border-color: initial;
border-image: initial;
}
input:focus{
outline:
none !important;
}
::placeholder { /* Chrome, Firefox, Opera, Safari
10.1+ */
color:
#aaa;
font-size: 1em;
font-weight: 400;
opacity: 1; /*
Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #aaa;
font-size: 1em;
font-weight: 400;
}
::-ms-input-placeholder { /*
Microsoft Edge */
color: #aaa;
font-size: 1em;
font-weight: 400;
}
/*
Container */
.container {
width:
calc(100% - 8px);
height: calc(100% -
94px);
margin: auto;
box-shadow:
0 0 1px 0px rgba(0,0,0,.2);
overflow: hidden;
position:
inherit;
top:
45px;
left: 8px;
}
.scroll_table {
overflow: auto;
height: 100%;
display: flex;
display:
-webkit-flex;
flex-direction:
column;
-webkit-flex-direction: column;
background: #fff;
}
.table_header_row{
position: absolute;
display:
inline-flex;
width:
100%;
top: 0;
padding: .3em 0;
}
.cell_row {
align-items: center;
min-height: 30px;
display: -webkit-inline-box;
line-height: 1;
width:
100%;
padding: 0;
margin: 0;
height: 10px;
background: #fff;
}
.align_center{
align-items: center !important;
}
.table_BG{
background: #fff;
padding: 0;
width: 100%;
overflow-x: auto;
overflow-y: hidden;
height: 100%;
}
.table_data_vs{
height: calc(100% -
41px);
}
.cell_first111{
padding: 0 0 0 1rem !important;
text-align: left
!important;
justify-content: flex-start;
flex-direction: row;
}
.cell_last{
padding: 0 1rem 0 0 !important;
text-align: right
!important;
justify-content: flex-end;
flex-direction: row;
}
.mouse_hover:hover{
transition:.5s;
background: #f2f2f2;
cursor:pointer;
}
.pdLeft_16{
padding-right: 1em;
}
.th_Num{
width: 100%;
justify-content: flex-end;
flex-direction: row;
text-align: right;
}
.txtdark {
font-weight: 600;
font-size: 1em;
color: #252525;
}
.edit_input{
}
<!-- .cell_pd { width: 100%; padding: 4px !important; } -->
.cell_pd {
width: 100%;
padding: 4px !important;
text-overflow:
ellipsis;
overflow: hidden;
}
.edit_input:hover {
background: #fafafa;
cursor: pointer;
<!-- outline: 1px solid #18d094 -->
!important;
outline-offset: -1px;
}
.devider{
border-bottom: 1px solid
#f7f7f7;
}
.cell_container{
min-width: 100px;
text-align: right;
max-width: 100%;
padding:
0;
display: flex;
align-items: center;
height: inherit;
min-height:
40px;
background-color: #ffffff;
width:
200px;
opacity: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.header {
position: sticky;
top: 0;
z-index:
2;
background: #ffffff;
padding: 0 !important;
}
.footer {
box-shadow:
0px -1px 4px
-1px
rgba(0,0,0,.1);
position:
sticky;
bottom: 0;
z-index:
2;
background:
#fff;
}
.fix_left {
box-shadow: inset -1px 0px 0px 0px
rgb(0, 0, 0,
.1);
position:
sticky;
left: 0;
z-index: 1;
background:
#fbfbfb;
text-align: left;
}
.table_container {
width:
-webkit-fit-content;
flex: 1;
-webkit-flex:
1;
}
.button {
min-width:
60px;
padding: 4px 8px;
<!-- max-width: 120px; -->
border: 1px solid #E7E7E7;
border-radius: 2px;
-moz-border-radius:
2px;
-webkit-border-radius: 2px;
-moz-box-shadow: 0 1px 1px rgba(0,
0, 0, 0.5);
-webkit-box-shadow: 0
1px 1px rgba(0, 0, 0, 0.5);
box-shadow: 0 1px 1px rgba(0, 0, 0,
0.5);
color: #333;
height: 25px;
font-family: 'MuseoLight-300',
sans-serif;
font-size: 12px;
background-color: #e7e7e7;
cursor:
pointer;
margin: 0 8px 0 0;
}
.button:hover {
border: 1px solid #E7E7E7
!important;
background-color: #e7e7e7 !important;
color: #000
!important;
-moz-box-shadow:
0 2px 1px rgba(0, 0, 0,
0.5) !important;
-webkit-box-shadow: 0 2px
1px rgba(0,
0, 0, 0.5) !important;
box-shadow: 0 2px 1px rgba(0, 0, 0, 0.5)
!important;
text-shadow:
none;
}
.button:active {
text-shadow: none;
background-color:#d6d6d6
!important;
color: #000 !important; -moz-box-shadow: 0 2px
1px
rgba(0,
0, 0, 0.5)
!important;
-webkit-box-shadow: 0 2px 1px rgba(0,
0, 0,
0.5) !important;
box-shadow: 0 2px 1px
rgba(0, 0, 0, 0.5)
!important; border: 1px solid #E7E7E7
!important;
}
</style>
.td_leftAlign{ </head>
<body style="font-family: 'MuseoLight-300', sans-serif; border-color: lightgrey;color : #COCOCO; background-color: #f7f8fa; text-align : left; font-size: 14px;">
background-color: #FFF;
font-family: "MuseoLight-300",sans-serif;
font-size: 14px;
text-shadow: none;
text-align:left;
}
.input_editable
{border:solid 1px;font-family: 'MuseoLight-300', sans-serif; border-color: #ccc;color : #COCOCO; background : #FFF; text-align : left; font-size: 14px;}
.td_rightAlign{
background-color: #FFF;
font-family: "MuseoLight-300",sans-serif;
font-size: 14px;
text-shadow: none;
text-align:right;
}
.editDisplayheder
{readOnly:true; TEXT-ALIGN:left; color:#000; padding:5px 5px 10px 5px; font-size:16px; }
.editDisplayColumnClass
{readOnly:true; margin-left:2px; BACKGROUND:#fff; TEXT-ALIGN:LEFT; margin-bottom:10px; border-top: #6cf 3px solid; border-bottom:solid 1px #ebebeb; border-right:solid 1px #ebebeb; border-left:solid 1px #ebebeb;}
.editDisplayColumnClass td
{ padding:5px; border-bottom: none; font-size:14px;}
.button{
border: 1px solid #E7E7E7;
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
color: #333;
height: 22px;
font-family: 'MuseoLight-300', sans-serif;
font-size: 12px;
background-color: #e7e7e7;
cursor: pointer;
margin-left:10px;
}
.button:hover
{
border: 1px solid #E7E7E7 !important;
background-color: #e7e7e7 !important;
color: #000 !important;
-moz-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.5) !important;
-webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.5) !important;
box-shadow: 0 2px 1px rgba(0, 0, 0, 0.5) !important;
text-shadow: none;
}
.button:active
{
text-shadow: none;
background-color: #d6d6d6 !important;
color: #000 !important;
-moz-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.5) !important;
-webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.5) !important;
box-shadow: 0 2px 1px rgba(0, 0, 0, 0.5) !important;
border: 1px solid #E7E7E7 !important;
}
.divclass
{
border : solid 1px lightgray;
line-height : 23px;
width:99.5%
}
.button.disabled {
background: #EBEBEB !important;
color:gray !IMPORTANT;
pointer-events:none !IMPORTANT;
}
.button.enabled {
color:#333 !IMPORTANT;
pointer-events:auto !IMPORTANT;
}
.Divheight
{
}
</style>
<link type="text/css" rel="stylesheet" href="/ibase/webitm/xsl/Standard/WIZARD/css/htmlWizard.css"/> <link type="text/css" rel="stylesheet" href="/ibase/webitm/xsl/Standard/WIZARD/css/htmlWizard.css"/>
<form name = "Wizard_activity" METHOD="POST" ACTION="/ibase/ITMWizardHandlerServlet" style="background-color: #f7f8fa;" onSubmit="disableButtons()"> <form name = "Wizard_activity" METHOD="POST" ACTION="/ibase/ITMWizardHandlerServlet" style="background-color: #f7f8fa;" onSubmit="disableButtons()">
<!-- changed by rahul barve on 6-apr-2015 [Start]-->
<TABLE border="0" width="99%" height="2%" class="header_td" cellpadding="0" cellspacing="0" style="background-color: #f7f8fa;"> <TABLE border="0" width="99%" height="2%" class="header_td" cellpadding="0" cellspacing="0" style="background-color: #f7f8fa;">
<TR> <TR>
...@@ -204,20 +461,24 @@ border: 1px solid #E7E7E7 !important; ...@@ -204,20 +461,24 @@ border: 1px solid #E7E7E7 !important;
</xsl:for-each> </xsl:for-each>
</table> </table>
<div id="dataDiv" class="editDisplayColumnClass" style="overflow: auto;" >
<table id="activityTable" cellSpacing="0" width="100%" cellPadding="5">
<tr width ="100%">
<td class="td_leftAlign" nowrap="true" width = "1%">
<strong>Item </strong>
</td>
<div class="container">
<div class="scroll_table">
<div class="table_container" id="table_container">
<div class="header txtdark">
<div class="cell_row ">
<div class="fix_left cell_first cell_container align_center" style="max-width: 200px !important; align-center !important; padding-left: 5px;" ><div class="cell_pd">Item</div></div>
<div class="fix_left cell_first cell_container align_center" style="left: 205px !important; max-width: 100px !important;text-align: right;padding-right: 5px;" ><div class="cell_pd">Quantity</div></div>
<div class="fix_left cell_first cell_container align_center" style ="left: 310px !important; max-width: 100px !important;text-align: right;padding-right: 5px;" ><div class="cell_pd">Price</div></div>
<!-- <xsl:for-each select="/items/item/products/product/text()[generate-id() = generate-id(key('product',.)[1])]"> -->
<xsl:for-each select="//Detail2/item_descr/text()[generate-id()= generate-id(key('item_descr',.)[1])]"> <xsl:for-each select="//Detail2/item_descr/text()[generate-id()= generate-id(key('item_descr',.)[1])]">
<xsl:variable name="parent_item_descr"><xsl:value-of select="."/></xsl:variable> <xsl:variable name="parent_item_descr"><xsl:value-of select="."/></xsl:variable>
<xsl:variable name="position" select="position() - 1"/> <xsl:variable name="position" select="position() - 1"/>
<xsl:for-each select="//Detail2"> <xsl:for-each select="//Detail2">
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable> <xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
...@@ -230,30 +491,44 @@ border: 1px solid #E7E7E7 !important; ...@@ -230,30 +491,44 @@ border: 1px solid #E7E7E7 !important;
<xsl:variable name="item_code"><xsl:value-of select="item_code"/></xsl:variable> <xsl:variable name="item_code"><xsl:value-of select="item_code"/></xsl:variable>
<xsl:variable name="net_amt"><xsl:value-of select="net_amt"/></xsl:variable> <xsl:variable name="net_amt"><xsl:value-of select="net_amt"/></xsl:variable>
<xsl:variable name="item_descr"><xsl:value-of select="item_descr"/></xsl:variable> <xsl:variable name="item_descr"><xsl:value-of select="item_descr"/></xsl:variable>
<xsl:variable name="item_quantity"><xsl:value-of select="item_quantity"/></xsl:variable>
<xsl:variable name="item_price"><xsl:value-of select="item_price"/></xsl:variable>
<xsl:variable name="totalQuantity"><xsl:value-of select="totalQuantity"/></xsl:variable>
<xsl:variable name="totalPrice"><xsl:value-of select="totalPrice"/></xsl:variable>
<xsl:variable name="item_no"><xsl:value-of select="item_no"/></xsl:variable>
<xsl:if test="$parent_item_descr = $item_descr and $position = 1"> <xsl:if test="$parent_item_descr = $item_descr and $position = 1">
<td class="td_leftAlign" style="text-align:center" > <div class="cell_container align_center" style="max-width: 10px !important;"><div class="th_Num cell_pd"><xsl:value-of select="prd_code"/></div></div>
<xsl:value-of select="prd_code"/>
</td>
</xsl:if> </xsl:if>
</xsl:for-each> </xsl:for-each>
</xsl:for-each> </xsl:for-each>
</tr>
</div>
</div>
<xsl:for-each select="//Detail2/item_descr/text()[generate-id()= generate-id(key('item_descr',.)[1])]"> <xsl:for-each select="//Detail2/item_descr/text()[generate-id()= generate-id(key('item_descr',.)[1])]">
<div class="cell_row">
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<xsl:variable name="item_quantity"><xsl:value-of select="item_quantity"/></xsl:variable>
<xsl:variable name="item_price"><xsl:value-of select="item_price"/></xsl:variable>
<xsl:variable name="parent_item_descr"><xsl:value-of select="."/></xsl:variable>
<xsl:variable name="position" select="position()"/>
<div class="fix_left cell_first cell_container" style="max-width: 200px !important; max-height:2px !important; padding-left: 5px;" contenteditable="false"><div class="cell_pd"><xsl:value-of select="$parent_item_descr"/></div></div>
<xsl:variable name="parent_item_descr"><xsl:value-of select="."/></xsl:variable>
<tr width ="100%">
<td class="td_leftAlign" nowrap="true" style="max-width: 333px;">
<strong><xsl:value-of select="$parent_item_descr"/></strong>
</td>
<xsl:for-each select="//Detail2"> <xsl:for-each select="//Detail2">
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable> <xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<xsl:variable name="tran_id"><xsl:value-of select="tran_id"/></xsl:variable> <xsl:variable name="tran_id"><xsl:value-of select="tran_id"/></xsl:variable>
<xsl:variable name="line_no"><xsl:value-of select="line_no"/></xsl:variable> <xsl:variable name="line_no"><xsl:value-of select="line_no"/></xsl:variable>
<xsl:variable name="quantity"><xsl:value-of select="quantity"/></xsl:variable> <xsl:variable name="quantity"><xsl:value-of select="quantity"/></xsl:variable>
<xsl:variable name="zeroQuantity"><xsl:value-of select="0"/></xsl:variable>
<xsl:variable name="unit"><xsl:value-of select="unit"/></xsl:variable> <xsl:variable name="unit"><xsl:value-of select="unit"/></xsl:variable>
<xsl:variable name="prd_code"><xsl:value-of select="prd_code"/></xsl:variable> <xsl:variable name="prd_code"><xsl:value-of select="prd_code"/></xsl:variable>
<xsl:variable name="item_ser"><xsl:value-of select="item_ser"/></xsl:variable> <xsl:variable name="item_ser"><xsl:value-of select="item_ser"/></xsl:variable>
...@@ -261,58 +536,155 @@ border: 1px solid #E7E7E7 !important; ...@@ -261,58 +536,155 @@ border: 1px solid #E7E7E7 !important;
<xsl:variable name="rate"><xsl:value-of select="rate"/></xsl:variable> <xsl:variable name="rate"><xsl:value-of select="rate"/></xsl:variable>
<xsl:variable name="net_amt"><xsl:value-of select="net_amt"/></xsl:variable> <xsl:variable name="net_amt"><xsl:value-of select="net_amt"/></xsl:variable>
<xsl:variable name="item_descr"><xsl:value-of select="item_descr"/></xsl:variable> <xsl:variable name="item_descr"><xsl:value-of select="item_descr"/></xsl:variable>
<xsl:variable name="zeroQuantity"><xsl:value-of select="0"/></xsl:variable> <xsl:variable name="item_quantity"><xsl:value-of select="item_quantity"/></xsl:variable>
<xsl:variable name="item_price"><xsl:value-of select="item_price"/></xsl:variable>
<xsl:variable name="totalQuantity"><xsl:value-of select="totalQuantity"/></xsl:variable>
<xsl:variable name="totalPrice"><xsl:value-of select="totalPrice"/></xsl:variable>
<xsl:variable name="item_no"><xsl:value-of select="item_no"/></xsl:variable>
<xsl:variable name="pos" select="position()"/>
<xsl:if test="$position = $dbID">
<div class="fix_left cell_first cell_container" style="left: 205px !important; max-width: 100px !important;padding-right: 5px;" contenteditable="false"><div style="max-width: 100px !important;" class =" edit_input cell_container">
<input type="number" value="{$item_quantity}" name="Detail2.{normalize-space($dbID)}.item_quantity" class="th_Num cell_pd itmQuantityClass" id="Detail2.{normalize-space($dbID)}.item_quantity"
style="width:100px;text-align:right" oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
maxlength="8" ISCHANGED="false" onchange="setQuantity( '{normalize-space($dbID)}' ), setNetAmount2( '{normalize-space($dbID)}' ), setTotalQuantity(), setTotalPrice();"/>
</div></div>
<div class="fix_left cell_first cell_container" style="left: 310px !important; max-width: 100px !important;padding-right: 5px;" contenteditable="false"><div style="max-width: 100px !important;" class =" edit_input cell_container">
<input type="number" value="{$item_price}" name="Detail2.{normalize-space($dbID)}.item_price" class="th_Num cell_pd itmPriceClass" id="Detail2.{normalize-space($dbID)}.item_price"
style="width:100px;text-align:right " oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
maxlength="8" ISCHANGED="false" onchange="changePrice( '{normalize-space($dbID)}' ), setTotalPrice()"/>
</div></div>
</xsl:if>
<xsl:if test="$parent_item_descr = $item_descr"> <xsl:if test="$parent_item_descr = $item_descr">
<td class="td_leftAlign" style="width:70px;text-align:center" >
<xsl:choose> <xsl:choose>
<xsl:when test="$quantity = $zeroQuantity"> <xsl:when test="$quantity = $zeroQuantity">
<input type="checkbox" name="Detail2.{normalize-space($dbID)}.selectbox" id="Detail2.{normalize-space($dbID)}.selectbox" checked = 'N' value="false" style="display:none;" /> <input type="checkbox" name="Detail2.{normalize-space($dbID)}.selectbox" id="Detail2.{normalize-space($dbID)}.selectbox" value="false" style="display:none;" />
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
<input type="checkbox" name="Detail2.{normalize-space($dbID)}.selectbox" id="Detail2.{normalize-space($dbID)}.selectbox" checked = 'Y' value="true" style="display:none;" /> <input type="checkbox" name="Detail2.{normalize-space($dbID)}.selectbox" id="Detail2.{normalize-space($dbID)}.selectbox" checked = 'Y' value="true" style="display:none;" />
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
<div class="edit_input cell_container" id="QntyDiv" style="max-width: 100px !important;">
<input type="number" value="{$quantity}" class="input_editable" name="Detail2.{normalize-space($dbID)}.quantity" id="Detail2.{normalize-space($dbID)}.quantity" style="width:60px;text-align:right" maxlength="6" ISCHANGED="false" onfocus="displayItemRate('{normalize-space($dbID)}');" onchange="setNetAmount( '{normalize-space($dbID)}' );" /> <input type="number" value="{$quantity}" class="th_Num cell_pd qty" name="Detail2.{normalize-space($dbID)}.quantity"
id="Detail2.{normalize-space($dbID)}.{normalize-space($position)}.quantity"
fieldId="Detail2.{normalize-space($pos)}.{normalize-space($position)}.quantity"
style="text-align:right"
oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
maxlength="6" ISCHANGED="false"
onfocus="displayItemRate('{normalize-space($dbID)}');"
onchange="calculateTotal(this), setNetAmount( '{normalize-space($dbID)}.{normalize-space($position)}' ), setTotalQuantity ();" />
<input type="hidden" value="{$unit}" name="Detail2.{normalize-space($dbID)}.unit" id="Detail2.{normalize-space($dbID)}.unit" ISCHANGED="false"/> <input type="hidden" value="{$unit}" name="Detail2.{normalize-space($dbID)}.unit" id="Detail2.{normalize-space($dbID)}.unit" ISCHANGED="false"/>
<input type="hidden" value="{$rate}" name="Detail2.{normalize-space($dbID)}.rate" id="Detail2.{normalize-space($dbID)}.rate" ISCHANGED="false" readonly="true" /> <input type="hidden" value="{$rate}" name="Detail2.{normalize-space($dbID)}.rate" id="Detail2.{normalize-space($dbID)}.rate" ISCHANGED="false" readonly="true" />
<input type="hidden" value="{$net_amt}" name="Detail2.{normalize-space($dbID)}.net_amt" id="Detail2.{normalize-space($dbID)}.net_amt" ISCHANGED="false" readonly="true" /> <input type="hidden" value="{$net_amt}" name="Detail2.{normalize-space($dbID)}.net_amt" id="Detail2.{normalize-space($dbID)}.net_amt" ISCHANGED="false" readonly="true" />
<input type="hidden" value="{$item_descr}" name="Detail2.{normalize-space($dbID)}.item_descr" id="Detail2.{normalize-space($dbID)}.item_descr" ISCHANGED="false" readonly="true" /> <input type="hidden" value="{$item_descr}" name="Detail2.{normalize-space($dbID)}.item_descr" id="Detail2.{normalize-space($dbID)}.item_descr" ISCHANGED="false" readonly="true" />
<!--<input type="hidden" value="{$tran_id}" name="Detail2.{normalize-space($dbID)}.tran_id" id="Detail2.{normalize-space($dbID)}.tran_id" ISCHANGED="false"/>-->
<input type="hidden" value="{$prd_code}" name="Detail2.{normalize-space($dbID)}.prd_code" id="Detail2.{normalize-space($dbID)}.prd_code" ISCHANGED="false"/> <input type="hidden" value="{$prd_code}" name="Detail2.{normalize-space($dbID)}.prd_code" id="Detail2.{normalize-space($dbID)}.prd_code" ISCHANGED="false"/>
<input type="hidden" value="{$item_code}" name="Detail2.{normalize-space($dbID)}.item_code" id="Detail2.{normalize-space($dbID)}.item_code" ISCHANGED="false"/> <input type="hidden" value="{$item_code}" name="Detail2.{normalize-space($dbID)}.item_code" id="Detail2.{normalize-space($dbID)}.item_code" ISCHANGED="false"/>
<input type="hidden" value="{$item_ser}" name="Detail2.{normalize-space($dbID)}.item_ser" id="Detail2.{normalize-space($dbID)}.item_ser" ISCHANGED="false"/> <input type="hidden" value="{$item_ser}" name="Detail2.{normalize-space($dbID)}.item_ser" id="Detail2.{normalize-space($dbID)}.item_ser" ISCHANGED="false"/>
<input type="hidden" value="{$line_no}" name="Detail2.{normalize-space($dbID)}.line_no" id="Detail2.{normalize-space($dbID)}.line_no" ISCHANGED="false"/> <input type="hidden" value="{$line_no}" name="Detail2.{normalize-space($dbID)}.line_no" id="Detail2.{normalize-space($dbID)}.line_no" ISCHANGED="false"/>
</td> </div>
<!--</td>-->
</xsl:if> </xsl:if>
</xsl:for-each> </xsl:for-each>
</tr> <!--</tr>-->
</div>
</xsl:for-each> </xsl:for-each>
</div>
</table> <div class="footer txtdark">
</div> <div class="cell_row ">
<table>
<tr width ="100%"> <xsl:for-each select="//Detail2/item_descr/text()[generate-id()= generate-id(key('item_descr',.)[1])]">
<td colspan="2">
<input type="hidden" value="2" name="FORM_NO" ID="FORM_NO" /> <xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<input type="hidden" value="sales_budget_cust_wiz" name="OBJ_NAME" /> <!-- <xsl:variable name="dbID"><xsl:value-of select="1"/></xsl:variable> -->
<input type="hidden" value="" name="action" id="action" /> <xsl:variable name="item_quantity"><xsl:value-of select="item_quantity"/></xsl:variable>
<input type="button" style="cursor:hand" CLASS="button" value="Cancel" name = "ActNext" id = "ActPrevious" title='' onclick="window.location.href='/ibase/webitm/jsp/E12WizardPage.jsp?OBJ_NAME=sales_budget_cust_wiz&amp;FORM_NO=1'"/> <xsl:variable name="item_price"><xsl:value-of select="item_price"/></xsl:variable>
<input type="submit" style="cursor:hand" CLASS="button" value="Finish" name = "ActNext" id = "ActNext" title='' onclick="setActionVal('finish')"/> <xsl:variable name="total_quantity"><xsl:value-of select="0"/></xsl:variable>
</td> <xsl:variable name="total_price"><xsl:value-of select="0"/></xsl:variable>
<TD class="header_main" nowrap="true" align="right" valign="middle" style="padding-left: 10px;font-size:16px;" width="20%" > <xsl:variable name="parent_item_descr"><xsl:value-of select="."/></xsl:variable>
<span id="Label_item_code_disp" style="font-size:15px;color: black;"></span><span id="item_code_disp" style="font-size:13px;color: grey;"></span>&#160;&#160;&#160; <xsl:variable name="item_no"><xsl:value-of select="item_no"/></xsl:variable>
<span id="Label_rate_disp" style="font-size:15px;color: black;"></span><span id="rate_disp" style="font-size:13px;color: grey;"></span> <xsl:variable name="calculatedTotal"><xsl:value-of select="calculatedTotal"/></xsl:variable>
</TD> <xsl:variable name="scoreBase"><xsl:value-of select="scoreBase"/></xsl:variable>
</tr> <xsl:variable name="position" select="position()"/>
</table>
<xsl:if test="$position = 1">
<div class="fix_left cell_first cell_container align_center" style="max-width: 200px !important;padding-left:5px"><div class="cell_pd">Total</div></div>
<div class="fix_left cell_first cell_container align_center" style="left: 205px !important; max-width: 100px !important;padding-right: 5px;"><div class="cell_pd">
<input type="number" value="{$total_quantity}" name="Detail2.{normalize-space($dbID)}.total_quantity" id="Detail2.{normalize-space($dbID)}.total_quantity" style="width:100px;text-align:right" ISCHANGED="false" readonly="true"/>
</div></div>
<div class="fix_left cell_first cell_container align_center" style="left: 310px !important; max-width: 100px !important;padding-right: 5px;"><div class="cell_pd">
<input type="number" value="{$total_price}" name="Detail2.{normalize-space($dbID)}.total_price" id="Detail2.{normalize-space($dbID)}.total_price" style="width:90px;text-align:right" ISCHANGED="false" readonly="true"/>
</div></div>
<xsl:for-each select="//Detail2">
<xsl:variable name="dbID"><xsl:value-of select="@domID"/></xsl:variable>
<xsl:variable name="item_descr"><xsl:value-of select="item_descr"/></xsl:variable>
<xsl:variable name="item_quantity"><xsl:value-of select="item_quantity"/></xsl:variable>
<xsl:variable name="item_price"><xsl:value-of select="item_price"/></xsl:variable>
<xsl:variable name="total_quantity"><xsl:value-of select="total_quantity"/></xsl:variable>
<xsl:variable name="total_price"><xsl:value-of select="total_price"/></xsl:variable>
<xsl:variable name="prd_quantity"><xsl:value-of select="prd_quantity"/></xsl:variable>
<xsl:variable name="item_no"><xsl:value-of select="item_no"/></xsl:variable>
<xsl:if test="$parent_item_descr = $item_descr">
<div class="cell_container align_center" style="max-width: 100px !important;"><div class="th_Num cell_pd">
<input type="text" value="{$prd_quantity}" name="Detail2.{normalize-space($dbID)}.prd_quantity" id="Detail2.{normalize-space($dbID)}.{normalize-space($position)}.prd_quantity" style="width:70px;text-align:right" ISCHANGED="false" readonly="true"/>
</div></div>
</xsl:if>
</xsl:for-each>
</xsl:if>
</xsl:for-each>
</div>
</div>
</div>
</div>
<div style="padding: 5 5 0px 20px;">
<div>
<input type="hidden" value="2" name="FORM_NO" ID="FORM_NO" />
<input type="hidden" value="sales_budget_cust_wiz" name="OBJ_NAME" />
<input type="hidden" value="" name="action" id="action" />
<button type="button" style="cursor:hand;" CLASS="button"
value="Cancel" name="ActCancel" id="ActCancel" title=''
onclick="window.location.href='/ibase/webitm/jsp/E12WizardPage.jsp?OBJ_NAME=sales_budget_cust_wiz&amp;FORM_NO=1'">Cancel</button>
<button type="submit" style="cursor:hand" CLASS="button"
value="Finish" name="ActFinish" id="ActFinish" title=''
onclick="setActionVal('finish')">Finish</button>
<span id="rate_disp" style="float:right;font-size:15px;color: grey;"></span>
<span id="Label_rate_disp" style="float:right;font-size:15px;color: black;" ></span>&#160;&#160;&#160;&#160;
<span id= "space" style="float:right;"> </span>
<span> </span>
<span> </span>
<span> </span>
<span> </span>
<span id="item_code_disp" style="float:right;font-size:15px;color: grey;"></span>
<span id="Label_item_code_disp" style="float:right;font-size:15px;color: black;"></span>
</div>
</div>
</form> </form>
</body> </body>
......
...@@ -41,7 +41,7 @@ function callPriceList( dbID, prcList ) ...@@ -41,7 +41,7 @@ function callPriceList( dbID, prcList )
} }
//////////////////////////////////////////////////////DISPLAY DESCRIPTION //////////////////////////////////////////////////// ////////////////////////////////////////////////////// DISPLAY DESCRIPTION ////////////////////////////////////////////////////
function displayCustActivity( cusCode, cusDescr ) function displayCustActivity( cusCode, cusDescr )
...@@ -184,7 +184,7 @@ function setDivHeight() ...@@ -184,7 +184,7 @@ function setDivHeight()
document.getElementById("dataDiv").style.height = (window.innerHeight - 140 ) + "px"; document.getElementById("dataDiv").style.height = (window.innerHeight - 140 ) + "px";
} }
//////////////////////////////////////////////////////NET AMOUNT //////////////////////////////////////////////////// ////////////////////////////////////////////////////// NET AMOUNT ////////////////////////////////////////////////////
function validateFirstFormData( value ) function validateFirstFormData( value )
...@@ -282,43 +282,6 @@ function disableButtons() ...@@ -282,43 +282,6 @@ function disableButtons()
} }
} }
function setNetAmount( dbId )
{
qty = document.getElementById("Detail2."+dbId+".quantity").value;
console.log('qty= '+qty);
if ( qty == null || qty == "" )
{
alert("Please enter the Quantity");
document.getElementById("Detail2."+dbId+".quantity").focus();
}
else if( qty < 0 )
{
alert("Quantity can't be Negative! Please enter valid Quantity");
document.getElementById("Detail2."+dbId+".quantity").focus();
}
else if ( qty == 0)
{
//alert("Quantity equals 0");
document.getElementById("Detail2."+dbId+".selectbox").checked = false;
document.getElementById("Detail2."+dbId+".selectbox").value = "false";
document.getElementById("Detail2."+dbId+".selectbox").setAttribute('checked','N');
}
else
{
document.getElementById("Detail2."+dbId+".selectbox").checked = true;
document.getElementById("Detail2."+dbId+".selectbox").value = "true";
document.getElementById("Detail2."+dbId+".selectbox").setAttribute('checked','Y');
obj1 = document.getElementById("Detail2."+dbId+".rate");
var rate = trims(obj1.value);
var amt = qty * rate ;
if(document.getElementById("Detail2."+dbId+".net_amt") != null)
{
document.getElementById("Detail2."+dbId+".net_amt").value = amt;
}
}
}
function trims(sVal) function trims(sVal)
{ {
...@@ -341,7 +304,7 @@ function trims(sVal) ...@@ -341,7 +304,7 @@ function trims(sVal)
} }
//////////////////////////////////////////////////////ITEM CHANGE //////////////////////////////////////////////////// ////////////////////////////////////////////////////// ITEM CHANGE ////////////////////////////////////////////////////
var wizard_obj_name = ""; var wizard_obj_name = "";
function buildDataString( colName ) function buildDataString( colName )
...@@ -1198,3 +1161,348 @@ function checkForError( retVal, argArr ) ...@@ -1198,3 +1161,348 @@ function checkForError( retVal, argArr )
} }
} }
} }
function setNetAmount2( dbId )
{
var qty = 0;
var totalDbID = 0;
var totalMinID = 0;
var zeroQuantity = 0;
totalDbID = dbId * 12;
totalMinID = totalDbID - 12;
var itmQnt = document.getElementById("Detail2."+dbId+".item_quantity").value;
console.log(' In setNetAmount222 and quantity totalDbID = '+totalDbID+' & totalMinID = '+totalMinID+ ' & itmQnt = '+itmQnt);
if ( itmQnt < 0 )
{
document.getElementById("Detail2."+dbId+".item_quantity").value = zeroQuantity;
document.getElementById("Detail2."+dbId+".item_price").value = zeroQuantity;
alert("Quantity can't be Negative! Please enter valid Item Quantity");
document.getElementById("Detail2."+dbId+".item_quantity").focus();
}
else
{
for (var i = totalDbID; i > totalMinID; i--)
{
qty = document.getElementById("Detail2."+i+"."+dbId+".quantity").value;
if ( qty == null || qty == "" )
{
alert("Please enter the Quantity");
document.getElementById("Detail2."+i+"."+dbId+".quantity").focus();
}
else if( qty < 0 )
{
alert("Quantity can't be Negative! Please enter valid Quantity");
document.getElementById("Detail2."+i+"."+dbId+".quantity").focus();
}
else if ( qty == 0)
{
//alert("Quantity equals 0");
document.getElementById("Detail2."+i+".selectbox").checked = false;
document.getElementById("Detail2."+i+".selectbox").value = "false";
document.getElementById("Detail2."+i+".selectbox").setAttribute('checked','N');
}
else
{
document.getElementById("Detail2."+i+".selectbox").checked = true;
document.getElementById("Detail2."+i+".selectbox").value = "true";
document.getElementById("Detail2."+i+".selectbox").setAttribute('checked','Y');
var rate = document.getElementById("Detail2."+i+".rate").value;
var amt = qty * rate ;
if(document.getElementById("Detail2."+i+".net_amt") != null)
{
document.getElementById("Detail2."+i+".net_amt").value = amt;
}
}
}
}
}
function setNetAmount( dbId )
{
console.log(' In setNetAmount and quantity dbid = '+dbId);
var onlyDbID = "";
var totalDbId = 0;
var totalPosId = 0;
var zeroQuantity = 0;
if ( dbId.indexOf('.') != -1 )
{
onlyDbID = dbId.substring(0,dbId.indexOf('.'));
}
else
{
onlyDbID = dbId ;
}
qty = document.getElementById("Detail2."+dbId+".quantity").value;
console.log('In setNetAmount dbId'+dbId+' now onlyDbID = '+onlyDbID+' and qty= '+qty);
if ( qty == null || qty == "" )
{
alert("Please enter the Quantity");
document.getElementById("Detail2."+dbId+".quantity").focus();
}
else if( qty < 0 )
{
document.getElementById("Detail2."+dbId+".quantity").value = zeroQuantity;
alert("Quantity can't be Negative! Please enter valid Item Quantity");
document.getElementById("Detail2."+dbId+".quantity").focus();
}
else if ( qty == 0)
{
document.getElementById("Detail2."+onlyDbID+".selectbox").checked = false;
document.getElementById("Detail2."+onlyDbID+".selectbox").value = "false";
document.getElementById("Detail2."+onlyDbID+".selectbox").setAttribute('checked','N');
}
else
{
document.getElementById("Detail2."+onlyDbID+".selectbox").checked = true;
document.getElementById("Detail2."+onlyDbID+".selectbox").value = "true";
document.getElementById("Detail2."+onlyDbID+".selectbox").setAttribute('checked','Y');
var rate = document.getElementById("Detail2."+onlyDbID+".rate").value;
var amt = qty * rate ;
if(document.getElementById("Detail2."+onlyDbID+".net_amt") != null)
{
document.getElementById("Detail2."+onlyDbID+".net_amt").value = amt;
}
}
totalDbId = onlyDbID*12;
var posId = dbId.substring(dbId.indexOf('.')+1);
totalPosId = posId * 12;
console.log('calling setRate... dbId= '+dbId +' & onlyDbID'+onlyDbID+' & totalDbId'+totalDbId+' & posId ='+posId+' & totalPosId= '+totalPosId);
setRate( posId, totalPosId );
}
function setQuantity( dbId )
{
var zeroQuantity = 0;
var itmQnt = document.getElementById("Detail2."+dbId+".item_quantity").value;
console.log('In setQuantity itmQnt => '+itmQnt);
if ( itmQnt < 0)
{
document.getElementById("Detail2."+dbId+".item_quantity").value = zeroQuantity;
document.getElementById("Detail2."+dbId+".item_price").value = zeroQuantity;
alert("Quantity can't be Negative! Please enter valid Item Quantity");
document.getElementById("Detail2."+dbId+".item_quantity").focus();
}
else
{
var divisor= 12;
var Qnty = itmQnt / divisor;
var QntyInt = parseInt(Qnty);
var QntRem = itmQnt % divisor;
changeAllQuantity( QntyInt, QntRem, dbId );
}
}
function changeAllQuantity( QntyInt, QntRem, dbId )
{
var totalDbId = 0;
var totalDbId2 = 0;
var rate = 0;
var rem = 0;
rem = QntyInt + QntRem;
totalDbId = dbId*12;
totalDbId2 = totalDbId-12;
console.log('In changeAllQuantity totalDbId->? '+totalDbId+ ' totalDbId2 = '+totalDbId2);
for (var i = totalDbId; i > totalDbId2; i--)
{
if( i==totalDbId )
{
if( rem )
{
document.getElementById("Detail2."+i+"."+dbId+".quantity").value = rem;
setVerticalTotal( document.getElementById("Detail2."+i+"."+dbId+".quantity") );
}
}
else
{
document.getElementById("Detail2."+i+"."+dbId+".quantity").value = QntyInt;
setVerticalTotal( document.getElementById("Detail2."+i+"."+dbId+".quantity") );
}
document.getElementById("Detail2."+i+".selectbox").setAttribute( "checked", true );
document.getElementById("Detail2."+i+".selectbox").value = "true";
}
console.log('calling setRate... dbId'+dbId+' & totalDbId = '+totalDbId);
setRate( dbId, totalDbId );
}
function setRate( posId, totalPosId )
{
var itmQnt = document.getElementById("Detail2."+posId+".item_quantity").value;
var ItmRate = document.getElementById("Detail2."+totalPosId+".rate").value;
var totalRate = +((itmQnt * ItmRate).toFixed(2));
var totalRate = Math.round(totalRate);
document.getElementById("Detail2."+posId+".item_price").value = totalRate;
console.log('In setRate DONE! FINAL END!!!');
console.log('Now going to setTotalPrice...................');
setTotalQuantity ();
}
//Change in Rate P/R=Q
function changePrice( dbId )
{
var ItmQuantity=0;
var zeroQuantity = 0;
var totalDbId = dbId*12;
var itemprice = document.getElementById("Detail2."+dbId+".item_price").value;
if( itemprice < 0 )
{
document.getElementById("Detail2."+dbId+".item_price").value = zeroQuantity;
alert("Price can't be Negative! Please enter valid Price");
document.getElementById("Detail2."+dbId+".item_price").focus();
}
else
{
var rate = document.getElementById("Detail2."+totalDbId+".rate").value;
ItmQuantity = +((itemprice / rate).toFixed(2));
ItmQuantity = Math.round(ItmQuantity);
document.getElementById("Detail2."+dbId+".item_quantity").value = ItmQuantity;
setQuantity( dbId );
}
}
function setTotalQuantity ()
{
var total = 0;
var items = document.getElementsByClassName("itmQuantityClass");
var itemCount = items.length;
for(var i = 0; i < itemCount; i++)
{
total = total + parseFloat(items[i].value);
}
document.getElementById("Detail2..total_quantity").value = total;
setTotalPrice ();
}
function setTotalPrice ()
{
var total = 0;
var items = document.getElementsByClassName("itmPriceClass");
var itemCount = items.length;
for(var i = 0; i < itemCount; i++)
{
total = total + parseFloat(items[i].value);
}
document.getElementById("Detail2..total_price").value = total;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function calculateTotal(element)
{
var tr = element.parentNode && element.parentNode.parentNode;
var horTotal = 0;
var verTotal = 0;
var id = element.id + '';
var idNum = id.substr(id.indexOf('.') + 1);
idNum = idNum.substr(0, idNum.indexOf('.'));
if (tr)
{
var horInputs = tr.querySelectorAll("input[id$='.quantity']");
horTotal = 0;
for ( var i = 0, len0 = horInputs.length; i < len0; i++)
{
var input = horInputs[i];
var val = window.parseFloat(input.value); // NaN
if (val)
horTotal += val;
}
var horTotalElement = tr.querySelector("input[id$='item_quantity']");
horTotalElement && (horTotalElement.value = horTotal);
}
setVerticalTotal( element );
}
function setVerticalTotal( element )
{
var idNum2 = 0;
var totalRows = document.getElementsByClassName( 'qty' );
var rows = totalRows.length / 12;
var divEle = document.getElementById( 'table_container' );
var vertTotal = 0;
var id = element.id + '';
var idNum = id.substr(id.indexOf('.') + 1);
var idNum1 = idNum.substr(0, idNum.indexOf('.'));
idNum1 = parseInt(idNum1);
if( idNum1 > 12 )
{
idNum1 = idNum1%12;
}
if ( idNum1 == 0 )
{
idNum1 = 12;
}
idNum2 = idNum1;
for (var j = 1; j <= rows; j++)
{
var inputSelector = '.' + +(+idNum1) + '.' + (+j) + '.quantity';
var input = divEle.querySelector("input[fieldId$='" + inputSelector + "");
if ( input )
{
var value = window.parseFloat(input.value);
if (value) vertTotal += value;
idNum1 += 12;
}
}
if(document.getElementById( 'Detail2.'+ idNum2 +'.1.prd_quantity' )!=null)
{
document.getElementById( 'Detail2.'+ idNum2 +'.1.prd_quantity' ).value = vertTotal;
}
console.log('IN AMey setVerticalTotal END with vertTotal = '+vertTotal);
}
...@@ -30,15 +30,17 @@ Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERAC ...@@ -30,15 +30,17 @@ Insert into OBJ_ACTIONS (OBJ_NAME,LINE_NO,IMAGE,DESCRIPTION,SERVICE_CODE,INTERAC
-- SYSTEM_EVENTS -- SYSTEM_EVENTS
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('sales_budget_cust_wiz','default_data_wiz','1','itm_default_salesBudgetWiz',null,'0',to_date('04-03-19','DD-MM-RR'),'BASE ','BASE ','2','JB','ibase.webitm.ejb.fin.SalesBudgetCustWizEJB',null); Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('sales_budget_cust_wiz','default_data_wiz','1','itm_default_salesBudgetWiz',null,'0',sysdate,'BASE ','BASE ','2','JB','ibase.webitm.ejb.fin.SalesBudgetCustWizEJB',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('sales_budget_cust_wiz','post_item_change','1','poic_salesBudgetCustWiz',null,'0',to_date('04-03-19','DD-MM-RR'),'BASE ','BASE','2','JB','ibase.webitm.ejb.fin.SalesBudgetCustWizEJB',null); Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('sales_budget_cust_wiz','post_item_change','1','poic_salesBudgetCustWiz',null,'0',sysdate,'BASE ','BASE','2','JB','ibase.webitm.ejb.fin.SalesBudgetCustWizEJB',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('sales_budget_cust_wiz','post_save','1','pos_salesBudgetCustWiz',null,'0',to_date('04-03-19','DD-MM-RR'),'Amey ','Amey','2','JB','ibase.webitm.ejb.fin.SalesBudgetCustPosWizEJB',null); Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('sales_budget_cust_wiz','post_save','1','pos_salesBudgetCustWiz',null,'0',sysdate,'Amey ','Amey','2','JB','ibase.webitm.ejb.fin.SalesBudgetCustPosWizEJB',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('sales_budget_cust_wiz','pre_navigate','1','prv_salesBudgetCustWiz',null,'0',to_date('04-03-19','DD-MM-RR'),'BASE ','BASE ','2','JB','ibase.webitm.ejb.fin.SalesBudgetCustWizEJB',null); Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('sales_budget_cust_wiz','pre_navigate','1','prv_salesBudgetCustWiz',null,'0',sysdate,'BASE ','BASE ','2','JB','ibase.webitm.ejb.fin.SalesBudgetCustWizEJB',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('sales_budget_cust_wiz','pre_validate','1','prv_salesBudgetCustWiz',null,'0',to_date('04-03-19','DD-MM-RR'),'BASE ','BASE','2','JB','ibase.webitm.ejb.fin.SalesBudgetCustWizEJB',null); Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values ('sales_budget_cust_wiz','pre_validate','1','prv_salesBudgetCustWiz',null,'0',sysdate,'BASE ','BASE','2','JB','ibase.webitm.ejb.fin.SalesBudgetCustWizEJB',null);
Insert into SYSTEM_EVENTS (OBJ_NAME,EVENT_CODE,EVENT_CONTEXT,SERVICE_CODE,METHOD_RULE,OVERWRITE_CORE,CHG_DATE,CHG_USER,CHG_TERM,RESULT_HANDLE,COMP_TYPE,COMP_NAME,COMM_FORMAT) values('sales_budget_cust_wiz','pre_save','1','presave_salesBudgetWiz',null,'0',sysdate,'amey' ,'192.168.0.185','2','EJB','ibase.webitm.ejb.fin.SalesBudgetCustPreSaveWizEJB',null);
...@@ -52,6 +54,9 @@ Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVIC ...@@ -52,6 +54,9 @@ Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVIC
Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM,SERVICE_NAMESPACE,RES_ELEM,SOAP_ACTION) values ('prv_salesBudgetCustWiz','SalesBudgetWiz','http://localhost:9090/axis/services/ValidatorService','base','wfValData','String','S',null,null,to_date('04-03-19','DD-MM-RR'),'PRAUT ','System',null,null,null); Insert into SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM,SERVICE_NAMESPACE,RES_ELEM,SOAP_ACTION) values ('prv_salesBudgetCustWiz','SalesBudgetWiz','http://localhost:9090/axis/services/ValidatorService','base','wfValData','String','S',null,null,to_date('04-03-19','DD-MM-RR'),'PRAUT ','System',null,null,null);
INSERT INTO SYSTEM_EVENT_SERVICES (SERVICE_CODE,SERVICE_DESCR,SERVICE_URI,SERVICE_PROVIDER,METHOD_NAME,RETURN_VALUE,RETURN_TYPE,RETURN_DESCR,RETURN_XFRM,CHG_DATE,CHG_USER,CHG_TERM,SERVICE_NAMESPACE,RES_ELEM,SOAP_ACTION)
values ('presave_salesBudgetWiz',null,'http://localhost:9090/axis/services/ValidatorService',null,'preSave','String','S',null,null,sysdate,'amey','192.168.0.185',null,null,null);
-- SYSTEM_SERVICE_ARGS -- SYSTEM_SERVICE_ARGS
...@@ -97,6 +102,12 @@ Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,AR ...@@ -97,6 +102,12 @@ Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,AR
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('prv_salesBudgetCustWiz',8,'XTRA_PARAMS','I',null,'S',null,to_date('04-03-19','DD-MM-RR'),'Amey ','BASE',null); Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('prv_salesBudgetCustWiz',8,'XTRA_PARAMS','I',null,'S',null,to_date('04-03-19','DD-MM-RR'),'Amey ','BASE',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('presave_salesBudgetWiz',1,'COMPONENT_TYPE','I',null,'S',null,sysdate,'amey','192.168.0.185','JB');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('presave_salesBudgetWiz',2,'COMPONENT_NAME','I',null,'S',null,sysdate,'amey','192.168.0.185','ibase.webitm.ejb.fin.SalesBudgetCustPreSaveWizEJB');
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('presave_salesBudgetWiz',3,'XML_DATA_ALL','I',null,'S',null,sysdate,'amey','192.168.0.185',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('presave_salesBudgetWiz',4,'EDIT_FLAG','I',null,'S',null,sysdate,'amey','192.168.0.185',null);
Insert into SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('presave_salesBudgetWiz',5,'XTRA_PARAMS','I',null,'S',null,sysdate,'amey','192.168.0.185',null);
INSERT INTO SYSTEM_SERVICE_ARGS (SERVICE_CODE,LINE_NO,ARG_NAME,ARG_MODE,DESCR,ARG_TYPE,ARG_XFRM,CHG_DATE,CHG_USER,CHG_TERM,ARG_VALUE) values ('presave_salesBudgetWiz',6,'DB_CONN','I',null,'S.Connection',null,sysdate,'amey','192.168.0.185',null);
......
...@@ -134,7 +134,7 @@ ...@@ -134,7 +134,7 @@
<dbname>sales_budget_cust.add_user</dbname> <dbname>sales_budget_cust.add_user</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>add_term</name> <name>add_term</name>
...@@ -155,7 +155,7 @@ ...@@ -155,7 +155,7 @@
<dbname>sales_budget_cust.chg_user</dbname> <dbname>sales_budget_cust.chg_user</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_term</name> <name>chg_term</name>
...@@ -214,10 +214,48 @@ ...@@ -214,10 +214,48 @@
<name>net_amt</name> <name>net_amt</name>
<dbname>sales_budget_cust.net_amt</dbname> <dbname>sales_budget_cust.net_amt</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;sales_budget_cust&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;sales_budget_cust.tran_id&quot;) COLUMN(NAME=&quot;sales_budget_cust.site_code&quot;) COLUMN(NAME=&quot;sales_budget_cust.tran_type&quot;) COLUMN(NAME=&quot;sales_budget_cust.acct_prd&quot;) COLUMN(NAME=&quot;sales_budget_cust.item_ser&quot;) COLUMN(NAME=&quot;sales_budget_cust.price_list&quot;) COLUMN(NAME=&quot;sales_budget_cust.bud_cat&quot;) COLUMN(NAME=&quot;sales_budget_cust.confirmed&quot;) COLUMN(NAME=&quot;sales_budget_cust.conf_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.emp_code__aprv&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_user&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_term&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_user&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_term&quot;) COLUMN(NAME=&quot;sales_budget_cust.tran_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.remarks&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;sales_budget_cust.cust_code&quot;) COLUMN(NAME=&quot;sales_budget_cust.pos_code&quot;) COLUMN(NAME=&quot;sales_budget_cust.net_amt&quot;) JOIN (LEFT=&quot;sales_budget_cust.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;sales_budget_cust.emp_code__aprv&quot; )) </retrieve> <table_column>
<type size="60">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>org_structure_pos_descr</name>
<dbname>org_structure.pos_descr</dbname>
</table_column>
<table_column>
<type size="60">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>org_structure_descr</name>
<dbname>org_structure.descr</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>pricelist_mst_descr</name>
<dbname>pricelist_mst.descr</dbname>
</table_column>
<table_column>
<type size="50">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>cust_name</name>
<dbname>customer.cust_name</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>itemser_descr</name>
<dbname>itemser.descr</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;sales_budget_cust&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;org_structure&quot; ) TABLE(NAME=&quot;pricelist_mst&quot; ) TABLE(NAME=&quot;customer&quot; ) TABLE(NAME=&quot;itemser&quot; ) COLUMN(NAME=&quot;sales_budget_cust.tran_id&quot;) COLUMN(NAME=&quot;sales_budget_cust.site_code&quot;) COLUMN(NAME=&quot;sales_budget_cust.tran_type&quot;) COLUMN(NAME=&quot;sales_budget_cust.acct_prd&quot;) COLUMN(NAME=&quot;sales_budget_cust.item_ser&quot;) COLUMN(NAME=&quot;sales_budget_cust.price_list&quot;) COLUMN(NAME=&quot;sales_budget_cust.bud_cat&quot;) COLUMN(NAME=&quot;sales_budget_cust.confirmed&quot;) COLUMN(NAME=&quot;sales_budget_cust.conf_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.emp_code__aprv&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_user&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_term&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_user&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_term&quot;) COLUMN(NAME=&quot;sales_budget_cust.tran_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.remarks&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;sales_budget_cust.cust_code&quot;) COLUMN(NAME=&quot;sales_budget_cust.pos_code&quot;) COLUMN(NAME=&quot;sales_budget_cust.net_amt&quot;) COMPUTE(NAME=&quot;org_structure.descr as pos_descr&quot;) COLUMN(NAME=&quot;org_structure.descr&quot;) COLUMN(NAME=&quot;pricelist_mst.descr&quot;) COLUMN(NAME=&quot;customer.cust_name&quot;) COLUMN(NAME=&quot;itemser.descr&quot;) JOIN (LEFT=&quot;sales_budget_cust.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;sales_budget_cust.emp_code__aprv&quot; ) JOIN (LEFT=&quot;sales_budget_cust.pos_code&quot; OP =&quot;=&quot;RIGHT=&quot;org_structure.pos_code&quot; ) JOIN (LEFT=&quot;sales_budget_cust.price_list&quot; OP =&quot;=&quot;RIGHT=&quot;pricelist_mst.price_list&quot; ) JOIN (LEFT=&quot;sales_budget_cust.cust_code&quot; OP =&quot;=&quot;RIGHT=&quot;customer.cust_code&quot; ) JOIN (LEFT=&quot;sales_budget_cust.item_ser&quot; OP =&quot;=&quot;RIGHT=&quot;itemser.item_ser&quot; )WHERE( EXP1 =&quot;~&quot;SALES_BUDGET_CUST~&quot;.~&quot;TRAN_DATE~&quot;&quot; OP =&quot;&gt;=&quot; EXP2 =&quot;:from_date&quot; LOGIC =&quot;and&quot; ) WHERE( EXP1 =&quot;~&quot;SALES_BUDGET_CUST~&quot;.~&quot;TRAN_DATE~&quot;&quot; OP =&quot;&lt;=&quot; EXP2 =&quot;:to_date&quot; ) ) ARG(NAME = &quot;from_date&quot; TYPE = date) ARG(NAME = &quot;to_date&quot; TYPE = date) </retrieve>
<update>SALES_BUDGET_CUST</update> <update>SALES_BUDGET_CUST</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
<argument>
<name>from_date</name>
<type>date</type>
</argument>
<argument>
<name>to_date</name>
<type>date</type>
</argument>
</TableDefinition> </TableDefinition>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
...@@ -891,6 +929,146 @@ ...@@ -891,6 +929,146 @@
<color>1073741824</color> <color>1073741824</color>
</background> </background>
</TextObject> </TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Org Structure Pos Descr</text>
<border>0</border>
<color>33554432</color>
<x>2414</x>
<y>1</y>
<height>17</height>
<width>478</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>org_structure_pos_descr_t</name>
<visible>1</visible>
<font>
<face>Liberation Sans</face>
<height>-11</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Org Structure Descr</text>
<border>0</border>
<color>33554432</color>
<x>2894</x>
<y>1</y>
<height>17</height>
<width>478</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>org_structure_descr_t</name>
<visible>1</visible>
<font>
<face>Liberation Sans</face>
<height>-11</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Pricelist Mst Descr</text>
<border>0</border>
<color>33554432</color>
<x>3374</x>
<y>1</y>
<height>17</height>
<width>318</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pricelist_mst_descr_t</name>
<visible>1</visible>
<font>
<face>Liberation Sans</face>
<height>-11</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Customer Cust Name</text>
<border>0</border>
<color>33554432</color>
<x>3694</x>
<y>1</y>
<height>17</height>
<width>398</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_name_t</name>
<visible>1</visible>
<font>
<face>Liberation Sans</face>
<height>-11</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</TextObject>
<TextObject>
<band>Header</band>
<alignment>0</alignment>
<text>Itemser Descr</text>
<border>0</border>
<color>0</color>
<x>4094</x>
<y>1</y>
<height>15</height>
<width>318</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>itemser_descr_t</name>
<visible>1</visible>
<font>
<face>Liberation Sans</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <id>1</id>
...@@ -1791,6 +1969,186 @@ ...@@ -1791,6 +1969,186 @@
<color>1073741824</color> <color>1073741824</color>
</background> </background>
</ColumnObject> </ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>25</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>2414</x>
<y>1</y>
<height>15</height>
<width>478</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>org_structure_pos_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>26</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>2894</x>
<y>1</y>
<height>15</height>
<width>478</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>org_structure_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>27</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>3374</x>
<y>1</y>
<height>15</height>
<width>318</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pricelist_mst_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>28</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>3694</x>
<y>1</y>
<height>15</height>
<width>398</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_name</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>29</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>0</color>
<x>4094</x>
<y>1</y>
<height>15</height>
<width>318</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>itemser_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>1073741824</color>
</background>
</ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -133,7 +133,7 @@ ...@@ -133,7 +133,7 @@
<dbname>sales_budget_cust.add_date</dbname> <dbname>sales_budget_cust.add_date</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>add_term</name> <name>add_term</name>
...@@ -161,7 +161,7 @@ ...@@ -161,7 +161,7 @@
<dbname>sales_budget_cust.chg_user</dbname> <dbname>sales_budget_cust.chg_user</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="15">char</type> <type size="300">char</type>
<update>yes</update> <update>yes</update>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>chg_term</name> <name>chg_term</name>
...@@ -186,12 +186,6 @@ ...@@ -186,12 +186,6 @@
<name>itemser_descr</name> <name>itemser_descr</name>
<dbname>itemser.descr</dbname> <dbname>itemser.descr</dbname>
</table_column> </table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>pricelist_mst_descr</name>
<dbname>pricelist_mst.descr</dbname>
</table_column>
<table_column> <table_column>
<type size="1">char</type> <type size="1">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
...@@ -237,7 +231,25 @@ ...@@ -237,7 +231,25 @@
<name>net_amt</name> <name>net_amt</name>
<dbname>sales_budget_cust.net_amt</dbname> <dbname>sales_budget_cust.net_amt</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;sales_budget_cust&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;itemser&quot; ) TABLE(NAME=&quot;pricelist_mst&quot; ) TABLE(NAME=&quot;employee&quot; ) COLUMN(NAME=&quot;sales_budget_cust.tran_id&quot;) COLUMN(NAME=&quot;sales_budget_cust.tran_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.tran_type&quot;) COLUMN(NAME=&quot;sales_budget_cust.acct_prd&quot;) COLUMN(NAME=&quot;sales_budget_cust.item_ser&quot;) COLUMN(NAME=&quot;sales_budget_cust.bud_cat&quot;) COLUMN(NAME=&quot;sales_budget_cust.price_list&quot;) COLUMN(NAME=&quot;sales_budget_cust.confirmed&quot;) COLUMN(NAME=&quot;sales_budget_cust.conf_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.emp_code__aprv&quot;) COLUMN(NAME=&quot;sales_budget_cust.remarks&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_term&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_user&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_user&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_term&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;sales_budget_cust.site_code&quot;) COLUMN(NAME=&quot;itemser.descr&quot;) COLUMN(NAME=&quot;pricelist_mst.descr&quot;) COLUMN(NAME=&quot;site.site_type&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;sales_budget_cust.cust_code&quot;) COLUMN(NAME=&quot;sales_budget_cust.pos_code&quot;) COLUMN(NAME=&quot;sales_budget_cust.net_amt&quot;) JOIN (LEFT=&quot;sales_budget_cust.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;sales_budget_cust.emp_code__aprv&quot; ) JOIN (LEFT=&quot;sales_budget_cust.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; ) JOIN (LEFT=&quot;sales_budget_cust.item_ser&quot; OP =&quot;=&quot;RIGHT=&quot;itemser.item_ser&quot; ) JOIN (LEFT=&quot;sales_budget_cust.price_list&quot; OP =&quot;=&quot;RIGHT=&quot;pricelist_mst.price_list&quot; )WHERE( EXP1 =&quot;~&quot;SALES_BUDGET_CUST~&quot;.~&quot;TRAN_ID~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = number) </retrieve> <table_column>
<type size="60">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>org_structure_descr</name>
<dbname>org_structure.descr</dbname>
</table_column>
<table_column>
<type size="40">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>pricelist_mst_descr</name>
<dbname>pricelist_mst.descr</dbname>
</table_column>
<table_column>
<type size="50">char</type>
<updatewhereclause>yes</updatewhereclause>
<name>cust_name</name>
<dbname>customer.cust_name</dbname>
</table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;sales_budget_cust&quot; ) TABLE(NAME=&quot;site&quot; ) TABLE(NAME=&quot;itemser&quot; ) TABLE(NAME=&quot;employee&quot; ) TABLE(NAME=&quot;org_structure&quot; ) TABLE(NAME=&quot;pricelist_mst&quot; ) TABLE(NAME=&quot;customer&quot; ) COLUMN(NAME=&quot;sales_budget_cust.tran_id&quot;) COLUMN(NAME=&quot;sales_budget_cust.tran_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.tran_type&quot;) COLUMN(NAME=&quot;sales_budget_cust.acct_prd&quot;) COLUMN(NAME=&quot;sales_budget_cust.item_ser&quot;) COLUMN(NAME=&quot;sales_budget_cust.bud_cat&quot;) COLUMN(NAME=&quot;sales_budget_cust.price_list&quot;) COLUMN(NAME=&quot;sales_budget_cust.confirmed&quot;) COLUMN(NAME=&quot;sales_budget_cust.conf_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.emp_code__aprv&quot;) COLUMN(NAME=&quot;sales_budget_cust.remarks&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_term&quot;) COLUMN(NAME=&quot;sales_budget_cust.add_user&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_date&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_user&quot;) COLUMN(NAME=&quot;sales_budget_cust.chg_term&quot;) COLUMN(NAME=&quot;site.descr&quot;) COLUMN(NAME=&quot;sales_budget_cust.site_code&quot;) COLUMN(NAME=&quot;itemser.descr&quot;) COLUMN(NAME=&quot;site.site_type&quot;) COLUMN(NAME=&quot;employee.emp_fname&quot;) COLUMN(NAME=&quot;employee.emp_mname&quot;) COLUMN(NAME=&quot;employee.emp_lname&quot;) COLUMN(NAME=&quot;sales_budget_cust.cust_code&quot;) COLUMN(NAME=&quot;sales_budget_cust.pos_code&quot;) COLUMN(NAME=&quot;sales_budget_cust.net_amt&quot;) COLUMN(NAME=&quot;org_structure.descr&quot;) COLUMN(NAME=&quot;pricelist_mst.descr&quot;) COLUMN(NAME=&quot;customer.cust_name&quot;) JOIN (LEFT=&quot;sales_budget_cust.emp_code__aprv&quot; OP =&quot;=&quot;RIGHT=&quot;employee.emp_code&quot; OUTER1 =&quot;sales_budget_cust.emp_code__aprv&quot; ) JOIN (LEFT=&quot;sales_budget_cust.pos_code&quot; OP =&quot;=&quot;RIGHT=&quot;org_structure.pos_code&quot; ) JOIN (LEFT=&quot;sales_budget_cust.site_code&quot; OP =&quot;=&quot;RIGHT=&quot;site.site_code&quot; ) JOIN (LEFT=&quot;sales_budget_cust.item_ser&quot; OP =&quot;=&quot;RIGHT=&quot;itemser.item_ser&quot; ) JOIN (LEFT=&quot;sales_budget_cust.price_list&quot; OP =&quot;=&quot;RIGHT=&quot;pricelist_mst.price_list&quot; ) JOIN (LEFT=&quot;sales_budget_cust.cust_code&quot; OP =&quot;=&quot;RIGHT=&quot;customer.cust_code&quot; )WHERE( EXP1 =&quot;~&quot;SALES_BUDGET_CUST~&quot;.~&quot;TRAN_ID~&quot;&quot; OP =&quot;=&quot; EXP2 =&quot;:tran_id&quot; ) ) ARG(NAME = &quot;tran_id&quot; TYPE = number) </retrieve>
<update>SALES_BUDGET_CUST</update> <update>SALES_BUDGET_CUST</update>
<updatewhere>0</updatewhere> <updatewhere>0</updatewhere>
<updatekeyinplace>no</updatekeyinplace> <updatekeyinplace>no</updatekeyinplace>
...@@ -270,6 +282,54 @@ ...@@ -270,6 +282,54 @@
<color>553648127</color> <color>553648127</color>
</background> </background>
</GroupBox> </GroupBox>
<GroupBox>
<band>Detail</band>
<text>Others</text>
<border>2</border>
<color>33554432</color>
<x>4</x>
<y>320</y>
<height>97</height>
<width>558</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<GroupBox>
<band>Detail</band>
<text>Status</text>
<border>2</border>
<color>33554432</color>
<x>4</x>
<y>223</y>
<height>80</height>
<width>560</width>
<name>gb_3</name>
<visible>1</visible>
<font>
<face>Liberation Sans</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</GroupBox>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>1</id> <id>1</id>
...@@ -339,12 +399,12 @@ ...@@ -339,12 +399,12 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Date :</text> <text>Tran Date :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>399</x> <x>399</x>
<y>32</y> <y>32</y>
<height>16</height> <height>15</height>
<width>71</width> <width>71</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -368,7 +428,7 @@ ...@@ -368,7 +428,7 @@
<band>Detail</band> <band>Detail</band>
<id>2</id> <id>2</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>10</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>474</x> <x>474</x>
...@@ -402,7 +462,7 @@ ...@@ -402,7 +462,7 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Cutomer code:</text> <text>Cutomer :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>13</x> <x>13</x>
...@@ -429,9 +489,9 @@ ...@@ -429,9 +489,9 @@
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>26</id> <id>25</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>20</tabsequence> <tabsequence>10</tabsequence>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>127</x> <x>127</x>
...@@ -466,138 +526,7 @@ ...@@ -466,138 +526,7 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>POS code :</text> <text>Account Period :</text>
<border>0</border>
<color>33554432</color>
<x>386</x>
<y>54</y>
<height>15</height>
<width>71</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pos_code_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>27</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>0</border>
<color>33554432</color>
<x>467</x>
<y>54</y>
<height>15</height>
<width>80</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pos_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<autoselect>yes</autoselect>
<required>yes</required>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Transaction Type :</text>
<border>0</border>
<color>33554432</color>
<x>13</x>
<y>73</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_type_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>40</tabsequence>
<border>5</border>
<color>33554432</color>
<x>127</x>
<y>73</y>
<height>16</height>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>3</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Acct Period :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>13</x> <x>13</x>
...@@ -626,7 +555,7 @@ ...@@ -626,7 +555,7 @@
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>60</tabsequence> <tabsequence>50</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>127</x> <x>127</x>
...@@ -692,7 +621,7 @@ ...@@ -692,7 +621,7 @@
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>5</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>70</tabsequence> <tabsequence>60</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>305</x> <x>305</x>
...@@ -794,7 +723,7 @@ ...@@ -794,7 +723,7 @@
<band>Detail</band> <band>Detail</band>
<id>7</id> <id>7</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>80</tabsequence> <tabsequence>70</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>127</x> <x>127</x>
...@@ -828,57 +757,27 @@ ...@@ -828,57 +757,27 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Remarks :</text>
<border>0</border>
<color>33554432</color>
<x>13</x>
<y>155</y>
<height>15</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>remarks_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>11</id> <id>20</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>90</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>134217857</color>
<x>127</x> <x>204</x>
<y>155</y> <y>133</y>
<height>38</height> <height>16</height>
<width>420</width> <width>164</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>remarks</name> <name>pricelist_mst_descr</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>200</limit> <limit>0</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -891,23 +790,23 @@ ...@@ -891,23 +790,23 @@
</font> </font>
<background> <background>
<mode>2</mode> <mode>2</mode>
<color>16777215</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Net Amount :</text> <text>Remarks :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>259</x> <x>13</x>
<y>133</y> <y>155</y>
<height>15</height> <height>15</height>
<width>77</width> <width>107</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>net_amt_t</name> <name>remarks_t</name>
<visible>1</visible> <visible>1</visible>
<font> <font>
<face>Arial</face> <face>Arial</face>
...@@ -918,31 +817,33 @@ ...@@ -918,31 +817,33 @@
<charset>0</charset> <charset>0</charset>
</font> </font>
<background> <background>
<mode>1</mode> <mode>2</mode>
<color>536870912</color> <color>67108864</color>
</background> </background>
</TextObject> </TextObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>28</id> <id>11</id>
<alignment>1</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>80</tabsequence>
<border>0</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>353</x> <x>127</x>
<y>133</y> <y>155</y>
<height>15</height> <height>38</height>
<width>195</width> <width>420</width>
<format>[general]</format> <format>[general]</format>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
<name>net_amt</name> <name>remarks</name>
<visible>1</visible> <visible>1</visible>
<EditStyle style="edit"> <EditStyle style="edit">
<limit>0</limit> <limit>200</limit>
<case>any</case> <case>any</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect> <autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode> <imemode>0</imemode>
</EditStyle> </EditStyle>
<font> <font>
...@@ -958,54 +859,6 @@ ...@@ -958,54 +859,6 @@
<color>16777215</color> <color>16777215</color>
</background> </background>
</ColumnObject> </ColumnObject>
<GroupBox>
<band>Detail</band>
<text>Status</text>
<border>2</border>
<color>33554432</color>
<x>4</x>
<y>223</y>
<height>80</height>
<width>560</width>
<name>gb_3</name>
<visible>1</visible>
<font>
<face>Liberation Sans</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</GroupBox>
<GroupBox>
<band>Detail</band>
<text>Others</text>
<border>2</border>
<color>33554432</color>
<x>4</x>
<y>320</y>
<height>97</height>
<width>558</width>
<name>gb_2</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>553648127</color>
</background>
</GroupBox>
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
...@@ -1074,7 +927,7 @@ ...@@ -1074,7 +927,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>23</id> <id>22</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
...@@ -1110,7 +963,7 @@ ...@@ -1110,7 +963,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>24</id> <id>23</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
...@@ -1146,7 +999,7 @@ ...@@ -1146,7 +999,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>25</id> <id>24</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
...@@ -1339,7 +1192,7 @@ ...@@ -1339,7 +1192,7 @@
<band>Detail</band> <band>Detail</band>
<id>6</id> <id>6</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>50</tabsequence> <tabsequence>40</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>127</x> <x>127</x>
...@@ -1377,7 +1230,7 @@ ...@@ -1377,7 +1230,7 @@
<band>Detail</band> <band>Detail</band>
<id>19</id> <id>19</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>100</tabsequence> <tabsequence>90</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>127</x> <x>127</x>
...@@ -1865,6 +1718,266 @@ ...@@ -1865,6 +1718,266 @@
<color>67108864</color> <color>67108864</color>
</background> </background>
</ColumnObject> </ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Position Code :</text>
<border>0</border>
<color>33554432</color>
<x>13</x>
<y>73</y>
<height>15</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pos_code_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Transaction Type :</text>
<border>0</border>
<color>33554432</color>
<x>364</x>
<y>73</y>
<height>16</height>
<width>107</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_type_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>3</id>
<alignment>0</alignment>
<tabsequence>30</tabsequence>
<border>5</border>
<color>33554432</color>
<x>478</x>
<y>73</y>
<height>16</height>
<width>72</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>tran_type</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>3</limit>
<case>upper</case>
<focusrectangle>no</focusrectangle>
<autoselect>yes</autoselect>
<autohscroll>yes</autohscroll>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>27</id>
<alignment>1</alignment>
<tabsequence>32766</tabsequence>
<border>0</border>
<color>33554432</color>
<x>496</x>
<y>133</y>
<height>15</height>
<width>52</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_amt</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<TextObject>
<band>Detail</band>
<alignment>1</alignment>
<text>Net Amount :</text>
<border>0</border>
<color>33554432</color>
<x>402</x>
<y>133</y>
<height>15</height>
<width>77</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>net_amt_t</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>1</mode>
<color>536870912</color>
</background>
</TextObject>
<ColumnObject>
<band>Detail</band>
<id>26</id>
<alignment>0</alignment>
<tabsequence>20</tabsequence>
<border>0</border>
<color>33554432</color>
<x>127</x>
<y>73</y>
<height>15</height>
<width>80</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>pos_code</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>10</limit>
<case>any</case>
<autoselect>yes</autoselect>
<required>yes</required>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>16777215</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>28</id>
<alignment>0</alignment>
<tabsequence>32766</tabsequence>
<border>5</border>
<color>134217857</color>
<x>211</x>
<y>73</y>
<height>15</height>
<width>148</width>
<format>[general]</format>
<html>
<valueishtml>0</valueishtml>
</html>
<name>org_structure_descr</name>
<visible>1</visible>
<EditStyle style="edit">
<limit>0</limit>
<case>any</case>
<autoselect>yes</autoselect>
<imemode>0</imemode>
</EditStyle>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<ColumnObject>
<band>Detail</band>
<id>30</id>
<alignment>0</alignment>
<tabsequence>100</tabsequence>
<border>0</border>
<color>134217857</color>
<x>211</x>
<y>54</y>
<height>15</height>
<width>149</width>
<html>
<valueishtml>0</valueishtml>
</html>
<name>cust_name</name>
<visible>1</visible>
<font>
<face>Arial</face>
<height>-10</height>
<weight>400</weight>
<family>2</family>
<pitch>2</pitch>
<charset>0</charset>
</font>
<background>
<mode>2</mode>
<color>67108864</color>
</background>
</ColumnObject>
<HtmlTable> <HtmlTable>
<border>1</border> <border>1</border>
</HtmlTable> </HtmlTable>
......
...@@ -159,12 +159,12 @@ ...@@ -159,12 +159,12 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Line No:</text> <text>Line# :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>35</x> <x>35</x>
<y>268</y> <y>268</y>
<height>17</height> <height>15</height>
<width>82</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -225,12 +225,12 @@ ...@@ -225,12 +225,12 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Tran Id:</text> <text>Tran Id :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>362</x> <x>362</x>
<y>268</y> <y>268</y>
<height>17</height> <height>15</height>
<width>82</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -315,12 +315,12 @@ ...@@ -315,12 +315,12 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Rate:</text> <text>Rate :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>228</x> <x>228</x>
<y>122</y> <y>122</y>
<height>17</height> <height>15</height>
<width>69</width> <width>69</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -344,7 +344,7 @@ ...@@ -344,7 +344,7 @@
<band>Detail</band> <band>Detail</band>
<id>8</id> <id>8</id>
<alignment>1</alignment> <alignment>1</alignment>
<tabsequence>40</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>301</x> <x>301</x>
...@@ -453,13 +453,13 @@ ...@@ -453,13 +453,13 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Net Amt:</text> <text>Net Amount :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>394</x> <x>386</x>
<y>122</y> <y>122</y>
<height>17</height> <height>15</height>
<width>69</width> <width>77</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
</html> </html>
...@@ -672,7 +672,7 @@ ...@@ -672,7 +672,7 @@
<band>Detail</band> <band>Detail</band>
<id>9</id> <id>9</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>50</tabsequence> <tabsequence>40</tabsequence>
<border>5</border> <border>5</border>
<color>33554432</color> <color>33554432</color>
<x>121</x> <x>121</x>
...@@ -709,12 +709,12 @@ ...@@ -709,12 +709,12 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Item Code:</text> <text>Item :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>35</x> <x>35</x>
<y>61</y> <y>61</y>
<height>17</height> <height>15</height>
<width>82</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -737,12 +737,12 @@ ...@@ -737,12 +737,12 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Unit:</text> <text>Unit :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>35</x> <x>35</x>
<y>81</y> <y>81</y>
<height>17</height> <height>15</height>
<width>82</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -765,12 +765,12 @@ ...@@ -765,12 +765,12 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Prd Code:</text> <text>Period Code :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>35</x> <x>35</x>
<y>101</y> <y>101</y>
<height>17</height> <height>15</height>
<width>82</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -793,12 +793,12 @@ ...@@ -793,12 +793,12 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Quantity:</text> <text>Quantity :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>35</x> <x>35</x>
<y>122</y> <y>122</y>
<height>17</height> <height>15</height>
<width>82</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
...@@ -821,12 +821,12 @@ ...@@ -821,12 +821,12 @@
<TextObject> <TextObject>
<band>Detail</band> <band>Detail</band>
<alignment>1</alignment> <alignment>1</alignment>
<text>Remarks:</text> <text>Remarks :</text>
<border>0</border> <border>0</border>
<color>33554432</color> <color>33554432</color>
<x>35</x> <x>36</x>
<y>144</y> <y>143</y>
<height>17</height> <height>15</height>
<width>82</width> <width>82</width>
<html> <html>
<valueishtml>0</valueishtml> <valueishtml>0</valueishtml>
......
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