@@ -465,4 +465,9 @@ public interface Constant {
* 排除分销用户ID
*/
Long NO_DS_USER_ID = 469739l;
+
+ /**
+ * GPT PLUS镜像专业版5天 skuId
+ */
+ Long GPT_PLUS_O1_TRIAL_SKU_ID = 526L;
}
@@ -1694,6 +1694,10 @@ public class OrderDonServiceImpl extends ServiceImpl<OrderDonMapper, OrderDon> i
groupsMapper.updateById(groupsTrips);
+ //体验规格 将车票类型改为体验
+ if (sku.getGoodsId() == Constant.GPT_PLUS_GID && Constant.GPT_PLUS_O1_TRIAL_SKU_ID.equals(sku.getId())) {
+ relation.setAqType(2);
+ }
//TODO 如未发车逻辑
groupsRelationMapper.updateById(relation);
Account account = null;