| | |
| | | import com.matrix.system.hive.bean.SysOrder; |
| | | import com.matrix.system.hive.plugin.util.BaseServices; |
| | | import com.matrix.system.hive.pojo.CzXkVo; |
| | | import com.matrix.system.hive.pojo.ShoppingCarItemsVo; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import javax.servlet.http.HttpSession; |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | public void refundOrderMoney(SysOrder sysOrder); |
| | | |
| | | /** |
| | | * 创建订单 |
| | | * @param session |
| | | * @param car |
| | | * @return |
| | | */ |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public int createOrder(HttpSession session, ShoppingCarItemsVo car); |
| | | /** |
| | | * 补交 |
| | | * @Title: updateAfterMoney |