|
@@ -297,135 +297,143 @@ public class AppGameBettingTask {
|
|
|
appGameBetting.setUpdateTime(new Date());
|
|
|
|
|
|
String [] bettingItems = bettingItem.split(",");
|
|
|
- for(int j = 0; j < bettingItems.length; j++){
|
|
|
- String bettingItemStr = bettingItems[j];
|
|
|
+ List<String> bettingItemsList = Arrays.asList(bettingItems);
|
|
|
|
|
|
- double bettingAmount = appGameBetting.getBettingAmount() * appGameBetting.getBettingMultiple();
|
|
|
+ double bettingAmount = appGameBetting.getBettingAmount() * appGameBetting.getBettingMultiple();
|
|
|
|
|
|
- if(appGameBetting.getBettingGameType() == 0){
|
|
|
- if(!appGameBetting.getBettingItem().equals(bettingItemStr)){
|
|
|
- appGameBetting.setIsWinning(2);
|
|
|
- appGameBettingService.updateById(appGameBetting);
|
|
|
- continue;
|
|
|
- }
|
|
|
- }else if(appGameBetting.getBettingGameType() == 1 || appGameBetting.getBettingGameType() == 2){
|
|
|
- List<AppGameItemBettingVO> itemList = JSON.parseArray(appGameBetting.getBettingItem(), AppGameItemBettingVO.class);
|
|
|
- if(itemList == null || itemList.isEmpty()){
|
|
|
- appGameBetting.setIsWinning(2);
|
|
|
- appGameBettingService.updateById(appGameBetting);
|
|
|
- continue;
|
|
|
- }
|
|
|
- List<String> bettingItemList = itemList.stream().map(AppGameItemBettingVO::getBettingItem).collect(Collectors.toList());
|
|
|
- if(!bettingItemList.contains(bettingItemStr)){
|
|
|
- appGameBetting.setIsWinning(2);
|
|
|
- appGameBettingService.updateById(appGameBetting);
|
|
|
- continue;
|
|
|
- }
|
|
|
-
|
|
|
- if(appGameBetting.getBettingGameType() == 2){
|
|
|
- for (int k = 0; k < itemList.size(); k++) {
|
|
|
- AppGameItemBettingVO appGameItemBettingVO = itemList.get(k);
|
|
|
- if(appGameItemBettingVO.getBettingItem().equals(bettingItemStr)){
|
|
|
- bettingAmount = appGameBetting.getBettingAmount() * appGameItemBettingVO.getBettingMultiple();
|
|
|
- }
|
|
|
- }
|
|
|
+ if(appGameBetting.getBettingGameType() == 0){
|
|
|
+ if(!bettingItemsList.contains(appGameBetting.getBettingItem())){
|
|
|
+ appGameBetting.setIsWinning(2);
|
|
|
+ appGameBettingService.updateById(appGameBetting);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ }else if(appGameBetting.getBettingGameType() == 1 || appGameBetting.getBettingGameType() == 2){
|
|
|
+ List<AppGameItemBettingVO> itemList = JSON.parseArray(appGameBetting.getBettingItem(), AppGameItemBettingVO.class);
|
|
|
+ if(itemList == null || itemList.isEmpty()){
|
|
|
+ appGameBetting.setIsWinning(2);
|
|
|
+ appGameBettingService.updateById(appGameBetting);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ List<String> bettingItemList = itemList.stream().map(AppGameItemBettingVO::getBettingItem).collect(Collectors.toList());
|
|
|
+ boolean isWinning = false;
|
|
|
+ for (int j = 0; j < bettingItemList.size(); j++) {
|
|
|
+ String bettingItemStr = bettingItemList.get(j);
|
|
|
+ if(bettingItemsList.contains(bettingItemStr)){
|
|
|
+ isWinning = true;
|
|
|
+ break;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- AppUser appUser = appUserService.selectAppUserByUserid(appGameBetting.getUserId());
|
|
|
- if(appUser == null){
|
|
|
- appGameBetting.setIsWinning(1);
|
|
|
+ if(!isWinning){
|
|
|
+ appGameBetting.setIsWinning(2);
|
|
|
appGameBettingService.updateById(appGameBetting);
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
- // 添加推送消息用户
|
|
|
- String userId = appUser.getUserid() + "";
|
|
|
- if(!userIds.contains(userId)){
|
|
|
- userIds.add(userId);
|
|
|
+ if(appGameBetting.getBettingGameType() == 2){
|
|
|
+ for (int k = 0; k < itemList.size(); k++) {
|
|
|
+ AppGameItemBettingVO appGameItemBettingVO = itemList.get(k);
|
|
|
+ if(bettingItemsList.contains(appGameItemBettingVO.getBettingItem())){
|
|
|
+ bettingAmount = appGameBetting.getBettingAmount() * appGameItemBettingVO.getBettingMultiple();
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
+ }
|
|
|
+
|
|
|
+ AppUser appUser = appUserService.selectAppUserByUserid(appGameBetting.getUserId());
|
|
|
+ if(appUser == null){
|
|
|
+ appGameBetting.setIsWinning(1);
|
|
|
+ appGameBettingService.updateById(appGameBetting);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
|
|
|
- // 更新用户余额
|
|
|
- if(appGameBetting.getBettingType() == 0){
|
|
|
- appUser.setDiamondCoin(appUser.getDiamondCoin() + bettingAmount );
|
|
|
- appUser.setDiamondCoinTotal(appUser.getDiamondCoinCashTotal() + bettingAmount);
|
|
|
- appUser.setDiamondCoinCash(appUser.getDiamondCoinCash() + bettingAmount);
|
|
|
+ // 添加推送消息用户
|
|
|
+ String userId = appUser.getUserid() + "";
|
|
|
+ if(!userIds.contains(userId)){
|
|
|
+ userIds.add(userId);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 更新用户余额
|
|
|
+ if(appGameBetting.getBettingType() == 0){
|
|
|
+ appUser.setDiamondCoin(appUser.getDiamondCoin() + bettingAmount );
|
|
|
+ appUser.setDiamondCoinTotal(appUser.getDiamondCoinCashTotal() + bettingAmount);
|
|
|
+ appUser.setDiamondCoinCash(appUser.getDiamondCoinCash() + bettingAmount);
|
|
|
// 更新用户金币
|
|
|
- }else{
|
|
|
- appUser.setCoin(appUser.getCoin() + bettingAmount);
|
|
|
+ }else{
|
|
|
+ appUser.setCoin(appUser.getCoin() + bettingAmount);
|
|
|
// if(appUser.getRole() == 1){
|
|
|
// appUser.setCoinCash(appUser.getCoinCash() + bettingAmount);
|
|
|
// }
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- appUserService.updateAppUser(appUser);
|
|
|
+ appUserService.updateAppUser(appUser);
|
|
|
|
|
|
- redisCache.deleteObject("U:UserInfo:" + appUser.getUserid());
|
|
|
+ redisCache.deleteObject("U:UserInfo:" + appUser.getUserid());
|
|
|
|
|
|
- appGameBetting.setIsWinning(1);
|
|
|
- appGameBettingService.updateById(appGameBetting);
|
|
|
+ appGameBetting.setIsWinning(1);
|
|
|
+ appGameBettingService.updateById(appGameBetting);
|
|
|
|
|
|
- FinTranRecord finTranRecord = new FinTranRecord();
|
|
|
+ FinTranRecord finTranRecord = new FinTranRecord();
|
|
|
|
|
|
- finTranRecord.setAfterCoin(appUser.getCoin());
|
|
|
- finTranRecord.setAfterDiamondCoin(appUser.getDiamondCoin());
|
|
|
+ finTranRecord.setAfterCoin(appUser.getCoin());
|
|
|
+ finTranRecord.setAfterDiamondCoin(appUser.getDiamondCoin());
|
|
|
|
|
|
- if(appGameBetting.getBettingType() == 0){
|
|
|
- finTranRecord.setCurrencyType(4);
|
|
|
- finTranRecord.setDiamondCoinChange(bettingAmount);
|
|
|
- finTranRecord.setCoinChange(0.00);
|
|
|
- }else{
|
|
|
- finTranRecord.setCurrencyType(2);
|
|
|
- finTranRecord.setCoinChange(bettingAmount);
|
|
|
- finTranRecord.setDiamondCoinChange(0.00);
|
|
|
- }
|
|
|
+ if(appGameBetting.getBettingType() == 0){
|
|
|
+ finTranRecord.setCurrencyType(4);
|
|
|
+ finTranRecord.setDiamondCoinChange(bettingAmount);
|
|
|
+ finTranRecord.setCoinChange(0.00);
|
|
|
+ }else{
|
|
|
+ finTranRecord.setCurrencyType(2);
|
|
|
+ finTranRecord.setCoinChange(bettingAmount);
|
|
|
+ finTranRecord.setDiamondCoinChange(0.00);
|
|
|
+ }
|
|
|
|
|
|
- finTranRecord.setAfterMoney(0.00);
|
|
|
- finTranRecord.setMoneyChange(0.00);
|
|
|
+ finTranRecord.setAfterMoney(0.00);
|
|
|
+ finTranRecord.setMoneyChange(0.00);
|
|
|
|
|
|
- finTranRecord.setAfterTicket(0.00);
|
|
|
- finTranRecord.setTicketChange(0.00);
|
|
|
+ finTranRecord.setAfterTicket(0.00);
|
|
|
+ finTranRecord.setTicketChange(0.00);
|
|
|
|
|
|
- finTranRecord.setToUid(appUser.getUserid());
|
|
|
- finTranRecord.setUid(appUser.getUserid());
|
|
|
+ finTranRecord.setToUid(appUser.getUserid());
|
|
|
+ finTranRecord.setUid(appUser.getUserid());
|
|
|
|
|
|
- finTranRecord.setSceneId1(0L);
|
|
|
- finTranRecord.setSceneId2(null);
|
|
|
- finTranRecord.setSceneType(0L);
|
|
|
+ finTranRecord.setSceneId1(0L);
|
|
|
+ finTranRecord.setSceneId2(null);
|
|
|
+ finTranRecord.setSceneType(0L);
|
|
|
|
|
|
- finTranRecord.setTranGroupId(appGameBetting.getId());
|
|
|
+ finTranRecord.setTranGroupId(appGameBetting.getId());
|
|
|
|
|
|
- if(appGameBetting.getBettingType() == 0){
|
|
|
- finTranRecord.setTranType1(FinTranType1.U_Income_Coin_Balance.getType());
|
|
|
- }else{
|
|
|
- finTranRecord.setTranType1(FinTranType1.U_Income_Coin.getType());
|
|
|
- }
|
|
|
+ if(appGameBetting.getBettingType() == 0){
|
|
|
+ finTranRecord.setTranType1(FinTranType1.U_Income_Coin_Balance.getType());
|
|
|
+ }else{
|
|
|
+ finTranRecord.setTranType1(FinTranType1.U_Income_Coin.getType());
|
|
|
+ }
|
|
|
|
|
|
- finTranRecord.setTranType2(FinTranType2.GAME_REWARD.getType());
|
|
|
- finTranRecord.setTranType3(FinTranType3.CHARGE_WIN_GAME.getType());
|
|
|
+ finTranRecord.setTranType2(FinTranType2.GAME_REWARD.getType());
|
|
|
+ finTranRecord.setTranType3(FinTranType3.CHARGE_WIN_GAME.getType());
|
|
|
|
|
|
- finTranRecord.setRemarks("游戏中奖");
|
|
|
+ finTranRecord.setRemarks("游戏中奖");
|
|
|
|
|
|
- finTranRecord.setConsumptionCoin(appGameBetting.getBettingAmount());
|
|
|
- finTranRecord.setConsumptionMoney(0.00);
|
|
|
- finTranRecord.setCommissionRelatedUid(0L);
|
|
|
- finTranRecord.setAgentId(appUser.getAgentId());
|
|
|
+ finTranRecord.setConsumptionCoin(appGameBetting.getBettingAmount());
|
|
|
+ finTranRecord.setConsumptionMoney(0.00);
|
|
|
+ finTranRecord.setCommissionRelatedUid(0L);
|
|
|
+ finTranRecord.setAgentId(appUser.getAgentId());
|
|
|
|
|
|
- finTranRecord.setCreateTime(new Date());
|
|
|
+ finTranRecord.setCreateTime(new Date());
|
|
|
|
|
|
- finTranRecord.setFromUid(appGameBetting.getUserId());
|
|
|
- finTranRecord.setGoodsId(0L);
|
|
|
- finTranRecord.setGuildId(0L);
|
|
|
- finTranRecord.setManagerCoId(0L);
|
|
|
- finTranRecord.setManagerId(0L);
|
|
|
+ finTranRecord.setFromUid(appGameBetting.getUserId());
|
|
|
+ finTranRecord.setGoodsId(0L);
|
|
|
+ finTranRecord.setGuildId(0L);
|
|
|
+ finTranRecord.setManagerCoId(0L);
|
|
|
+ finTranRecord.setManagerId(0L);
|
|
|
|
|
|
- finTranRecord.setPerc(0.00);
|
|
|
- finTranRecord.setProId(0L);
|
|
|
- finTranRecord.setProCount(0L);
|
|
|
+ finTranRecord.setPerc(0.00);
|
|
|
+ finTranRecord.setProId(0L);
|
|
|
+ finTranRecord.setProCount(0L);
|
|
|
|
|
|
- finTranRecord.setOrderId(appGameBetting.getId());
|
|
|
- finTranRecordService.insertFinTranRecord(finTranRecord);
|
|
|
- }
|
|
|
+ finTranRecord.setOrderId(appGameBetting.getId());
|
|
|
+ finTranRecordService.insertFinTranRecord(finTranRecord);
|
|
|
}
|
|
|
return userIds;
|
|
|
}
|