Subversion Repositories SmartDukaan

Rev

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

Rev 8733 Rev 10968
Line 138... Line 138...
138
            //This means we only got the phone from UI.
138
            //This means we only got the phone from UI.
139
            //Lets keep it.
139
            //Lets keep it.
140
        } else {
140
        } else {
141
            //For all other cases make it empty.
141
            //For all other cases make it empty.
142
            phone = "";
142
            phone = "";
-
 
143
            log.info("---- phone is set to empty here");
143
        }
144
        }
144
        
145
        
-
 
146
        log.info("phone after---- " + phone);
145
        
147
        
146
        if(paymentOption.equals(IPaymentService.HDFC_MASTERCARD_CREDIT) || paymentOption.equals(IPaymentService.HDFC_MASTERCARD_DEBIT) || 
148
        if(paymentOption.equals(IPaymentService.HDFC_MASTERCARD_CREDIT) || paymentOption.equals(IPaymentService.HDFC_MASTERCARD_DEBIT) || 
147
                paymentOption.equals(IPaymentService.HDFC_VISA) || paymentOption.equals(IPaymentService.HDFC_VISA_ELECTRON)) {
149
                paymentOption.equals(IPaymentService.HDFC_VISA) || paymentOption.equals(IPaymentService.HDFC_VISA_ELECTRON)) {
148
            // User has selected Visa or MasterCard
150
            // User has selected Visa or MasterCard
149
            HdfcPaymentService hdfcPaymentService = new HdfcPaymentService();
151
            HdfcPaymentService hdfcPaymentService = new HdfcPaymentService();
Line 204... Line 206...
204
    public String getPhone() {
206
    public String getPhone() {
205
        return phone;
207
        return phone;
206
    }
208
    }
207
 
209
 
208
    public void setPhone(String phone) {
210
    public void setPhone(String phone) {
-
 
211
    	log.info("phone---- " + phone);
209
        this.phone = phone;
212
        this.phone = phone;
210
    }
213
    }
211
 
214
 
212
    public String getName() {
215
    public String getName() {
213
        return name;
216
        return name;
214
    }
217
    }
215
 
218
 
216
    public void setName(String name) {
219
    public void setName(String name) {
-
 
220
    	log.info("name---- " + name);
217
        this.name = name;
221
        this.name = name;
218
    }
222
    }
219
 
223
 
220
    public String getLine1() {
224
    public String getLine1() {
221
        return line1;
225
        return line1;