Subversion Repositories SmartDukaan

Rev

Rev 5504 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5504 Rev 5516
Line 36... Line 36...
36
    public VoucherItemDialog() {
36
    public VoucherItemDialog() {
37
        setText("Vouchers");
37
        setText("Vouchers");
38
        setWidget(binder.createAndBindUi(this));
38
        setWidget(binder.createAndBindUi(this));
39
        setAnimationEnabled(true);
39
        setAnimationEnabled(true);
40
        center();
40
        center();
41
        for(String voucher: Utils.voucherType){
41
        for(String voucher: Utils.getVoucherType().values()){
42
        	voucherType.addItem(voucher);
42
        	voucherType.addItem(voucher);
43
        }
43
        }
44
    }
44
    }
45
 
45
 
46
    public VoucherItemDialog(String voucherAmount) {
46
    public VoucherItemDialog(String voucherAmount) {