Index: trunk/grails-app/services/com/lemans/ds/part/PartManagerService.groovy =================================================================== diff -u -r9963 -r10028 --- trunk/grails-app/services/com/lemans/ds/part/PartManagerService.groovy (.../PartManagerService.groovy) (revision 9963) +++ trunk/grails-app/services/com/lemans/ds/part/PartManagerService.groovy (.../PartManagerService.groovy) (revision 10028) @@ -17,7 +17,7 @@ def partService private static final List PART_METADATA_FIELDS = ['partSpecificText', 'internalNotes', 'relatedParts', - 'relatedProducts', 'footnotes', 'certificationUS', 'certificationEU', + 'relatedProducts', 'certificationUS', 'certificationEU', 'oemPartNumber'] Map addOrRemoveParts(Map values, String username) { Index: trunk/grails-app/domain/com/lemans/ds/part/PartLocale.groovy =================================================================== diff -u -r9553 -r10028 --- trunk/grails-app/domain/com/lemans/ds/part/PartLocale.groovy (.../PartLocale.groovy) (revision 9553) +++ trunk/grails-app/domain/com/lemans/ds/part/PartLocale.groovy (.../PartLocale.groovy) (revision 10028) @@ -9,15 +9,13 @@ String partDescr String marketingDescr String specialInstructions - String footnotes String partSpecificText static constraints = { partNumber nullable: false partDescr nullable: true, maxSize: 50 marketingDescr nullable: true, maxSize: 100 specialInstructions nullable: true, maxSize: 400 - footnotes nullable: true partSpecificText nullable: true } Index: trunk/grails-app/services/com/lemans/ds/bulk/part/BulkPartService.groovy =================================================================== diff -u -r9552 -r10028 --- trunk/grails-app/services/com/lemans/ds/bulk/part/BulkPartService.groovy (.../BulkPartService.groovy) (revision 9552) +++ trunk/grails-app/services/com/lemans/ds/bulk/part/BulkPartService.groovy (.../BulkPartService.groovy) (revision 10028) @@ -94,7 +94,7 @@ private List findLocales(Map eachRow) { List locales = eachRow.collect { String key, value -> if (key.startsWith('marketingDescr') || key.startsWith('specialInstructions') - || key.startsWith('footnotes') || key.startsWith('partSpecificText')) { + || key.startsWith('partSpecificText')) { if (value.toString()) { StringUtils.substringBetween(key, '[', ']') } } } Index: trunk/grails-app/domain/com/lemans/ds/part/partmetadata/PartMetadata.groovy =================================================================== diff -u -r9963 -r10028 --- trunk/grails-app/domain/com/lemans/ds/part/partmetadata/PartMetadata.groovy (.../PartMetadata.groovy) (revision 9963) +++ trunk/grails-app/domain/com/lemans/ds/part/partmetadata/PartMetadata.groovy (.../PartMetadata.groovy) (revision 10028) @@ -15,7 +15,6 @@ String internalNotes String relatedParts String relatedProducts - String footnotes String certificationUS String certificationEU String oemPartNumber @@ -25,7 +24,6 @@ internalNotes nullable: true relatedParts nullable: true relatedProducts nullable: true - footnotes nullable: true certificationUS nullable: true certificationEU nullable: true oemPartNumber nullable: true Index: trunk/src/integration-test/groovy/com/lemans/ds/part/PartPersistenceFuncSpec.groovy =================================================================== diff -u -r9990 -r10028 --- trunk/src/integration-test/groovy/com/lemans/ds/part/PartPersistenceFuncSpec.groovy (.../PartPersistenceFuncSpec.groovy) (revision 9990) +++ trunk/src/integration-test/groovy/com/lemans/ds/part/PartPersistenceFuncSpec.groovy (.../PartPersistenceFuncSpec.groovy) (revision 10028) @@ -8,7 +8,7 @@ @Override String resourceName() { 'part' } - final static int ALL_COLUMNS_SIZE = 103 + final static int ALL_COLUMNS_SIZE = 102 def 'can NOT update a Part that does not exist'() { given: @@ -63,9 +63,8 @@ String relatedProducts = '' String certificationUS = 'test for US certificate' String certificationEU = 'test for EU certificate' - String footnotes = 'sheetalTest' Map part = [oemPartNumber: oem, primaryMediaId: mediaId, partSpecificText: partSpecificText, - internalNotes: internalNotes, relatedParts: relatedParts, relatedProducts: relatedProducts, footnotes: footnotes, + internalNotes: internalNotes, relatedParts: relatedParts, relatedProducts: relatedProducts, certificationUS: certificationUS, certificationEU: certificationEU] path(partNumber) ok() @@ -180,7 +179,6 @@ queryParams.locale = 'es' String json = '''{ "specialInstructions": "testForUpdate1", - "footnotes": "testForUpdate", "partSpecificText": "testForUpdate" }''' path(partNumber) Index: trunk/grails-app/services/com/lemans/ds/part/PartService.groovy =================================================================== diff -u -r10006 -r10028 --- trunk/grails-app/services/com/lemans/ds/part/PartService.groovy (.../PartService.groovy) (revision 10006) +++ trunk/grails-app/services/com/lemans/ds/part/PartService.groovy (.../PartService.groovy) (revision 10028) @@ -19,7 +19,7 @@ ].asImmutable() private static final List META_DATA = ['partSpecificText', 'internalNotes', 'relatedParts', - 'relatedProducts', 'footnotes', 'certificationUS', 'certificationEU', 'oemPartNumber'] + 'relatedProducts', 'certificationUS', 'certificationEU', 'oemPartNumber'] private static final Map COLUMN_SETS = [_search: SEARCH_COLUMNSET].asImmutable() @@ -56,7 +56,6 @@ internalNotes = null relatedParts = null relatedProducts = null - footnotes = null certificationUS = null certificationEU = null oemPartNumber = null Index: trunk/src/integration-test/groovy/com/lemans/ds/part/PartFuncSpec.groovy =================================================================== diff -u -r9990 -r10028 --- trunk/src/integration-test/groovy/com/lemans/ds/part/PartFuncSpec.groovy (.../PartFuncSpec.groovy) (revision 9990) +++ trunk/src/integration-test/groovy/com/lemans/ds/part/PartFuncSpec.groovy (.../PartFuncSpec.groovy) (revision 10028) @@ -8,7 +8,7 @@ @Override String resourceName() { 'part' } - final static int ALL_COLUMNS_SIZE = 103 + final static int ALL_COLUMNS_SIZE = 102 final static int SEARCH_COLUMNS_SIZE = PartService.SEARCH_COLUMNSET.size()