添加员工折扣

This commit is contained in:
牛叉闪闪
2024-08-26 15:03:35 +08:00
parent a7263f85e7
commit b0f62d3dad

View File

@@ -82,8 +82,6 @@ public class MemberService {
@Value("${thirdPay.callBack}")
private String callBack;
@Autowired
TbmerchantAccountMapper tbmerchantAccountMapper;
@Qualifier("tbOrderInfoMapper")
@Autowired
private TbOrderInfoMapper tbOrderInfoMapper;
@@ -671,10 +669,6 @@ public class MemberService {
producer.putOrderCollect(jsonObject.toJSONString());
// 修改台桌状态
mpShopTableMapper.update(null, new LambdaUpdateWrapper<TbShopTable>()
.eq(TbShopTable::getQrcode, orderInfo.getTableId())
.set(TbShopTable::getStatus, TableStateEnum.IDLE.getState()));
return Result.success(CodeEnum.SUCCESS);