1
This commit is contained in:
+34
-16
@@ -36,11 +36,14 @@ import CompanyList from '@/pages/product/CompanyList';
|
||||
import ProductList from '@/pages/product/ProductList';
|
||||
import ContractList from '@/pages/product/ContractList';
|
||||
|
||||
import CommissionRateList from '@/pages/rule/CommissionRateList';
|
||||
import PayoutRuleList from '@/pages/rule/PayoutRuleList';
|
||||
import OverrideRuleList from '@/pages/rule/OverrideRuleList';
|
||||
import ChargebackRuleList from '@/pages/rule/ChargebackRuleList';
|
||||
import ExceptionCodeList from '@/pages/rule/ExceptionCodeList';
|
||||
import CommissionRateList from '@/pages/rule/CommissionRateList';
|
||||
import PayoutRuleList from '@/pages/rule/PayoutRuleList';
|
||||
import OverrideRuleList from '@/pages/rule/OverrideRuleList';
|
||||
import ChargebackRuleList from '@/pages/rule/ChargebackRuleList';
|
||||
import ExceptionCodeList from '@/pages/rule/ExceptionCodeList';
|
||||
import RegulatoryLimitList from '@/pages/rule/RegulatoryLimitList';
|
||||
import InstallmentRatioList from '@/pages/rule/InstallmentRatioList';
|
||||
import ChargebackGradeList from '@/pages/rule/ChargebackGradeList';
|
||||
|
||||
import ReceiveData from '@/pages/receive/ReceiveData';
|
||||
import ReceiveMapping from '@/pages/receive/ReceiveMapping';
|
||||
@@ -49,9 +52,15 @@ import RecruitLedger from '@/pages/ledger/RecruitLedger';
|
||||
import MaintainLedger from '@/pages/ledger/MaintainLedger';
|
||||
import ExceptionLedger from '@/pages/ledger/ExceptionLedger';
|
||||
|
||||
import SettleList from '@/pages/settle/SettleList';
|
||||
import BatchRun from '@/pages/settle/BatchRun';
|
||||
import PaymentList from '@/pages/settle/PaymentList';
|
||||
import SettleList from '@/pages/settle/SettleList';
|
||||
import BatchRun from '@/pages/settle/BatchRun';
|
||||
import PaymentList from '@/pages/settle/PaymentList';
|
||||
import DeductionList from '@/pages/settle/DeductionList';
|
||||
import PeriodClose from '@/pages/settle/PeriodClose';
|
||||
import SettleCorrection from '@/pages/settle/SettleCorrection';
|
||||
import TaxInvoiceList from '@/pages/settle/TaxInvoiceList';
|
||||
import CommissionDispute from '@/pages/settle/CommissionDispute';
|
||||
import IncentiveProgram from '@/pages/settle/IncentiveProgram';
|
||||
|
||||
import PerformanceReport from '@/pages/report/PerformanceReport';
|
||||
import OrgReport from '@/pages/report/OrgReport';
|
||||
@@ -97,11 +106,14 @@ export default function App() {
|
||||
<Route path="contracts" element={<ContractList />} />
|
||||
|
||||
{/* 수수료 규정 */}
|
||||
<Route path="rules/commission" element={<CommissionRateList />} />
|
||||
<Route path="rules/payout" element={<PayoutRuleList />} />
|
||||
<Route path="rules/override" element={<OverrideRuleList />} />
|
||||
<Route path="rules/chargeback" element={<ChargebackRuleList />} />
|
||||
<Route path="rules/exceptions" element={<ExceptionCodeList />} />
|
||||
<Route path="rules/commission" element={<CommissionRateList />} />
|
||||
<Route path="rules/payout" element={<PayoutRuleList />} />
|
||||
<Route path="rules/override" element={<OverrideRuleList />} />
|
||||
<Route path="rules/chargeback" element={<ChargebackRuleList />} />
|
||||
<Route path="rules/exceptions" element={<ExceptionCodeList />} />
|
||||
<Route path="rules/regulatory" element={<RegulatoryLimitList />} />
|
||||
<Route path="rules/installment-ratios" element={<InstallmentRatioList />} />
|
||||
<Route path="rules/chargeback-grades" element={<ChargebackGradeList />} />
|
||||
|
||||
{/* 데이터 수신 */}
|
||||
<Route path="receive/data" element={<ReceiveData />} />
|
||||
@@ -113,9 +125,15 @@ export default function App() {
|
||||
<Route path="ledger/exception" element={<ExceptionLedger />} />
|
||||
|
||||
{/* 정산 / 지급 */}
|
||||
<Route path="settle" element={<SettleList />} />
|
||||
<Route path="settle/batch" element={<BatchRun />} />
|
||||
<Route path="payments" element={<PaymentList />} />
|
||||
<Route path="settle" element={<SettleList />} />
|
||||
<Route path="settle/batch" element={<BatchRun />} />
|
||||
<Route path="settle/deductions" element={<DeductionList />} />
|
||||
<Route path="settle/period-close" element={<PeriodClose />} />
|
||||
<Route path="settle/corrections" element={<SettleCorrection />} />
|
||||
<Route path="settle/tax-invoices" element={<TaxInvoiceList />} />
|
||||
<Route path="settle/disputes" element={<CommissionDispute />} />
|
||||
<Route path="settle/incentives" element={<IncentiveProgram />} />
|
||||
<Route path="payments" element={<PaymentList />} />
|
||||
|
||||
{/* 리포트 */}
|
||||
<Route path="report/performance" element={<PerformanceReport />} />
|
||||
|
||||
Reference in New Issue
Block a user