Merge branch 'feature/BETERAN-BACKEND-APP-BROWSER-init' of https://gitlab.loafle.net/bet/beteran-backend-app-browser into feature/BETERAN-BACKEND-APP-BROWSER-init
This commit is contained in:
		
						commit
						152ebe4895
					
				@ -2,6 +2,7 @@ import { Injectable } from '@angular/core';
 | 
			
		||||
import { assign, cloneDeep } from 'lodash-es';
 | 
			
		||||
import { FuseMockApiService, FuseMockApiUtils } from '@fuse/lib/mock-api';
 | 
			
		||||
import { todayBets as todayBetsData } from './data';
 | 
			
		||||
import { contacts } from '../../chat/data';
 | 
			
		||||
 | 
			
		||||
@Injectable({
 | 
			
		||||
  providedIn: 'root',
 | 
			
		||||
@ -35,27 +36,10 @@ export class ReportTodayBetMockApi {
 | 
			
		||||
        const search = request.params.get('search');
 | 
			
		||||
        const sort = request.params.get('sort') || 'name';
 | 
			
		||||
        const order = request.params.get('order') || 'asc';
 | 
			
		||||
        const page = parseInt(request.params.get('page') ?? '1', 10);
 | 
			
		||||
        const size = parseInt(request.params.get('size') ?? '10', 10);
 | 
			
		||||
 | 
			
		||||
        // Clone the todayBets
 | 
			
		||||
        let todayBets: any[] | null = cloneDeep(this._todayBets);
 | 
			
		||||
 | 
			
		||||
        // Sort the todayBets
 | 
			
		||||
        if (sort === 'sku' || sort === 'name' || sort === 'active') {
 | 
			
		||||
          todayBets.sort((a, b) => {
 | 
			
		||||
            const fieldA = a[sort].toString().toUpperCase();
 | 
			
		||||
            const fieldB = b[sort].toString().toUpperCase();
 | 
			
		||||
            return order === 'asc'
 | 
			
		||||
              ? fieldA.localeCompare(fieldB)
 | 
			
		||||
              : fieldB.localeCompare(fieldA);
 | 
			
		||||
          });
 | 
			
		||||
        } else {
 | 
			
		||||
          todayBets.sort((a, b) =>
 | 
			
		||||
            order === 'asc' ? a[sort] - b[sort] : b[sort] - a[sort]
 | 
			
		||||
          );
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        // If search exists...
 | 
			
		||||
        if (search) {
 | 
			
		||||
          // Filter the todayBets
 | 
			
		||||
@ -66,47 +50,11 @@ export class ReportTodayBetMockApi {
 | 
			
		||||
          );
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        // Paginate - Start
 | 
			
		||||
        const todayBetsLength = todayBets.length;
 | 
			
		||||
 | 
			
		||||
        // Calculate pagination details
 | 
			
		||||
        const begin = page * size;
 | 
			
		||||
        const end = Math.min(size * (page + 1), todayBetsLength);
 | 
			
		||||
        const lastPage = Math.max(Math.ceil(todayBetsLength / size), 1);
 | 
			
		||||
 | 
			
		||||
        // Prepare the pagination object
 | 
			
		||||
        let pagination = {};
 | 
			
		||||
 | 
			
		||||
        // If the requested page number is bigger than
 | 
			
		||||
        // the last possible page number, return null for
 | 
			
		||||
        // todayBets but also send the last possible page so
 | 
			
		||||
        // the app can navigate to there
 | 
			
		||||
        if (page > lastPage) {
 | 
			
		||||
          todayBets = null;
 | 
			
		||||
          pagination = {
 | 
			
		||||
            lastPage,
 | 
			
		||||
          };
 | 
			
		||||
        } else {
 | 
			
		||||
          // Paginate the results by size
 | 
			
		||||
          todayBets = todayBets.slice(begin, end);
 | 
			
		||||
 | 
			
		||||
          // Prepare the pagination mock-api
 | 
			
		||||
          pagination = {
 | 
			
		||||
            length: todayBetsLength,
 | 
			
		||||
            size: size,
 | 
			
		||||
            page: page,
 | 
			
		||||
            lastPage: lastPage,
 | 
			
		||||
            startIndex: begin,
 | 
			
		||||
            endIndex: end - 1,
 | 
			
		||||
          };
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        // Return the response
 | 
			
		||||
        return [
 | 
			
		||||
          200,
 | 
			
		||||
          {
 | 
			
		||||
            todayBets,
 | 
			
		||||
            pagination,
 | 
			
		||||
          },
 | 
			
		||||
        ];
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
@ -2,32 +2,518 @@
 | 
			
		||||
 | 
			
		||||
export const todayBets = [
 | 
			
		||||
  {
 | 
			
		||||
    id: 'on00',
 | 
			
		||||
    totalPartnerCount: '5',
 | 
			
		||||
    totalHoldingMoney: 303675,
 | 
			
		||||
    totalComp: 108933,
 | 
			
		||||
    total: 412608,
 | 
			
		||||
    branchCount: 1,
 | 
			
		||||
    divisionCount: 1,
 | 
			
		||||
    officeCount: 1,
 | 
			
		||||
    storeCount: 1,
 | 
			
		||||
    memberCount: 1,
 | 
			
		||||
    nickname: 'on00',
 | 
			
		||||
    accountHolder: '11',
 | 
			
		||||
    phoneNumber: '010-1111-1111',
 | 
			
		||||
    calculateType: '롤링',
 | 
			
		||||
    ownCash: 50000,
 | 
			
		||||
    ownComp: 1711,
 | 
			
		||||
    ownCoupon: 50000,
 | 
			
		||||
    gameMoney: 0,
 | 
			
		||||
    todayComp: 0,
 | 
			
		||||
    totalDeposit: 0,
 | 
			
		||||
    totalWithdraw: 0,
 | 
			
		||||
    balance: 0,
 | 
			
		||||
    registDate: '2022-06-12 15:38',
 | 
			
		||||
    finalSigninDate: '',
 | 
			
		||||
    ip: '',
 | 
			
		||||
    state: '정상',
 | 
			
		||||
    note: '',
 | 
			
		||||
    user: {
 | 
			
		||||
      id: '1',
 | 
			
		||||
      signinId: 'kgon1',
 | 
			
		||||
      type: '본사',
 | 
			
		||||
      parentId: 0,
 | 
			
		||||
      rank: '회원',
 | 
			
		||||
      level: '4',
 | 
			
		||||
      nickname: 'aa100',
 | 
			
		||||
    },
 | 
			
		||||
    bank: {
 | 
			
		||||
      users: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: 0,
 | 
			
		||||
      },
 | 
			
		||||
      parthners: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: '0',
 | 
			
		||||
      },
 | 
			
		||||
      totalNetProfit: '0',
 | 
			
		||||
      passiveMoney: '0',
 | 
			
		||||
      passiveComp: '0',
 | 
			
		||||
      casino: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingTie: '33,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      slot: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      powerball: {
 | 
			
		||||
        betting: '0',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '0',
 | 
			
		||||
        bettingWin: '0',
 | 
			
		||||
        winLoss: '0',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '0',
 | 
			
		||||
          partner: '0',
 | 
			
		||||
          me: '0',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    totalBetSettle: '119,400',
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    user: {
 | 
			
		||||
      id: '2',
 | 
			
		||||
      signinId: 'kgon2',
 | 
			
		||||
      type: '대본',
 | 
			
		||||
      parentId: 1,
 | 
			
		||||
    },
 | 
			
		||||
    bank: {
 | 
			
		||||
      users: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: 0,
 | 
			
		||||
      },
 | 
			
		||||
      parthners: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: '0',
 | 
			
		||||
      },
 | 
			
		||||
      totalNetProfit: '0',
 | 
			
		||||
      passiveMoney: '0',
 | 
			
		||||
      passiveComp: '0',
 | 
			
		||||
      casino: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingTie: '33,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      slot: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      powerball: {
 | 
			
		||||
        betting: '0',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '0',
 | 
			
		||||
        bettingWin: '0',
 | 
			
		||||
        winLoss: '0',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '0',
 | 
			
		||||
          partner: '0',
 | 
			
		||||
          me: '0',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    totalBetSettle: '119,400',
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    user: {
 | 
			
		||||
      id: '3',
 | 
			
		||||
      signinId: 'kgon1',
 | 
			
		||||
      type: '본사',
 | 
			
		||||
      parentId: 2,
 | 
			
		||||
    },
 | 
			
		||||
    bank: {
 | 
			
		||||
      users: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: 0,
 | 
			
		||||
      },
 | 
			
		||||
      parthners: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: '0',
 | 
			
		||||
      },
 | 
			
		||||
      totalNetProfit: '0',
 | 
			
		||||
      passiveMoney: '0',
 | 
			
		||||
      passiveComp: '0',
 | 
			
		||||
      casino: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingTie: '33,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      slot: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      powerball: {
 | 
			
		||||
        betting: '0',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '0',
 | 
			
		||||
        bettingWin: '0',
 | 
			
		||||
        winLoss: '0',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '0',
 | 
			
		||||
          partner: '0',
 | 
			
		||||
          me: '0',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    totalBetSettle: '119,400',
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    user: {
 | 
			
		||||
      id: '4',
 | 
			
		||||
      signinId: 'kgon1',
 | 
			
		||||
      type: '부본',
 | 
			
		||||
      parentId: 3,
 | 
			
		||||
    },
 | 
			
		||||
    bank: {
 | 
			
		||||
      users: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: 0,
 | 
			
		||||
      },
 | 
			
		||||
      parthners: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: '0',
 | 
			
		||||
      },
 | 
			
		||||
      totalNetProfit: '0',
 | 
			
		||||
      passiveMoney: '0',
 | 
			
		||||
      passiveComp: '0',
 | 
			
		||||
      casino: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingTie: '33,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      slot: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      powerball: {
 | 
			
		||||
        betting: '0',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '0',
 | 
			
		||||
        bettingWin: '0',
 | 
			
		||||
        winLoss: '0',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '0',
 | 
			
		||||
          partner: '0',
 | 
			
		||||
          me: '0',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    totalBetSettle: '119,400',
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    user: {
 | 
			
		||||
      id: '5',
 | 
			
		||||
      signinId: 'kgon1',
 | 
			
		||||
      type: '본사',
 | 
			
		||||
      parentId: 0,
 | 
			
		||||
    },
 | 
			
		||||
    bank: {
 | 
			
		||||
      users: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: 0,
 | 
			
		||||
      },
 | 
			
		||||
      parthners: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: '0',
 | 
			
		||||
      },
 | 
			
		||||
      totalNetProfit: '0',
 | 
			
		||||
      passiveMoney: '0',
 | 
			
		||||
      passiveComp: '0',
 | 
			
		||||
      casino: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingTie: '33,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      slot: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      powerball: {
 | 
			
		||||
        betting: '0',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '0',
 | 
			
		||||
        bettingWin: '0',
 | 
			
		||||
        winLoss: '0',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '0',
 | 
			
		||||
          partner: '0',
 | 
			
		||||
          me: '0',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    totalBetSettle: '119,400',
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    user: {
 | 
			
		||||
      id: '6',
 | 
			
		||||
      signinId: 'kgon1',
 | 
			
		||||
      type: '본사',
 | 
			
		||||
      parentId: 0,
 | 
			
		||||
    },
 | 
			
		||||
    bank: {
 | 
			
		||||
      users: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: 0,
 | 
			
		||||
      },
 | 
			
		||||
      parthners: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: '0',
 | 
			
		||||
      },
 | 
			
		||||
      totalNetProfit: '0',
 | 
			
		||||
      passiveMoney: '0',
 | 
			
		||||
      passiveComp: '0',
 | 
			
		||||
      casino: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingTie: '33,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      slot: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      powerball: {
 | 
			
		||||
        betting: '0',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '0',
 | 
			
		||||
        bettingWin: '0',
 | 
			
		||||
        winLoss: '0',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '0',
 | 
			
		||||
          partner: '0',
 | 
			
		||||
          me: '0',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    totalBetSettle: '119,400',
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    user: {
 | 
			
		||||
      id: '7',
 | 
			
		||||
      signinId: 'kgon1',
 | 
			
		||||
      type: '본사',
 | 
			
		||||
      parentId: 0,
 | 
			
		||||
    },
 | 
			
		||||
    bank: {
 | 
			
		||||
      users: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: 0,
 | 
			
		||||
      },
 | 
			
		||||
      parthners: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: '0',
 | 
			
		||||
      },
 | 
			
		||||
      totalNetProfit: '0',
 | 
			
		||||
      passiveMoney: '0',
 | 
			
		||||
      passiveComp: '0',
 | 
			
		||||
      casino: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingTie: '33,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      slot: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      powerball: {
 | 
			
		||||
        betting: '0',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '0',
 | 
			
		||||
        bettingWin: '0',
 | 
			
		||||
        winLoss: '0',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '0',
 | 
			
		||||
          partner: '0',
 | 
			
		||||
          me: '0',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    totalBetSettle: '119,400',
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    user: {
 | 
			
		||||
      id: '8',
 | 
			
		||||
      signinId: 'kgon1',
 | 
			
		||||
      type: '본사',
 | 
			
		||||
      parentId: 0,
 | 
			
		||||
    },
 | 
			
		||||
    bank: {
 | 
			
		||||
      users: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: 0,
 | 
			
		||||
      },
 | 
			
		||||
      parthners: {
 | 
			
		||||
        deposit: '0',
 | 
			
		||||
        withdraw: '0',
 | 
			
		||||
        netProfit: '0',
 | 
			
		||||
      },
 | 
			
		||||
      totalNetProfit: '0',
 | 
			
		||||
      passiveMoney: '0',
 | 
			
		||||
      passiveComp: '0',
 | 
			
		||||
      casino: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingTie: '33,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      slot: {
 | 
			
		||||
        betting: '382,000',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '351,000',
 | 
			
		||||
        bettingWin: '357,050',
 | 
			
		||||
        winLoss: '26,950',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '7,020',
 | 
			
		||||
          partner: '5,265',
 | 
			
		||||
          me: '1,755',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
      powerball: {
 | 
			
		||||
        betting: '0',
 | 
			
		||||
        bettingCancel: '0',
 | 
			
		||||
        bettingValid: '0',
 | 
			
		||||
        bettingWin: '0',
 | 
			
		||||
        winLoss: '0',
 | 
			
		||||
        commission: {
 | 
			
		||||
          total: '0',
 | 
			
		||||
          partner: '0',
 | 
			
		||||
          me: '0',
 | 
			
		||||
        },
 | 
			
		||||
        betWinSettle: '19,930',
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    totalBetSettle: '119,400',
 | 
			
		||||
  },
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
@ -1,355 +1,235 @@
 | 
			
		||||
<div
 | 
			
		||||
  class="sm:absolute sm:inset-0 flex flex-col flex-auto min-w-0 sm:overflow-hidden bg-card dark:bg-transparent"
 | 
			
		||||
>
 | 
			
		||||
  <!-- Header -->
 | 
			
		||||
  <div
 | 
			
		||||
    class="relative flex flex-col sm:flex-row flex-0 sm:items-center sm:justify-between py-8 px-6 md:px-8 border-b"
 | 
			
		||||
  >
 | 
			
		||||
    <!-- Loader -->
 | 
			
		||||
    <div class="absolute inset-x-0 bottom-0" *ngIf="isLoading">
 | 
			
		||||
      <mat-progress-bar [mode]="'indeterminate'"></mat-progress-bar>
 | 
			
		||||
    </div>
 | 
			
		||||
    <!-- Title -->
 | 
			
		||||
    <div class="text-4xl font-extrabold tracking-tight">금일배팅자목록</div>
 | 
			
		||||
    <!-- Actions -->
 | 
			
		||||
    <div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
 | 
			
		||||
      <!-- Memo -->
 | 
			
		||||
      <!-- <mat-form-field>
 | 
			
		||||
        <ng-container *ngIf="todayBets$ | async as todayBets">
 | 
			
		||||
          <ng-container
 | 
			
		||||
            *ngFor="let todayBet of todayBets; trackBy: __trackByFn"
 | 
			
		||||
          >
 | 
			
		||||
            <div
 | 
			
		||||
              class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
 | 
			
		||||
            >
 | 
			
		||||
              <fieldset>
 | 
			
		||||
                총 파트너수:{{ todayBet.totalPartnerCount }} 총 보유머니:{{
 | 
			
		||||
                  todayBet.totalHoldingMoney
 | 
			
		||||
                }}
 | 
			
		||||
                총 콤프:{{ todayBet.totalComp }} 총 합계:{{
 | 
			
		||||
                  todayBet.total
 | 
			
		||||
                }}
 | 
			
		||||
              </fieldset>
 | 
			
		||||
            </div>
 | 
			
		||||
          </ng-container>
 | 
			
		||||
        </ng-container>
 | 
			
		||||
      </mat-form-field> -->
 | 
			
		||||
 | 
			
		||||
      <!-- SelectBox -->
 | 
			
		||||
      <mat-form-field>
 | 
			
		||||
        <mat-select placeholder="리스트수">
 | 
			
		||||
          <mat-option value="40">40</mat-option>
 | 
			
		||||
          <mat-option value="60">60</mat-option>
 | 
			
		||||
          <mat-option value="80">80</mat-option>
 | 
			
		||||
          <mat-option value="100">100</mat-option>
 | 
			
		||||
        </mat-select>
 | 
			
		||||
      </mat-form-field>
 | 
			
		||||
      <mat-form-field>
 | 
			
		||||
        <mat-select placeholder="레벨">
 | 
			
		||||
          <mat-option value="level1">LV.1</mat-option>
 | 
			
		||||
          <mat-option value="level2">LV.2</mat-option>
 | 
			
		||||
          <mat-option value="level3">LV.3</mat-option>
 | 
			
		||||
          <mat-option value="level4">LV.4</mat-option>
 | 
			
		||||
        </mat-select>
 | 
			
		||||
      </mat-form-field>
 | 
			
		||||
      <mat-form-field>
 | 
			
		||||
        <mat-select placeholder="상태">
 | 
			
		||||
          <mat-option value="">정상</mat-option>
 | 
			
		||||
          <mat-option value="">대기</mat-option>
 | 
			
		||||
          <mat-option value="">탈퇴</mat-option>
 | 
			
		||||
          <mat-option value="">휴면</mat-option>
 | 
			
		||||
          <mat-option value="">블랙</mat-option>
 | 
			
		||||
          <mat-option value="">정지</mat-option>
 | 
			
		||||
        </mat-select>
 | 
			
		||||
      </mat-form-field>
 | 
			
		||||
      <mat-form-field>
 | 
			
		||||
        <mat-select placeholder="제한">
 | 
			
		||||
          <mat-option value="">카지노제한</mat-option>
 | 
			
		||||
          <mat-option value="">슬롯제한</mat-option>
 | 
			
		||||
        </mat-select>
 | 
			
		||||
      </mat-form-field>
 | 
			
		||||
      <mat-form-field>
 | 
			
		||||
        <mat-select placeholder="입금">
 | 
			
		||||
          <mat-option value="">계좌입금</mat-option>
 | 
			
		||||
        </mat-select>
 | 
			
		||||
      </mat-form-field>
 | 
			
		||||
      <mat-form-field>
 | 
			
		||||
        <mat-select placeholder="내용">
 | 
			
		||||
          <mat-option value="">카지노콤프</mat-option>
 | 
			
		||||
          <mat-option value="">슬롯콤프</mat-option>
 | 
			
		||||
          <mat-option value="">배팅콤프</mat-option>
 | 
			
		||||
          <mat-option value="">첫충콤프</mat-option>
 | 
			
		||||
        </mat-select>
 | 
			
		||||
      </mat-form-field>
 | 
			
		||||
      <!-- <mat-form-field>
 | 
			
		||||
        <mat-select placeholder="입금">
 | 
			
		||||
          <mat-option value="">계좌입금</mat-option>
 | 
			
		||||
        </mat-select>
 | 
			
		||||
      </mat-form-field>
 | 
			
		||||
      <mat-form-field>
 | 
			
		||||
        <mat-select placeholder="아이디">
 | 
			
		||||
          <mat-option value="">아이디</mat-option>
 | 
			
		||||
          <mat-option value="">닉네임</mat-option>
 | 
			
		||||
          <mat-option value="">이름</mat-option>
 | 
			
		||||
          <mat-option value="">사이트</mat-option>
 | 
			
		||||
          <mat-option value="">파트너수동지급</mat-option>
 | 
			
		||||
        </mat-select>
 | 
			
		||||
      </mat-form-field>
 | 
			
		||||
      <mat-form-field>
 | 
			
		||||
        <mat-select placeholder="가입일 정렬">
 | 
			
		||||
          <mat-option value="">가입일 정렬</mat-option>
 | 
			
		||||
          <mat-option value="">아이디 정렬</mat-option>
 | 
			
		||||
          <mat-option value="">닉네임 정렬</mat-option>
 | 
			
		||||
          <mat-option value="">캐쉬 정렬</mat-option>
 | 
			
		||||
          <mat-option value="">콤프 정렬</mat-option>
 | 
			
		||||
          <mat-option value="">쿠폰 정렬</mat-option>
 | 
			
		||||
          <mat-option value="">입금 정렬</mat-option>
 | 
			
		||||
          <mat-option value="">출금 정렬</mat-option>
 | 
			
		||||
          <mat-option value="">차익 정렬</mat-option>
 | 
			
		||||
        </mat-select>
 | 
			
		||||
      </mat-form-field>
 | 
			
		||||
      <mat-form-field>
 | 
			
		||||
        <mat-select placeholder="내림차순">
 | 
			
		||||
          <mat-option value="">내림차순</mat-option>
 | 
			
		||||
          <mat-option value="">오름차순</mat-option>
 | 
			
		||||
        </mat-select>
 | 
			
		||||
      </mat-form-field> -->
 | 
			
		||||
      <!-- Search -->
 | 
			
		||||
      <mat-form-field
 | 
			
		||||
        class="fuse-mat-dense fuse-mat-no-subscript fuse-mat-rounded min-w-64"
 | 
			
		||||
      >
 | 
			
		||||
        <mat-icon
 | 
			
		||||
          class="icon-size-5"
 | 
			
		||||
          matPrefix
 | 
			
		||||
          [svgIcon]="'heroicons_solid:search'"
 | 
			
		||||
        ></mat-icon>
 | 
			
		||||
        <input
 | 
			
		||||
          matInput
 | 
			
		||||
          [formControl]="searchInputControl"
 | 
			
		||||
          [autocomplete]="'off'"
 | 
			
		||||
          [placeholder]="'Search'"
 | 
			
		||||
        />
 | 
			
		||||
      </mat-form-field>
 | 
			
		||||
      <!-- Add user button -->
 | 
			
		||||
      <button
 | 
			
		||||
        class="ml-4"
 | 
			
		||||
        mat-flat-button
 | 
			
		||||
        [color]="'primary'"
 | 
			
		||||
        (click)="__createProduct()"
 | 
			
		||||
      >
 | 
			
		||||
        <!-- <mat-icon [svgIcon]="'heroicons_outline:plus'"></mat-icon> -->
 | 
			
		||||
        <span class="ml-2 mr-1">검색하기</span>
 | 
			
		||||
      </button>
 | 
			
		||||
      <button>엑셀저장</button>
 | 
			
		||||
      <button>카지노머니확인</button>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
 | 
			
		||||
  <!-- Main -->
 | 
			
		||||
  <div class="flex flex-auto overflow-hidden">
 | 
			
		||||
    <!-- Products list -->
 | 
			
		||||
    <div
 | 
			
		||||
      class="flex flex-col flex-auto sm:mb-18 overflow-hidden sm:overflow-y-auto"
 | 
			
		||||
    >
 | 
			
		||||
      <ng-container *ngIf="todayBets$ | async as todayBets">
 | 
			
		||||
        <ng-container *ngIf="todayBets.length > 0; else noTodayBet">
 | 
			
		||||
          <div class="grid">
 | 
			
		||||
            <!-- Header -->
 | 
			
		||||
            <div
 | 
			
		||||
              class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
 | 
			
		||||
              matSort
 | 
			
		||||
              matSortDisableClear
 | 
			
		||||
            >
 | 
			
		||||
              <div class="hidden sm:block"><mat-checkbox></mat-checkbox></div>
 | 
			
		||||
              <div class="hidden sm:block">요율</div>
 | 
			
		||||
              <div class="hidden sm:block">상부트리</div>
 | 
			
		||||
              <div class="hidden sm:block">관리</div>
 | 
			
		||||
              <div class="hidden sm:block">매장수</div>
 | 
			
		||||
              <div class="hidden sm:block">회원수</div>
 | 
			
		||||
              <div class="hidden sm:block">아이디</div>
 | 
			
		||||
              <div class="hidden sm:block">닉네임</div>
 | 
			
		||||
              <div class="hidden sm:block">예금주</div>
 | 
			
		||||
              <div class="hidden sm:block">연락처</div>
 | 
			
		||||
              <div class="hidden sm:block">정산</div>
 | 
			
		||||
              <div class="hidden sm:block">보유금</div>
 | 
			
		||||
              <div class="hidden sm:block">게임중머니</div>
 | 
			
		||||
              <div class="hidden sm:block">카지노->캐쉬</div>
 | 
			
		||||
              <div class="hidden sm:block">금일콤프</div>
 | 
			
		||||
              <div class="hidden sm:block">총입출</div>
 | 
			
		||||
              <div class="hidden sm:block">로그</div>
 | 
			
		||||
              <div class="hidden sm:block">상태</div>
 | 
			
		||||
              <div class="hidden sm:block">회원수</div>
 | 
			
		||||
              <div class="hidden sm:block">비고</div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <!-- Rows -->
 | 
			
		||||
            <ng-container *ngIf="todayBets$ | async as todayBets">
 | 
			
		||||
              <ng-container
 | 
			
		||||
                *ngFor="let todayBet of todayBets; trackBy: __trackByFn"
 | 
			
		||||
              >
 | 
			
		||||
                <div
 | 
			
		||||
                  class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
 | 
			
		||||
                >
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    <mat-checkbox></mat-checkbox>
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- rate -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    <button
 | 
			
		||||
                      mat-button
 | 
			
		||||
                      color="primary"
 | 
			
		||||
                      matTooltip="요율확인
 | 
			
		||||
                                카지노-바카라: 0%
 | 
			
		||||
                                카지노-룰렛: 0%
 | 
			
		||||
                                카지노-드레곤타이거: 0%
 | 
			
		||||
                                카지노-그외: 0%
 | 
			
		||||
                                슬롯: 0%
 | 
			
		||||
                                카지노루징: 0%
 | 
			
		||||
                                슬롯루징: 0%"
 | 
			
		||||
                    >
 | 
			
		||||
                      요율
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <div class="hidden sm:block truncate">
 | 
			
		||||
                      <!-- 관리 -->
 | 
			
		||||
                      <button mat-flat-button [color]="'primary'">
 | 
			
		||||
                        <mat-form-field>
 | 
			
		||||
                          <mat-select placeholder="관리">
 | 
			
		||||
                            <mat-option value="">보유금지급/회수</mat-option>
 | 
			
		||||
                            <mat-option value="">수수료설정</mat-option>
 | 
			
		||||
                            <mat-option value="">콤프지급/회수</mat-option>
 | 
			
		||||
                            <mat-option value="">쿠폰머니지급/회수</mat-option>
 | 
			
		||||
                            <mat-option value="">쪽지보내기</mat-option>
 | 
			
		||||
                            <mat-option value="">베팅리스트</mat-option>
 | 
			
		||||
                            <mat-option value="">강제로그아웃</mat-option>
 | 
			
		||||
                          </mat-select>
 | 
			
		||||
                        </mat-form-field>
 | 
			
		||||
                      </button>
 | 
			
		||||
                    </div>
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- 매장수 -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    <button mat-flat-button [color]="'primary'">
 | 
			
		||||
                      {{ todayBet.branchCount }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <button mat-flat-button [color]="'primary'">
 | 
			
		||||
                      {{ todayBet.divisionCount }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <button mat-flat-button [color]="'primary'">
 | 
			
		||||
                      {{ todayBet.officeCount }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <button mat-flat-button [color]="'primary'">
 | 
			
		||||
                      {{ todayBet.storeCount }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- 회원수 -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    <button mat-flat-button [color]="'primary'">
 | 
			
		||||
                      {{ todayBet.memberCount }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- id -->
 | 
			
		||||
                  <ng-container *ngIf="users$ | async as users">
 | 
			
		||||
                    <ng-container
 | 
			
		||||
                      *ngFor="let user of users; trackBy: __trackByFn"
 | 
			
		||||
                    >
 | 
			
		||||
                      <div
 | 
			
		||||
                        class="hidden sm:block truncate"
 | 
			
		||||
                        (click)="viewUserDetail(user.id!)"
 | 
			
		||||
                      >
 | 
			
		||||
                        {{ todayBet.id }}
 | 
			
		||||
                      </div>
 | 
			
		||||
                    </ng-container>
 | 
			
		||||
                  </ng-container>
 | 
			
		||||
                  <!-- nickname -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    {{ todayBet.nickname }}
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- accountHolder -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    {{ todayBet.accountHolder }}
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- 연락처 -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    {{ todayBet.phoneNumber }}
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- 정산 -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    {{ todayBet.calculateType }}
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- 보유금 -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    캐쉬{{ todayBet.ownCash }} 콤프{{ todayBet.ownComp }} 쿠폰{{
 | 
			
		||||
                      todayBet.ownCoupon
 | 
			
		||||
                    }}
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- gameMoney -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    {{ todayBet.gameMoney }}
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- casinoCash -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    <button mat-flat-button [color]="'primary'">
 | 
			
		||||
                      게임머니확인
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <button mat-flat-button [color]="'primary'">
 | 
			
		||||
                      게임머니회수
 | 
			
		||||
                    </button>
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- todayComp -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    {{ todayBet.todayComp }}P
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- 총입출 -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    입금{{ todayBet.totalDeposit }} 출금{{
 | 
			
		||||
                      todayBet.totalWithdraw
 | 
			
		||||
                    }}
 | 
			
		||||
                    차익{{ todayBet.balance }}
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- log -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    가입{{ todayBet.registDate }} 최종{{
 | 
			
		||||
                      todayBet.finalSigninDate
 | 
			
		||||
                    }}
 | 
			
		||||
                    IP{{ todayBet.ip }}
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- state -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    {{ todayBet.state }}
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- 회원수 -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    {{ todayBet.memberCount }}
 | 
			
		||||
                  </div>
 | 
			
		||||
                  <!-- 비고 -->
 | 
			
		||||
                  <div class="hidden sm:block truncate">
 | 
			
		||||
                    <button mat-flat-button [color]="'primary'">
 | 
			
		||||
                      {{ todayBet.note }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                  </div>
 | 
			
		||||
                </div>
 | 
			
		||||
              </ng-container>
 | 
			
		||||
            </ng-container>
 | 
			
		||||
          </div>
 | 
			
		||||
 | 
			
		||||
          <mat-paginator
 | 
			
		||||
            class="sm:absolute sm:inset-x-0 sm:bottom-0 border-b sm:border-t sm:border-b-0 z-10 bg-gray-50 dark:bg-transparent"
 | 
			
		||||
            [ngClass]="{ 'pointer-events-none': isLoading }"
 | 
			
		||||
            [length]="pagination?.length"
 | 
			
		||||
            [pageIndex]="pagination?.page"
 | 
			
		||||
            [pageSize]="pagination?.size"
 | 
			
		||||
            [pageSizeOptions]="[5, 10, 25, 100]"
 | 
			
		||||
            [showFirstLastButtons]="true"
 | 
			
		||||
          ></mat-paginator>
 | 
			
		||||
        </ng-container>
 | 
			
		||||
      </ng-container>
 | 
			
		||||
 | 
			
		||||
      <ng-template #noTodayBet>
 | 
			
		||||
<div class="flex flex-col flex-auto min-w-0">
 | 
			
		||||
  <div class="flex-auto border-t -mt-px pt-4 sm:pt-6">
 | 
			
		||||
    <div class="w-full max-w-screen-xl mx-auto">
 | 
			
		||||
      <div class="grid grid-cols-1 sm:grid-cols-6 gap-6 w-full min-w-0">
 | 
			
		||||
        <!-- Budget distribution -->
 | 
			
		||||
        <div
 | 
			
		||||
          class="p-8 sm:p-16 border-t text-4xl font-semibold tracking-tight text-center"
 | 
			
		||||
          class="sm:col-span-6 flex flex-col flex-auto p-6 bg-card shadow rounded-2xl overflow-hidden"
 | 
			
		||||
        >
 | 
			
		||||
          There are no today Bets!
 | 
			
		||||
          <div class="text-lg font-medium tracking-tight leading-6 truncate">
 | 
			
		||||
            금일배팅자목록
 | 
			
		||||
          </div>
 | 
			
		||||
          <div class="flex flex-col flex-auto mt-2 overflow-x-auto">
 | 
			
		||||
            <form [formGroup]="todayBetForm" autocomplete="off">
 | 
			
		||||
              <table
 | 
			
		||||
                class="min-w-240 overflow-y-visible"
 | 
			
		||||
                mat-table
 | 
			
		||||
                [dataSource]="todayBetDataSource"
 | 
			
		||||
              >
 | 
			
		||||
                <!-- 등급 -->
 | 
			
		||||
                <ng-container matColumnDef="rank">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>등급</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    <span class="font-medium text-right">
 | 
			
		||||
                      {{ info?.user.rank }}
 | 
			
		||||
                    </span>
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 레벨 -->
 | 
			
		||||
                <ng-container matColumnDef="level">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>레벨</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    <span class="font-medium text-right">
 | 
			
		||||
                      {{ info?.user.level }}
 | 
			
		||||
                    </span>
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 아이디 -->
 | 
			
		||||
                <ng-container matColumnDef="signinId">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>아이디</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    <span class="font-medium text-right">
 | 
			
		||||
                      {{ info?.user.signinId }}
 | 
			
		||||
                    </span>
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 닉네임 -->
 | 
			
		||||
                <ng-container matColumnDef="nickname">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>닉네임</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    <span class="font-medium text-right">
 | 
			
		||||
                      {{ info?.user.nickname }}
 | 
			
		||||
                    </span>
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 회원입출 -->
 | 
			
		||||
                <ng-container matColumnDef="depositDetails">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>회원입출</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    <span>{{ info?.bank.users.deposit }}</span>
 | 
			
		||||
                    <span>{{ info?.bank.users.withdraw }}</span>
 | 
			
		||||
                    <span>{{ info?.bank.users.netProfit }}</span>
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 파트너입출 -->
 | 
			
		||||
                <ng-container matColumnDef="depositPartnerDetails">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>파트너입출</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    <span>{{ info?.bank.parthners.deposit }}</span>
 | 
			
		||||
                    <span>{{ info?.bank.parthners.withdraw }}</span>
 | 
			
		||||
                    <span>{{ info?.bank.parthners.netProfit }}</span>
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 총손익 -->
 | 
			
		||||
                <ng-container matColumnDef="totalProfit">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>총손익</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.totalNetProfit }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 수동머니 -->
 | 
			
		||||
                <ng-container matColumnDef="passiveMoney">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>수동머니</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.passiveMoney }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 수동콤프 -->
 | 
			
		||||
                <ng-container matColumnDef="passiveComp">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>수동콤프</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.passiveComp }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 배팅 -->
 | 
			
		||||
                <ng-container matColumnDef="casinoBetDetails">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>배팅</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.casino.betting }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 당첨 -->
 | 
			
		||||
                <ng-container matColumnDef="casinoWinningDetails">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>당첨</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.casino.bettingWin }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 윈로스(A) -->
 | 
			
		||||
                <ng-container matColumnDef="casinoWinLoss">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>윈로스(A)</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.casino.winLoss }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 수수료(B) -->
 | 
			
		||||
                <ng-container matColumnDef="casinoCommission">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>수수료(B)</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.casino.commission.total }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 벳윈정산(A-B) -->
 | 
			
		||||
                <ng-container matColumnDef="casinoSettle">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>벳윈정산(A-B)</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.casino.betWinSettle }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
 | 
			
		||||
                <!-- 배팅 -->
 | 
			
		||||
                <ng-container matColumnDef="slotBetDetails">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>배팅</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.slot.betting }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 당첨 -->
 | 
			
		||||
                <ng-container matColumnDef="slotWinningDetails">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>당첨</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.slot.bettingWin }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 윈로스(D) -->
 | 
			
		||||
                <ng-container matColumnDef="slotWinLoss">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>윈로스(D)</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.slot.winLoss }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 수수료(E) -->
 | 
			
		||||
                <ng-container matColumnDef="slotCommission">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>수수료(E)</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.slot.commission.total }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 벳윈정산(A-B) -->
 | 
			
		||||
                <ng-container matColumnDef="slotSettle">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>벳윈정산(A-B)</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.slot.commission.betWinSettle }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
 | 
			
		||||
                <!-- 배팅 -->
 | 
			
		||||
                <ng-container matColumnDef="powerballBetDetails">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>배팅</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.powerball.betting }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 당첨 -->
 | 
			
		||||
                <ng-container matColumnDef="powerballWinningDetails">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>당첨</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.powerball.bettingWin }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 윈로스(G) -->
 | 
			
		||||
                <ng-container matColumnDef="powerballWinLoss">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>윈로스(G)</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.powerball.winLoss }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 수수료(G) -->
 | 
			
		||||
                <ng-container matColumnDef="powerballCommission">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>수수료(H)</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.powerball.commission.total }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
                <!-- 벳윈정산(G-H) -->
 | 
			
		||||
                <ng-container matColumnDef="powerballSettle">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>벳윈정산(G-H)</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.bank.powerball.commission.betWinSettle }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
 | 
			
		||||
                <!-- 총벳윈정산 -->
 | 
			
		||||
                <ng-container matColumnDef="totalBetWinSettle">
 | 
			
		||||
                  <th mat-header-cell *matHeaderCellDef>총벳윈정산</th>
 | 
			
		||||
                  <td mat-cell *matCellDef="let info">
 | 
			
		||||
                    {{ info?.totalBetSettle }}
 | 
			
		||||
                  </td>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
 | 
			
		||||
                <!-- Header row second group -->
 | 
			
		||||
                <ng-container matColumnDef="header-row-info-group">
 | 
			
		||||
                  <th
 | 
			
		||||
                    mat-header-cell
 | 
			
		||||
                    *matHeaderCellDef
 | 
			
		||||
                    [attr.colspan]="2"
 | 
			
		||||
                    [attr.rowspan]="2"
 | 
			
		||||
                  >
 | 
			
		||||
                    Second group
 | 
			
		||||
                  </th>
 | 
			
		||||
                </ng-container>
 | 
			
		||||
 | 
			
		||||
                <!-- <tr mat-header-row *matHeaderRowDef="['betInfo']"></tr> -->
 | 
			
		||||
                <tr mat-header-row *matHeaderRowDef="todayBetTableColumns"></tr>
 | 
			
		||||
                <tr
 | 
			
		||||
                  mat-row
 | 
			
		||||
                  *matRowDef="let row; columns: todayBetTableColumns"
 | 
			
		||||
                ></tr>
 | 
			
		||||
              </table>
 | 
			
		||||
            </form>
 | 
			
		||||
          </div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </ng-template>
 | 
			
		||||
      </div>
 | 
			
		||||
    </div>
 | 
			
		||||
  </div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
@ -34,6 +34,7 @@ import { TodayBet } from '../models/today-bet';
 | 
			
		||||
import { TodayBetPagination } from '../models/today-bet-pagination';
 | 
			
		||||
import { TodayBetService } from '../services/today-bet.service';
 | 
			
		||||
import { Router } from '@angular/router';
 | 
			
		||||
import { MatTableDataSource } from '@angular/material/table';
 | 
			
		||||
 | 
			
		||||
@Component({
 | 
			
		||||
  selector: 'today-bet-list',
 | 
			
		||||
@ -63,19 +64,47 @@ import { Router } from '@angular/router';
 | 
			
		||||
  animations: fuseAnimations,
 | 
			
		||||
})
 | 
			
		||||
export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
 | 
			
		||||
  @ViewChild(MatPaginator) private _paginator!: MatPaginator;
 | 
			
		||||
  @ViewChild(MatSort) private _sort!: MatSort;
 | 
			
		||||
 | 
			
		||||
  todayBets$!: Observable<TodayBet[] | undefined>;
 | 
			
		||||
  users$!: Observable<User[] | undefined>;
 | 
			
		||||
 | 
			
		||||
  isLoading = false;
 | 
			
		||||
  searchInputControl = new FormControl();
 | 
			
		||||
  selectedTodayBet?: TodayBet;
 | 
			
		||||
  pagination?: TodayBetPagination;
 | 
			
		||||
 | 
			
		||||
  todayBetForm!: FormGroup;
 | 
			
		||||
 | 
			
		||||
  todayBetDataSource: MatTableDataSource<any> = new MatTableDataSource();
 | 
			
		||||
  todayBetTableColumns: string[] = [
 | 
			
		||||
    'rank',
 | 
			
		||||
    'level',
 | 
			
		||||
    'signinId',
 | 
			
		||||
    'nickname',
 | 
			
		||||
    'depositDetails',
 | 
			
		||||
    'depositPartnerDetails',
 | 
			
		||||
    'totalProfit',
 | 
			
		||||
    'passiveMoney',
 | 
			
		||||
    'passiveComp',
 | 
			
		||||
    'casinoBetDetails',
 | 
			
		||||
    'casinoWinningDetails',
 | 
			
		||||
    'casinoWinLoss',
 | 
			
		||||
    'casinoCommission',
 | 
			
		||||
    'casinoSettle',
 | 
			
		||||
    'slotBetDetails',
 | 
			
		||||
    'slotWinningDetails',
 | 
			
		||||
    'slotWinLoss',
 | 
			
		||||
    'slotCommission',
 | 
			
		||||
    'slotSettle',
 | 
			
		||||
    'powerballBetDetails',
 | 
			
		||||
    'powerballWinningDetails',
 | 
			
		||||
    'powerballWinLoss',
 | 
			
		||||
    'powerballCommission',
 | 
			
		||||
    'powerballSettle',
 | 
			
		||||
    'totalBetWinSettle',
 | 
			
		||||
  ];
 | 
			
		||||
  private _unsubscribeAll: Subject<any> = new Subject<any>();
 | 
			
		||||
 | 
			
		||||
  roles: any[];
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * Constructor
 | 
			
		||||
   */
 | 
			
		||||
@ -85,7 +114,26 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
 | 
			
		||||
    private _formBuilder: FormBuilder,
 | 
			
		||||
    private _todayBetService: TodayBetService,
 | 
			
		||||
    private router: Router
 | 
			
		||||
  ) {}
 | 
			
		||||
  ) {
 | 
			
		||||
    this.roles = [
 | 
			
		||||
      {
 | 
			
		||||
        label: '전체',
 | 
			
		||||
        value: '전체',
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
        label: '파워볼',
 | 
			
		||||
        value: '파워볼',
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
        label: '카지노',
 | 
			
		||||
        value: '카지노',
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
        label: '슬롯',
 | 
			
		||||
        value: '슬롯',
 | 
			
		||||
      },
 | 
			
		||||
    ];
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // -----------------------------------------------------------------------------------------------------
 | 
			
		||||
  // @ Lifecycle hooks
 | 
			
		||||
@ -95,14 +143,19 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
 | 
			
		||||
   * On init
 | 
			
		||||
   */
 | 
			
		||||
  ngOnInit(): void {
 | 
			
		||||
    this.todayBetForm = this._formBuilder.group({
 | 
			
		||||
      bankName: [''],
 | 
			
		||||
      accountNumber: [''],
 | 
			
		||||
      accountHolder: [''],
 | 
			
		||||
    });
 | 
			
		||||
    // Get the pagination
 | 
			
		||||
    this._todayBetService.pagination$
 | 
			
		||||
    this._todayBetService
 | 
			
		||||
      .getTodayBets()
 | 
			
		||||
      .pipe(takeUntil(this._unsubscribeAll))
 | 
			
		||||
      .subscribe((pagination: TodayBetPagination | undefined) => {
 | 
			
		||||
        // Update the pagination
 | 
			
		||||
        this.pagination = pagination;
 | 
			
		||||
 | 
			
		||||
      .subscribe((todayBets: any) => {
 | 
			
		||||
        // Mark for check
 | 
			
		||||
        this.todayBetDataSource = todayBets.todayBets;
 | 
			
		||||
        console.log(todayBets);
 | 
			
		||||
        this._changeDetectorRef.markForCheck();
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
@ -113,45 +166,7 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
 | 
			
		||||
  /**
 | 
			
		||||
   * After view init
 | 
			
		||||
   */
 | 
			
		||||
  ngAfterViewInit(): void {
 | 
			
		||||
    if (this._sort && this._paginator) {
 | 
			
		||||
      // Set the initial sort
 | 
			
		||||
      this._sort.sort({
 | 
			
		||||
        id: 'name',
 | 
			
		||||
        start: 'asc',
 | 
			
		||||
        disableClear: true,
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
      // Mark for check
 | 
			
		||||
      this._changeDetectorRef.markForCheck();
 | 
			
		||||
 | 
			
		||||
      // If the todayBet changes the sort order...
 | 
			
		||||
      this._sort.sortChange
 | 
			
		||||
        .pipe(takeUntil(this._unsubscribeAll))
 | 
			
		||||
        .subscribe(() => {
 | 
			
		||||
          // Reset back to the first page
 | 
			
		||||
          this._paginator.pageIndex = 0;
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
      // Get products if sort or page changes
 | 
			
		||||
      merge(this._sort.sortChange, this._paginator.page)
 | 
			
		||||
        .pipe(
 | 
			
		||||
          switchMap(() => {
 | 
			
		||||
            this.isLoading = true;
 | 
			
		||||
            return this._todayBetService.getTodayBets(
 | 
			
		||||
              this._paginator.pageIndex,
 | 
			
		||||
              this._paginator.pageSize,
 | 
			
		||||
              this._sort.active,
 | 
			
		||||
              this._sort.direction
 | 
			
		||||
            );
 | 
			
		||||
          }),
 | 
			
		||||
          map(() => {
 | 
			
		||||
            this.isLoading = false;
 | 
			
		||||
          })
 | 
			
		||||
        )
 | 
			
		||||
        .subscribe();
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
  ngAfterViewInit(): void {}
 | 
			
		||||
 | 
			
		||||
  /**
 | 
			
		||||
   * On destroy
 | 
			
		||||
@ -195,4 +210,7 @@ export class ListComponent implements OnInit, AfterViewInit, OnDestroy {
 | 
			
		||||
  __trackByFn(index: number, item: any): any {
 | 
			
		||||
    return item.id || index;
 | 
			
		||||
  }
 | 
			
		||||
  __testData(info: any): any {
 | 
			
		||||
    console.log(info);
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -79,7 +79,6 @@ export class TodayBetsResolver implements Resolve<any> {
 | 
			
		||||
    route: ActivatedRouteSnapshot,
 | 
			
		||||
    state: RouterStateSnapshot
 | 
			
		||||
  ): Observable<{
 | 
			
		||||
    pagination: TodayBetPagination;
 | 
			
		||||
    todayBets: TodayBet[];
 | 
			
		||||
  }> {
 | 
			
		||||
    return this._todayBetService.getTodayBets();
 | 
			
		||||
 | 
			
		||||
@ -70,32 +70,19 @@ export class TodayBetService {
 | 
			
		||||
   * @param order
 | 
			
		||||
   * @param search
 | 
			
		||||
   */
 | 
			
		||||
  getTodayBets(
 | 
			
		||||
    page: number = 0,
 | 
			
		||||
    size: number = 10,
 | 
			
		||||
    sort: string = 'name',
 | 
			
		||||
    order: 'asc' | 'desc' | '' = 'asc',
 | 
			
		||||
    search: string = ''
 | 
			
		||||
  ): Observable<{
 | 
			
		||||
    pagination: TodayBetPagination;
 | 
			
		||||
  getTodayBets(search: string = ''): Observable<{
 | 
			
		||||
    todayBets: TodayBet[];
 | 
			
		||||
  }> {
 | 
			
		||||
    return this._httpClient
 | 
			
		||||
      .get<{
 | 
			
		||||
        pagination: TodayBetPagination;
 | 
			
		||||
        todayBets: TodayBet[];
 | 
			
		||||
      }>('api/apps/report/today-bet/today-bets', {
 | 
			
		||||
        params: {
 | 
			
		||||
          page: '' + page,
 | 
			
		||||
          size: '' + size,
 | 
			
		||||
          sort,
 | 
			
		||||
          order,
 | 
			
		||||
          search,
 | 
			
		||||
        },
 | 
			
		||||
      })
 | 
			
		||||
      .pipe(
 | 
			
		||||
        tap((response) => {
 | 
			
		||||
          this.__pagination.next(response.pagination);
 | 
			
		||||
          this.__todayBets.next(response.todayBets);
 | 
			
		||||
        })
 | 
			
		||||
      );
 | 
			
		||||
 | 
			
		||||
@ -15,6 +15,7 @@ import { MatGridListModule } from '@angular/material/grid-list';
 | 
			
		||||
import { MatSlideToggleModule } from '@angular/material/slide-toggle';
 | 
			
		||||
import { MatRadioModule } from '@angular/material/radio';
 | 
			
		||||
import { MatCheckboxModule } from '@angular/material/checkbox';
 | 
			
		||||
import { MatTableModule } from '@angular/material/table';
 | 
			
		||||
 | 
			
		||||
import { TranslocoModule } from '@ngneat/transloco';
 | 
			
		||||
 | 
			
		||||
@ -45,6 +46,7 @@ import { todayBetRoutes } from './today-bet.routing';
 | 
			
		||||
    MatSlideToggleModule,
 | 
			
		||||
    MatRadioModule,
 | 
			
		||||
    MatCheckboxModule,
 | 
			
		||||
    MatTableModule,
 | 
			
		||||
  ],
 | 
			
		||||
})
 | 
			
		||||
export class TodayBetModule {}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user