|
|
@@ -100,8 +100,8 @@ public class GroupFunServiceImpl implements GroupsFuncService {
|
|
|
Boolean isMirror = sku.getIsMirror();
|
|
|
Boolean isCar = sku.getIsCar();
|
|
|
String account = null;
|
|
|
- if ((goodsId == Constant.CODEX_GOODS_ID) || (goodsId == Constant.NANO_GOODS_ID) || (goodsId == Constant.CLAUDE_CODE_GOODS_ID) || (goodsId == 88 && isMirror) || (goodsId == 87 && isMirror) || (goodsId == 18 && isCar) || (goodsId == 26 && isMirror) || (goodsId == 75 && isCar)) {
|
|
|
- if (goodsId == 18) {
|
|
|
+ if ((goodsId == Constant.GEMINI_GOODS_ID && isMirror) || (goodsId == Constant.CODEX_GOODS_ID) || (goodsId == Constant.NANO_GOODS_ID) || (goodsId == Constant.CLAUDE_CODE_GOODS_ID) || (goodsId == 88 && isMirror) || (goodsId == 87 && isMirror) || (goodsId == 18 && isCar) || (goodsId == 26 && isMirror) || (goodsId == 75 && isCar)) {
|
|
|
+ if (goodsId == 18) {
|
|
|
account = Constant.GPT_CAR_ONLY_ACCOUNT;
|
|
|
}
|
|
|
if (goodsId == 26) {
|
|
|
@@ -128,6 +128,10 @@ public class GroupFunServiceImpl implements GroupsFuncService {
|
|
|
if (goodsId == Constant.CODEX_GOODS_ID) {
|
|
|
account = Constant.CODEX_ONLY_ACCOUNT;
|
|
|
}
|
|
|
+ //gmini
|
|
|
+ if (goodsId == Constant.GEMINI_GOODS_ID) {
|
|
|
+ account = Constant.GMINI_ONLY_ACCOUNT;
|
|
|
+ }
|
|
|
AccountView accountView = beanSearcher.searchFirst(AccountView.class, MapUtils.builder()
|
|
|
.field(AccountView::getGoodsId, goodsId)
|
|
|
.field(AccountView::getAccount, account).
|