Subversion Repositories SmartDukaan

Rev

Rev 35529 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35529 Rev 35777
Line 219... Line 219...
219
 
219
 
220
        if (detailedSpecs != null && !detailedSpecs.isEmpty()) {
220
        if (detailedSpecs != null && !detailedSpecs.isEmpty()) {
221
            desc.append("Detailed Specifications: <br>");
221
            desc.append("Detailed Specifications: <br>");
222
            for (SpecificationGroup group : detailedSpecs) {
222
            for (SpecificationGroup group : detailedSpecs) {
223
                if (group == null || group.getTitle() == null) continue;
223
                if (group == null || group.getTitle() == null) continue;
224
                desc.append(" <br>").append(group.getTitle().toUpperCase()).append(": <br>");
224
                desc.append(" <br>").append(group.getTitle().toUpperCase().replace(" N ", " & ").replace(" AND ", " & ")).append(": <br>");
225
 
225
 
226
                List<Specification> specs = group.getSpecs();
226
                List<Specification> specs = group.getSpecs();
227
                if (specs != null && !specs.isEmpty()) {
227
                if (specs != null && !specs.isEmpty()) {
228
                    for (Specification spec : specs) {
228
                    for (Specification spec : specs) {
229
                        if (spec == null) continue;
229
                        if (spec == null) continue;