|
@@ -84,6 +84,7 @@ import com.uas.search.model.BaseOrder;
|
|
|
import com.uas.search.model.PageParams;
|
|
import com.uas.search.model.PageParams;
|
|
|
import com.uas.search.model.SPage;
|
|
import com.uas.search.model.SPage;
|
|
|
import com.uas.search.service.OrderSearchService;
|
|
import com.uas.search.service.OrderSearchService;
|
|
|
|
|
+import org.apache.commons.collections.map.HashedMap;
|
|
|
import org.apache.commons.lang.time.DateUtils;
|
|
import org.apache.commons.lang.time.DateUtils;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -753,7 +754,10 @@ public class OrderServiceImpl implements OrderService {
|
|
|
or.setTransationPrice(NumberUtil.fractionNumCeil(transationPrice, 2));
|
|
or.setTransationPrice(NumberUtil.fractionNumCeil(transationPrice, 2));
|
|
|
or.setCmpQty(uuids.size());
|
|
or.setCmpQty(uuids.size());
|
|
|
or.setQty(qty);
|
|
or.setQty(qty);
|
|
|
- or.setOrderRemark(remarkMap.getString(storeid));
|
|
|
|
|
|
|
+ Map<String, String> map = new HashedMap();
|
|
|
|
|
+ map.put(storeid, remarkMap.getString(storeid));
|
|
|
|
|
+ String orRemark = FastjsonUtils.toJson(map);
|
|
|
|
|
+ or.setOrderRemark(orRemark);
|
|
|
|
|
|
|
|
StoreIn storeIn = storeInDao.findByUuid(storeid);
|
|
StoreIn storeIn = storeInDao.findByUuid(storeid);
|
|
|
if (storeIn == null) {
|
|
if (storeIn == null) {
|