Skip to content

Commit

Permalink
BUG:fix repeat po in orm session
Browse files Browse the repository at this point in the history
  • Loading branch information
snakerflow committed Jan 14, 2015
1 parent 93e4c22 commit d51ea63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void deleteCCOrder(String orderId, String actorId) {
*/
public void complete(String orderId) {
Order order = access().getOrder(orderId);
HistoryOrder history = new HistoryOrder(order);
HistoryOrder history = access().getHistOrder(orderId);
history.setOrderState(STATE_FINISH);
history.setEndTime(DateHelper.getTime());

Expand Down

0 comments on commit d51ea63

Please sign in to comment.