Subversion Repositories SmartDukaan

Rev

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

Rev 3390 Rev 3405
Line 102... Line 102...
102
        }
102
        }
103
 
103
 
104
        return tactivities;
104
        return tactivities;
105
    }
105
    }
106
 
106
 
107
    public void insertActivity(Activity activity) throws TException {
107
    public long insertActivity(Activity activity) throws TException {
108
        try {
108
        try {
109
            activityHandler.insertActivity(in.shop2020.crm.domain.Activity
109
            return activityHandler.insertActivity(in.shop2020.crm.domain.Activity
110
                    .create(activity));
110
                    .create(activity));
111
        } catch (ParseException e) {
111
        } catch (ParseException e) {
112
            throw new TException("Could not insert " + activity, e);
112
            throw new TException("Could not insert " + activity, e);
113
        }
113
        }
114
    }
114
    }