添加交班时间

This commit is contained in:
牛叉闪闪 2024-07-22 15:58:46 +08:00
parent a4a9f43ac6
commit 752fd56c44
2 changed files with 10 additions and 7 deletions

View File

@ -192,6 +192,8 @@ public class DataService {
List<ProductInfoPO> productInfoPOS = null; List<ProductInfoPO> productInfoPOS = null;
List<ProductInfo> productInfos = null; List<ProductInfo> productInfos = null;
if (isprintProduct) { if (isprintProduct) {
//
//
// productInfoPOS=shopUserDutyPayMapper.selectProductByDutyId(shopUserDuty.getId()); // productInfoPOS=shopUserDutyPayMapper.selectProductByDutyId(shopUserDuty.getId());
productInfos = shopUserDutyMapper.selectByDutyId(shopUserDuty.getId()); productInfos = shopUserDutyMapper.selectByDutyId(shopUserDuty.getId());
} }

View File

@ -624,13 +624,14 @@ public class MemberService {
tbShopUserFlowMapper.insert(flow); tbShopUserFlowMapper.insert(flow);
}
JSONObject jsonObject = new JSONObject(); JSONObject jsonObject = new JSONObject();
jsonObject.put("token", token); jsonObject.put("token", token);
jsonObject.put("type", "memberIn"); jsonObject.put("type", "memberIn");
jsonObject.put("amount", memberIn.getAmount()); jsonObject.put("amount", memberIn.getAmount());
producer.putOrderCollect(jsonObject.toJSONString()); producer.putOrderCollect(jsonObject.toJSONString());
}
return Result.success(CodeEnum.SUCCESS); return Result.success(CodeEnum.SUCCESS);