/* * 1건의 취소현금영수증을 [임시저장]합니다. * - [임시저장] 상태의 현금영수증은 발행(Issue API)을 호출해야만 국세청에 전송됩니다. */ public IActionResult RevokeRegister() { // 현금영수증 문서번호, 사업자별로 중복되지 않도록 문서번호 할당 // 1~24자리 영문,숫자,'-','_' 조합 구성 string mgtKey = "20211201-101"; // 원본 현금영수증 국세청승인번호 string orgConfirmNum = "158814020"; // 원본현금영수증 거래일자 (날짜형식yyyyMMdd) string orgTradeDate = "20211201"; try { var response = _cashbillService.RevokeRegister(corpNum, mgtKey, orgConfirmNum, orgTradeDate); return(View("Response", response)); } catch (PopbillException pe) { return(View("Exception", pe)); } }