Commit 537acccb authored by 张永's avatar 张永

1

parent c1ba934b
......@@ -262,7 +262,7 @@ public class OrderServiceImpl implements OrderService {
+ " where sod.sSalesOrderID = ?";
orderDtlList = jdbcTemplate.queryForList(sql2, salesOrderId);
}
String sqlPay = "select sPayTypeID, sPayType, nPayAmnount, sOutTradeNO, sStatusID = case when nTag&2=2 then '1' else '0' end, sStatus = case when nTag&2=2 then '已付款' else '未付款' end "
String sqlPay = "select sPayTypeID, sPayType, nPayAmount, sOutTradeNO, sStatusID = case when nTag&2=2 then '1' else '0' end, sStatus = case when nTag&2=2 then '已付款' else '未付款' end "
+ "from tSalesOrderPay "
+ "where sSalesOrderID = ? ";
Map<String, Object> payMap = jdbcTemplate.queryForMap(sqlPay, salesOrderId);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment