세금계산서 리스트 및 상세

This commit is contained in:
focp212@naver.com
2025-09-25 14:01:03 +09:00
parent ba0b119e39
commit d5c12f4b69
34 changed files with 518 additions and 586 deletions

View File

@@ -3,11 +3,13 @@ import {
API_URL_KEY,
} from './../constants/url';
export const API_URL_TAX = {
invoiceList: () => {
export const API_URL_VAT_RETURN = {
vatReturnList: () => {
// POST: 세금계산서 목록 조회
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/vat-return/list`;
},
invoiceDetail: () => {
vatReturnDetail: () => {
// POST: 세금계산서 상세 조회
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/vat-return/detail`;
},
};