1003322 2Pack enhancement for TrekGlobal Extension Development
- Inactive 'Update System Maintained Application Dictionary' field from 'Pack In' window - Default trum to false for User Level
This commit is contained in:
parent
e060114381
commit
2395338c24
|
@ -0,0 +1,10 @@
|
|||
SET SQLBLANKLINES ON
|
||||
SET DEFINE OFF
|
||||
|
||||
-- Jan 23, 2014 12:54:26 PM SGT
|
||||
-- 1003322 2Pack enhancement for Extension Development
|
||||
UPDATE AD_Field SET IsActive='N',Updated=TO_DATE('2014-01-23 12:54:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=50152
|
||||
;
|
||||
|
||||
SELECT register_migration_script('201401231413_1003322.sql') FROM dual
|
||||
;
|
|
@ -0,0 +1,7 @@
|
|||
-- Jan 23, 2014 12:54:26 PM SGT
|
||||
-- 1003322 2Pack enhancement for Extension Development
|
||||
UPDATE AD_Field SET IsActive='N',Updated=TO_TIMESTAMP('2014-01-23 12:54:26','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Field_ID=50152
|
||||
;
|
||||
|
||||
SELECT register_migration_script('201401231413_1003322.sql') FROM dual
|
||||
;
|
|
@ -31,7 +31,7 @@ public class PoExporter {
|
|||
try {
|
||||
//default trim to false for print item label since trailing space is commonly use
|
||||
//for formatting purpose
|
||||
if (qName.equalsIgnoreCase("PrintName")) {
|
||||
if (qName.equalsIgnoreCase("PrintName") || qName.equalsIgnoreCase("UserLevel")) {
|
||||
atts.addAttribute("", "", "trim", "CDATA", "false");
|
||||
}
|
||||
transformerHandler.startElement("", "", qName, atts);
|
||||
|
|
Loading…
Reference in New Issue