dev
parent
dfec0eccca
commit
97ba46f3ab
|
|
@ -257,7 +257,7 @@ public class OrderclusterController extends BaseController {
|
|||
}
|
||||
|
||||
int ordercluster_id = getInt("id");
|
||||
double total_weight = getParaToDouble("total_weight");
|
||||
String total_weight = get("total_weight");
|
||||
Date cutoff_time = getDate("cutoff_time");
|
||||
|
||||
renderJson(OrderclusterSyncService.me.forwardCluster(ordercluster_id, new BigDecimal(total_weight), cutoff_time, tokenuser));
|
||||
|
|
@ -273,7 +273,7 @@ public class OrderclusterController extends BaseController {
|
|||
}
|
||||
|
||||
int ordercluster_id = getInt("id");
|
||||
double total_weight = getParaToDouble("total_weight");
|
||||
String total_weight = get("total_weight");
|
||||
Date cutoff_time = getDate("cutoff_time");
|
||||
String trucks = get("trucks");
|
||||
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ public class RefundDetailController extends BaseController {
|
|||
}
|
||||
|
||||
String id = get("id");
|
||||
BigDecimal amount = new BigDecimal(getParaToDouble("amount", 0d));
|
||||
BigDecimal amount = new BigDecimal(get("amount"));
|
||||
String serialnum = get("serialnum", "");
|
||||
|
||||
renderJson(RefundDetailSyncService.me.confirm(id, amount, serialnum, tokenuser));
|
||||
|
|
|
|||
Loading…
Reference in New Issue