Commit 976fba61 authored by ssarkar's avatar ssarkar

update by sumit on 28/02/13 for issue tracker point 99 (STOCK DEALLOCATION) .


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92768 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d3971d06
...@@ -110,6 +110,23 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo ...@@ -110,6 +110,23 @@ public class DeallocArtConf extends ActionHandlerEJB implements DeallocArtConfLo
rs.close(); rs = null; rs.close(); rs = null;
pstmt.close(); pstmt = null; pstmt.close(); pstmt = null;
//Checking is one of the carton is already confirmed
sql = " SELECT C.STATUS FROM CARTON_MASTER C, DEALLOC_ART_DET DRD WHERE DRD.TRAN_ID = ? AND DRD.CARTON_NO = C.CARTON_NO ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranId);
rs = pstmt.executeQuery();
while(rs.next())
{
System.out.println(" STATUS ["+rs.getString("STATUS")+"]");
if("R".equalsIgnoreCase(rs.getString("STATUS")))
{
errString = itmdbAccess.getErrorString("","CARTALLCOF",loginEmpCode);
return errString;
}
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;
sql = " "; sql = " ";
sql = " SELECT DISTINCT D.CARTON_NO, PD.SALE_ORDER , PD.LINE_NO__SORD, PD.ITEM_CODE, PD.EXP_LEV, PD.LOC_CODE__TO, PD.LOT_SL, PD.LOC_CODE, " + sql = " SELECT DISTINCT D.CARTON_NO, PD.SALE_ORDER , PD.LINE_NO__SORD, PD.ITEM_CODE, PD.EXP_LEV, PD.LOC_CODE__TO, PD.LOT_SL, PD.LOC_CODE, " +
" PD.LOT_NO, D.QUANTITY, S.CUST_CODE, PH.WAVE_ID, D.PICK_ORDER, PD.LINE_NO FROM PICK_ORD_DET PD, PICK_ORD_HDR PH , DEALLOC_ART_DET D, SORDER S " + " PD.LOT_NO, D.QUANTITY, S.CUST_CODE, PH.WAVE_ID, D.PICK_ORDER, PD.LINE_NO FROM PICK_ORD_DET PD, PICK_ORD_HDR PH , DEALLOC_ART_DET D, SORDER S " +
......
...@@ -216,7 +216,7 @@ public class DeallocArtIC extends ValidatorEJB implements DeallocArtICRemote, De ...@@ -216,7 +216,7 @@ public class DeallocArtIC extends ValidatorEJB implements DeallocArtICRemote, De
" AND CM.PICK_ORDER = POD.PICK_ORDER AND POH.PICK_ORDER = POD.PICK_ORDER " + " AND CM.PICK_ORDER = POD.PICK_ORDER AND POH.PICK_ORDER = POD.PICK_ORDER " +
" AND CM.LINE_NO__PICK = POD.LINE_NO AND WTD.PTCN = CM.PTCN " + " AND CM.LINE_NO__PICK = POD.LINE_NO AND WTD.PTCN = CM.PTCN " +
" AND WTD.REF_ID = CM.PICK_ORDER AND POH.PICK_TYPE IN (?,?) " + " AND WTD.REF_ID = CM.PICK_ORDER AND POH.PICK_TYPE IN (?,?) " +
" AND ( FN_CHECK_DEALLOC_ARTDET(CM.PTCN, CM.CARTON_NO ) = 0 ) "+ //" AND ( FN_CHECK_DEALLOC_ARTDET(CM.PTCN, CM.CARTON_NO ) = 0 ) "+
" AND CM.STATUS <> ? "; " AND CM.STATUS <> ? ";
pstmt1 = conn.prepareStatement(sql); pstmt1 = conn.prepareStatement(sql);
...@@ -355,7 +355,7 @@ public class DeallocArtIC extends ValidatorEJB implements DeallocArtICRemote, De ...@@ -355,7 +355,7 @@ public class DeallocArtIC extends ValidatorEJB implements DeallocArtICRemote, De
" FROM CARTON_MASTER C , PICK_ORD_HDR PH, PICK_ORD_DET PD " + " FROM CARTON_MASTER C , PICK_ORD_HDR PH, PICK_ORD_DET PD " +
" WHERE C.CARTON_NO = ? AND PD.PICK_ORDER = C.PICK_ORDER AND PD.LINE_NO = C.LINE_NO__PICK " + " WHERE C.CARTON_NO = ? AND PD.PICK_ORDER = C.PICK_ORDER AND PD.LINE_NO = C.LINE_NO__PICK " +
" AND PD.PICK_ORDER = PH.PICK_ORDER AND PH.PICK_TYPE IN (?,?) " + " AND PD.PICK_ORDER = PH.PICK_ORDER AND PH.PICK_TYPE IN (?,?) " +
" AND ( FN_CHECK_DEALLOC_ARTDET(C.PTCN, C.CARTON_NO ) = 1 )"; " AND C.STATUS <> 'R'";
pstmt1 = conn.prepareStatement(sql); pstmt1 = conn.prepareStatement(sql);
pstmt1.setString(1, cartonNo); pstmt1.setString(1, cartonNo);
...@@ -728,12 +728,31 @@ public class DeallocArtIC extends ValidatorEJB implements DeallocArtICRemote, De ...@@ -728,12 +728,31 @@ public class DeallocArtIC extends ValidatorEJB implements DeallocArtICRemote, De
case 1: case 1:
{ {
valueXmlString.append( "<Detail1>\r\n" ); valueXmlString.append( "<Detail1>\r\n" );
if( currentColumn.trim().equalsIgnoreCase( "itm_default" ) ) if( currentColumn.trim().equalsIgnoreCase( "itm_defaultedit" ) )
{ {
tranID = genericUtility.getColumnValue( "tran_id", currDom );
System.out.println("tranID ["+tranID+"]");
sql = "SELECT PTCN FROM DEALLOC_ART WHERE TRAN_ID = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranID);
rs = pstmt.executeQuery();
if( rs.next())
{
ptcn = rs.getString("PTCN");
}
rs.close(); rs = null;
pstmt.close(); pstmt = null;
valueXmlString.append( "<ptcn protect ='1'><![CDATA[" ).append( ptcn ).append( "]]></ptcn>\r\n" );
} }
else if( currentColumn.trim().equalsIgnoreCase( "itm_default" ) )
{
valueXmlString.append( "<confirmed><![CDATA[" ).append( "N" ).append( "]]></confirmed>\r\n" );
}
else if("ptcn".equalsIgnoreCase(currentColumn.trim())) else if("ptcn".equalsIgnoreCase(currentColumn.trim()))
{ {
ptcn = "";
ptcn = genericUtility.getColumnValue( "ptcn", currDom ); ptcn = genericUtility.getColumnValue( "ptcn", currDom );
System.out.println(" ptcn ["+ptcn+"]"); System.out.println(" ptcn ["+ptcn+"]");
sql = " SELECT WAVE_ID FROM WAVE_TASK_DET WHERE PTCN = ? "; sql = " SELECT WAVE_ID FROM WAVE_TASK_DET WHERE PTCN = ? ";
...@@ -797,8 +816,8 @@ public class DeallocArtIC extends ValidatorEJB implements DeallocArtICRemote, De ...@@ -797,8 +816,8 @@ public class DeallocArtIC extends ValidatorEJB implements DeallocArtICRemote, De
" AND PD.PICK_ORDER = C.PICK_ORDER " + " AND PD.PICK_ORDER = C.PICK_ORDER " +
" AND PD.LINE_NO = C.LINE_NO__PICK " + " AND PD.LINE_NO = C.LINE_NO__PICK " +
" AND PD.PICK_ORDER = PH.PICK_ORDER " + " AND PD.PICK_ORDER = PH.PICK_ORDER " +
" AND ( FN_CHECK_DEALLOC_ARTDET(C.PTCN, C.CARTON_NO ) = 0 ) "+ //" AND ( FN_CHECK_DEALLOC_ARTDET(C.PTCN, C.CARTON_NO ) = 0 ) "+
" AND PH.PICK_TYPE IN (?,?) AND C.CARTON_TYPE = 'C'"; " AND PH.PICK_TYPE IN (?,?) AND C.CARTON_TYPE = 'C' AND C.STATUS <> 'R'";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1, CartonNo ); pstmt.setString(1, CartonNo );
pstmt.setString(2, "C"); pstmt.setString(2, "C");
......
...@@ -338,10 +338,10 @@ public class DeallocArtPrc extends ProcessEJB implements WaveGenerationPrcLocal, ...@@ -338,10 +338,10 @@ public class DeallocArtPrc extends ProcessEJB implements WaveGenerationPrcLocal,
DeallocArtConfLocal deallocArtConfLocal = null; DeallocArtConfLocal deallocArtConfLocal = null;
try try
{ {
System.out.println(" xtraParams -->"+xtraParams);
chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode"); chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode");
chgTerm = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "termId"); chgTerm = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "termId");
siteCode = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "siteCode"); siteCode = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "site_code");
ptcn = genericUtility.getColumnValue("ptcn",headerDom); ptcn = genericUtility.getColumnValue("ptcn",headerDom);
System.out.println(" chgUser ["+chgUser+"] chgTerm["+chgTerm+"] siteCode["+siteCode+"] ptcn["+ptcn+"]"); System.out.println(" chgUser ["+chgUser+"] chgTerm["+chgTerm+"] siteCode["+siteCode+"] ptcn["+ptcn+"]");
......
...@@ -256,6 +256,28 @@ public class PickIssIC extends ValidatorEJB implements PickIssICLocal, PickIssIC ...@@ -256,6 +256,28 @@ public class PickIssIC extends ValidatorEJB implements PickIssICLocal, PickIssIC
pstmt = null; pstmt = null;
//Changed by sumit on 22/01/13 adding validation where user going to do this task which is already processing by other user END //Changed by sumit on 22/01/13 adding validation where user going to do this task which is already processing by other user END
//Changed by sumit on 28/02/13 adding validation where pick deallocated start
sql = "SELECT QUANTITY FROM PICK_ORD_DET WHERE PICK_ORDER = ? ";
quantity = 0.0;
pstmt = conn.prepareStatement( sql );
pstmt.setString( 1, pickOrder );
rs = pstmt.executeQuery();
if( rs.next() )
{
quantity = rs.getDouble("QUANTITY");
System.out.println(" quantity ["+quantity+"]");
if( quantity <= 0)
{
errList.add( "PICKDEALOC" );
errFields.add( childNodeName.toLowerCase() );
}
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
//Changed by sumit on 28/02/13 adding validation where pick deallocated end
// added by cpatil on 11-sept-12 start for pick_id validate // added by cpatil on 11-sept-12 start for pick_id validate
sql = "SELECT count(1) FROM PICK_ORD_HDR WHERE PICK_ORDER = ?"; sql = "SELECT count(1) FROM PICK_ORD_HDR WHERE PICK_ORDER = ?";
......
...@@ -69,14 +69,14 @@ ...@@ -69,14 +69,14 @@
<table_column> <table_column>
<type size="0">char</type> <type size="0">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>line_no__sord</name> <name>sale_order</name>
<dbname>line_no__sord</dbname> <dbname>sale_order</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="0">char</type> <type size="0">char</type>
<updatewhereclause>yes</updatewhereclause> <updatewhereclause>yes</updatewhereclause>
<name>sale_order</name> <name>line_no__sord</name>
<dbname>sale_order</dbname> <dbname>line_no__sord</dbname>
</table_column> </table_column>
<table_column> <table_column>
<type size="20">char</type> <type size="20">char</type>
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
<name>pick_type</name> <name>pick_type</name>
<dbname>dealloc_art_det.pick_type</dbname> <dbname>dealloc_art_det.pick_type</dbname>
</table_column> </table_column>
<retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;dealloc_art&quot; ) TABLE(NAME=&quot;dealloc_art_det&quot; ) COLUMN(NAME=&quot;dealloc_art.ptcn&quot;) COLUMN(NAME=&quot;dealloc_art.wave_id&quot;) COLUMN(NAME=&quot;dealloc_art.site_code&quot;) COMPUTE(NAME=&quot;&apos;&apos;line_no__sord&quot;) COMPUTE(NAME=&quot;&apos;&apos;sale_order&quot;) COLUMN(NAME=&quot;dealloc_art_det.carton_no&quot;) COLUMN(NAME=&quot;dealloc_art_det.pick_order&quot;) COLUMN(NAME=&quot;dealloc_art_det.line_no__pick&quot;) COLUMN(NAME=&quot;dealloc_art_det.item_code&quot;) COLUMN(NAME=&quot;dealloc_art_det.quantity&quot;) COLUMN(NAME=&quot;dealloc_art_det.pick_type&quot;) JOIN (LEFT=&quot;dealloc_art.tran_id&quot; OP =&quot;=&quot;RIGHT=&quot;dealloc_art_det.tran_id&quot; )) </retrieve> <retrieve>PBSELECT( VERSION(400) TABLE(NAME=&quot;dealloc_art&quot; ) TABLE(NAME=&quot;dealloc_art_det&quot; ) COLUMN(NAME=&quot;dealloc_art.ptcn&quot;) COLUMN(NAME=&quot;dealloc_art.wave_id&quot;) COLUMN(NAME=&quot;dealloc_art.site_code&quot;) COMPUTE(NAME=&quot;&apos;&apos;sale_order&quot;) COMPUTE(NAME=&quot;&apos;&apos;line_no__sord&quot;) COLUMN(NAME=&quot;dealloc_art_det.carton_no&quot;) COLUMN(NAME=&quot;dealloc_art_det.pick_order&quot;) COLUMN(NAME=&quot;dealloc_art_det.line_no__pick&quot;) COLUMN(NAME=&quot;dealloc_art_det.item_code&quot;) COLUMN(NAME=&quot;dealloc_art_det.quantity&quot;) COLUMN(NAME=&quot;dealloc_art_det.pick_type&quot;) JOIN (LEFT=&quot;dealloc_art.tran_id&quot; OP =&quot;=&quot;RIGHT=&quot;dealloc_art_det.tran_id&quot; )) </retrieve>
</TableDefinition> </TableDefinition>
<TextObject> <TextObject>
<band>Header</band> <band>Header</band>
...@@ -540,7 +540,7 @@ ...@@ -540,7 +540,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>5</id> <id>4</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
...@@ -576,7 +576,7 @@ ...@@ -576,7 +576,7 @@
</ColumnObject> </ColumnObject>
<ColumnObject> <ColumnObject>
<band>Detail</band> <band>Detail</band>
<id>4</id> <id>5</id>
<alignment>0</alignment> <alignment>0</alignment>
<tabsequence>32766</tabsequence> <tabsequence>32766</tabsequence>
<border>5</border> <border>5</border>
......
...@@ -30599,7 +30599,7 @@ INSERT INTO OBJ_ITEMCHANGE ( ...@@ -30599,7 +30599,7 @@ INSERT INTO OBJ_ITEMCHANGE (
'2 ', '2 ',
'itm_default', 'itm_default',
'Y'); 'Y');
INSERT INTO POPHELP ( INSERT INTO POPHELP (
field_name , field_name ,
mod_name , mod_name ,
...@@ -30989,7 +30989,7 @@ INSERT INTO MESSAGES ( ...@@ -30989,7 +30989,7 @@ INSERT INTO MESSAGES (
VALUES ( VALUES (
'INVCARALEX', 'INVCARALEX',
'Invalid PTCN !!', 'Invalid PTCN !!',
'Entered PTCN No. allresdy added !!', 'Entered PTCN No. is already added !!',
'E', 'E',
'Y', 'Y',
NULL, NULL,
...@@ -31265,7 +31265,111 @@ INSERT INTO MESSAGES ( ...@@ -31265,7 +31265,111 @@ INSERT INTO MESSAGES (
NULL, NULL,
NULL); NULL);
INSERT INTO MESSAGES (
msg_no ,
msg_str ,
msg_descr ,
msg_type ,
msg_opt ,
msg_time ,
alarm ,
err_source ,
chg_date ,
chg_user ,
chg_term ,
override_input,
mail_option )
VALUES (
'CARTALLCOF',
'Invalid carton number !!',
'Carton already canceled !!',
'E',
'Y',
NULL,
NULL,
NULL,
TO_DATE('14-12-2012 00:00:00','DD-MM-YYYY HH24:MI:SS'),
'BASE ',
'BASE ',
NULL,
NULL);
INSERT INTO OBJ_ITEMCHANGE (
obj_name ,
form_no ,
field_name ,
mandatory )
VALUES (
'dealloc_art',
'1',
'itm_defaultedit',
'Y');
INSERT INTO OBJ_ACTIONS (
obj_name ,
line_no ,
image ,
description ,
service_code ,
interactive ,
rights_char ,
title ,
form_no ,
service_handler ,
placement ,
action_type ,
tran_type ,
chg_date ,
chg_term ,
chg_user )
VALUES (
'dealloc_art',
2,
'edit.gif',
'Editing Existing Record',
'a',
'a',
'E',
'Edit',
'1',
NULL,
NULL,
'S',
NULL,
NULL,
NULL,
NULL);
INSERT INTO MESSAGES (
msg_no ,
msg_str ,
msg_descr ,
msg_type ,
msg_opt ,
msg_time ,
alarm ,
err_source ,
chg_date ,
chg_user ,
chg_term ,
override_input,
mail_option )
VALUES (
'PICKDEALOC',
'Invalid pick order !!',
'Pick order deallocated !!',
'E',
'Y',
NULL,
NULL,
NULL,
TO_DATE('14-12-2012 00:00:00','DD-MM-YYYY HH24:MI:SS'),
'BASE ',
'BASE ',
NULL,
NULL);
commit; commit;
......
$PBExportHeader$d_dealloc_art_proc12.srd $PBExportHeader$
release 9; 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 ) 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" ) header(height=23 color="536870912" )
...@@ -8,15 +8,29 @@ detail(height=21 color="536870912" ) ...@@ -8,15 +8,29 @@ detail(height=21 color="536870912" )
table(column=(type=char(10) updatewhereclause=yes name=ptcn dbname="dealloc_art.ptcn" ) table(column=(type=char(10) updatewhereclause=yes name=ptcn dbname="dealloc_art.ptcn" )
column=(type=char(12) updatewhereclause=yes name=wave_id dbname="dealloc_art.wave_id" ) column=(type=char(12) updatewhereclause=yes name=wave_id dbname="dealloc_art.wave_id" )
column=(type=char(5) updatewhereclause=yes name=site_code dbname="dealloc_art.site_code" ) column=(type=char(5) updatewhereclause=yes name=site_code dbname="dealloc_art.site_code" )
column=(type=char(0) updatewhereclause=yes name=line_no__sord dbname="line_no__sord" )
column=(type=char(0) updatewhereclause=yes name=sale_order dbname="sale_order" ) column=(type=char(0) updatewhereclause=yes name=sale_order dbname="sale_order" )
column=(type=char(0) updatewhereclause=yes name=line_no__sord dbname="line_no__sord" )
column=(type=char(20) updatewhereclause=yes name=carton_no dbname="dealloc_art_det.carton_no" ) column=(type=char(20) updatewhereclause=yes name=carton_no dbname="dealloc_art_det.carton_no" )
column=(type=char(10) updatewhereclause=yes name=pick_order dbname="dealloc_art_det.pick_order" ) column=(type=char(10) updatewhereclause=yes name=pick_order dbname="dealloc_art_det.pick_order" )
column=(type=decimal(0) updatewhereclause=yes name=line_no__pick dbname="dealloc_art_det.line_no__pick" ) column=(type=decimal(0) updatewhereclause=yes name=line_no__pick dbname="dealloc_art_det.line_no__pick" )
column=(type=char(10) updatewhereclause=yes name=item_code dbname="dealloc_art_det.item_code" ) column=(type=char(10) updatewhereclause=yes name=item_code dbname="dealloc_art_det.item_code" )
column=(type=decimal(3) updatewhereclause=yes name=quantity dbname="dealloc_art_det.quantity" ) column=(type=decimal(3) updatewhereclause=yes name=quantity dbname="dealloc_art_det.quantity" )
column=(type=char(1) updatewhereclause=yes name=pick_type dbname="dealloc_art_det.pick_type" ) column=(type=char(1) updatewhereclause=yes name=pick_type dbname="dealloc_art_det.pick_type" )
retrieve="PBSELECT( VERSION(400) TABLE(NAME=~"dealloc_art~" ) TABLE(NAME=~"dealloc_art_det~" ) COLUMN(NAME=~"dealloc_art.ptcn~") COLUMN(NAME=~"dealloc_art.wave_id~") COLUMN(NAME=~"dealloc_art.site_code~") COMPUTE(NAME=~"''line_no__sord~") COMPUTE(NAME=~"''sale_order~") COLUMN(NAME=~"dealloc_art_det.carton_no~") COLUMN(NAME=~"dealloc_art_det.pick_order~") COLUMN(NAME=~"dealloc_art_det.line_no__pick~") COLUMN(NAME=~"dealloc_art_det.item_code~") COLUMN(NAME=~"dealloc_art_det.quantity~") COLUMN(NAME=~"dealloc_art_det.pick_type~") JOIN (LEFT=~"dealloc_art.tran_id~" OP =~"=~"RIGHT=~"dealloc_art_det.tran_id~" )) " ) retrieve=" SELECT ~"DEALLOC_ART~".~"PTCN~",
~"DEALLOC_ART~".~"WAVE_ID~",
~"DEALLOC_ART~".~"SITE_CODE~",
''sale_order,
''line_no__sord,
~"DEALLOC_ART_DET~".~"CARTON_NO~",
~"DEALLOC_ART_DET~".~"PICK_ORDER~",
~"DEALLOC_ART_DET~".~"LINE_NO__PICK~",
~"DEALLOC_ART_DET~".~"ITEM_CODE~",
~"DEALLOC_ART_DET~".~"QUANTITY~",
~"DEALLOC_ART_DET~".~"PICK_TYPE~"
FROM ~"DEALLOC_ART~",
~"DEALLOC_ART_DET~"
WHERE ( ~"DEALLOC_ART~".~"TRAN_ID~" = ~"DEALLOC_ART_DET~".~"TRAN_ID~" )
" )
text(band=header alignment="2" text="PTCN" border="6" color="33554432" x="2" y="2" height="16" width="66" html.valueishtml="0" name=ptcn_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="2" text="PTCN" border="6" color="33554432" x="2" y="2" height="16" width="66" html.valueishtml="0" name=ptcn_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Wave Id" border="6" color="33554432" x="70" y="2" height="16" width="78" html.valueishtml="0" name=wave_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="2" text="Wave Id" border="6" color="33554432" x="70" y="2" height="16" width="78" html.valueishtml="0" name=wave_id_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
text(band=header alignment="2" text="Site Code" border="6" color="33554432" x="150" y="2" height="16" width="64" html.valueishtml="0" name=site_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" ) text(band=header alignment="2" text="Site Code" border="6" color="33554432" x="150" y="2" height="16" width="64" html.valueishtml="0" name=site_code_t visible="1" font.face="Times New Roman" font.height="-10" font.weight="400" font.family="1" font.pitch="2" font.charset="0" background.mode="1" background.color="536870912" )
...@@ -31,8 +45,8 @@ text(band=header alignment="2" text="Pick Type" border="6" color="33554432" x="8 ...@@ -31,8 +45,8 @@ text(band=header alignment="2" text="Pick Type" border="6" color="33554432" x="8
column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="33554432" x="2" y="1" height="16" width="66" format="[general]" html.valueishtml="0" name=ptcn visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=1 alignment="0" tabsequence=32766 border="5" color="33554432" x="2" y="1" height="16" width="66" format="[general]" html.valueishtml="0" name=ptcn visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="33554432" x="70" y="1" height="16" width="78" format="[general]" html.valueishtml="0" name=wave_id visible="1" edit.limit=12 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=2 alignment="0" tabsequence=32766 border="5" color="33554432" x="70" y="1" height="16" width="78" format="[general]" html.valueishtml="0" name=wave_id visible="1" edit.limit=12 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=3 alignment="0" tabsequence=32766 border="5" color="33554432" x="150" y="1" height="16" width="64" 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="Times New Roman" 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=3 alignment="0" tabsequence=32766 border="5" color="33554432" x="150" y="1" height="16" width="64" 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="Times New Roman" 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="33554432" x="216" y="1" height="16" width="74" format="[general]" html.valueishtml="0" name=sale_order visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" 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=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="216" y="1" height="16" width="74" format="[general]" html.valueishtml="0" name=sale_order visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" 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=4 alignment="0" tabsequence=32766 border="5" color="33554432" x="292" y="1" height="16" width="81" format="[general]" html.valueishtml="0" name=line_no__sord visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" 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="33554432" x="292" y="1" height="16" width="81" format="[general]" html.valueishtml="0" name=line_no__sord visible="1" edit.limit=0 edit.case=any edit.autoselect=yes edit.imemode=0 font.face="Times New Roman" 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="0" tabsequence=32766 border="5" color="33554432" x="375" y="1" height="16" width="126" format="[general]" html.valueishtml="0" name=carton_no visible="1" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=6 alignment="0" tabsequence=32766 border="5" color="33554432" x="375" y="1" height="16" width="126" format="[general]" html.valueishtml="0" name=carton_no visible="1" edit.limit=20 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="503" y="1" height="16" width="88" format="[general]" html.valueishtml="0" name=pick_order visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=7 alignment="0" tabsequence=32766 border="5" color="33554432" x="503" y="1" height="16" width="88" format="[general]" html.valueishtml="0" name=pick_order visible="1" edit.limit=10 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
column(band=detail id=8 alignment="1" tabsequence=32766 border="5" color="33554432" x="593" y="1" height="16" width="88" format="[general]" html.valueishtml="0" name=line_no__pick visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" ) column(band=detail id=8 alignment="1" tabsequence=32766 border="5" color="33554432" x="593" y="1" height="16" width="88" format="[general]" html.valueishtml="0" name=line_no__pick visible="1" edit.limit=0 edit.case=any edit.focusrectangle=no edit.autoselect=yes edit.autohscroll=yes edit.imemode=0 font.face="Times New Roman" font.height="-10" font.weight="400" font.family="2" font.pitch="2" font.charset="0" background.mode="2" background.color="16777215" )
......
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