|
@ -1297,7 +1297,7 @@ public class InternetCommonService extends BaseJpaService<InternetUpErrorLogDO,
|
|
|
jb.put("drug_use", info.get("supply_code") == null? "0": info.get("supply_code"));
|
|
|
jb.put("standard_desc", info.get("specification") == null? "0": info.get("specification"));
|
|
|
jb.put("single_price",info.get("pack_retprice") == null? 0: info.get("pack_retprice"));
|
|
|
BigDecimal pack_retprice = (BigDecimal)info.get("pack_retprice");
|
|
|
Double pack_retprice = Double.parseDouble(info.get("pack_retprice").toString());
|
|
|
Long quantity = Long.parseLong((String)info.get("quantity"));
|
|
|
|
|
|
Double price = pack_retprice.doubleValue()*quantity;
|