Subversion Repositories SmartDukaan

Rev

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

Rev 33367 Rev 33553
Line 927... Line 927...
927
            customRetailer.setBusinessName(address.getName());
927
            customRetailer.setBusinessName(address.getName());
928
            customRetailer.setMobileNumber(address.getPhoneNumber());
928
            customRetailer.setMobileNumber(address.getPhoneNumber());
929
            try {
929
            try {
930
                FofoStore fs = fofoStoreRepository.selectByRetailerId(address.getRetaierId());
930
                FofoStore fs = fofoStoreRepository.selectByRetailerId(address.getRetaierId());
931
                customRetailer.setCode(fs.getCode());
931
                customRetailer.setCode(fs.getCode());
-
 
932
                customRetailer.setAstId(fs.getAstId());
932
                customRetailer.setActivationType(fs.getActivationType());
933
                customRetailer.setActivationType(fs.getActivationType());
933
                customRetailer.setCounterSize(fs.getCounterSize());
934
                customRetailer.setCounterSize(fs.getCounterSize());
934
 
935
 
935
 
936
 
936
                customRetailer.setCounterPotential(fs.getCounterPotential());
937
                customRetailer.setCounterPotential(fs.getCounterPotential());
Line 1003... Line 1004...
1003
        address1.setName(address.getName());
1004
        address1.setName(address.getName());
1004
        customRetailer.setDisplayName(address.getName() + " - " + address.getCity());
1005
        customRetailer.setDisplayName(address.getName() + " - " + address.getCity());
1005
        customRetailer.setAddress(address1);
1006
        customRetailer.setAddress(address1);
1006
        customRetailer.setPartnerId(address.getRetaierId());
1007
        customRetailer.setPartnerId(address.getRetaierId());
1007
        customRetailer.setCode(store.getCode());
1008
        customRetailer.setCode(store.getCode());
-
 
1009
        customRetailer.setAstId(store.getAstId());
1008
        customRetailer.setActivationType(store.getActivationType());
1010
        customRetailer.setActivationType(store.getActivationType());
1009
        customRetailer.setWarehouseId(store.getWarehouseId());
1011
        customRetailer.setWarehouseId(store.getWarehouseId());
1010
        customRetailersMap.put(address.getRetaierId(), customRetailer);
1012
        customRetailersMap.put(address.getRetaierId(), customRetailer);
1011
        return customRetailer;
1013
        return customRetailer;
1012
 
1014