부가세참고
This commit is contained in:
@@ -82,4 +82,68 @@ export interface VatReturnDetailResponse {
|
||||
supplierBusinessRegistrationNumber?: string;
|
||||
supplierCompanyName?: string;
|
||||
supplierCeoName?: string;
|
||||
};
|
||||
export enum TaxType {
|
||||
|
||||
};
|
||||
export interface VatReturnReferenceRequestParams {
|
||||
mid: string;
|
||||
startMonth: string;
|
||||
endMonth: string;
|
||||
taxType: string,
|
||||
requestorName: string;
|
||||
contactNumber: string;
|
||||
email: string;
|
||||
};
|
||||
export interface VatReturnReferenceRequestResponse {
|
||||
requestId: number;
|
||||
mid: string;
|
||||
requestPeriod: string;
|
||||
taxTypeDescription: string;
|
||||
requestDateTime: string;
|
||||
requestStatus: string;
|
||||
requestorName: string;
|
||||
contactNumber: string;
|
||||
email: string;
|
||||
};
|
||||
|
||||
export interface VatReturnTaxInvoiceParams {
|
||||
taxInvoiceNumber: string;
|
||||
}
|
||||
export interface VatReturnTaxInvoiceResponse {
|
||||
supplierInfo: SupplierInfo;
|
||||
recipientInfo: RecipientInfo;
|
||||
issueDate: string;
|
||||
supplyAmount: number;
|
||||
taxAmount: number;
|
||||
totalAmount: number;
|
||||
transactionDetails: TransactionDetails;
|
||||
};
|
||||
|
||||
export interface SupplierInfo {
|
||||
businessRegistrationNumber: string;
|
||||
companyName: string;
|
||||
ceoName: string;
|
||||
address: string;
|
||||
businessType: string;
|
||||
businessItem: string;
|
||||
};
|
||||
export interface RecipientInfo {
|
||||
businessRegistrationNumber: string;
|
||||
companyName: string;
|
||||
ceoName: string;
|
||||
address: string;
|
||||
businessType: string;
|
||||
businessItem: string;
|
||||
email: string;
|
||||
};
|
||||
export interface TransactionDetails {
|
||||
transactionPeriod: string;
|
||||
itemName: string;
|
||||
specification: string;
|
||||
quantity: number;
|
||||
unitPrice: number;
|
||||
supplyAmount: number;
|
||||
taxAmount: number;
|
||||
remarks: string;
|
||||
};
|
||||
Reference in New Issue
Block a user