| | |
| | | //获取在该本店下单的用户ids |
| | | Integer objectId = sysUser.getObjectId(); |
| | | R<List<Order>> listR = remoteOrderGoodsClient.byShopId(objectId); |
| | | if (listR.getData()!=null){ |
| | | for (Order datum : listR.getData()) { |
| | | userIds.add(datum.getAppUserId()); |
| | | } |
| | | } |
| | | IPage<AppUser> appuserPage = appUserService.getAppuserPage1(pageCurr, pageSize, appUser, objectId, userIds); |
| | | return R.ok(appuserPage); |
| | | } |
| | |
| | | |
| | | @PostMapping("/saveWithdrawalAccount") |
| | | @ApiOperation(value = "保存提现账户", tags = {"门店后台-财务统计-提现明细"}) |
| | | public R saveWithdrawalAccount(SaveWithdrawalAccount saveWithdrawalAccount) { |
| | | public R saveWithdrawalAccount(@RequestBody SaveWithdrawalAccount saveWithdrawalAccount) { |
| | | shopService.saveWithdrawalAccount(saveWithdrawalAccount); |
| | | return R.ok(); |
| | | } |