예제 #1
0
 /*
  * 현금영수증 매입/매출 내역 수집요청에 대한 상태 목록을 확인합니다.
  * - 수집 요청 후 1시간이 경과한 수집 요청건은 상태정보가 반환되지 않습니다.
  * - https://docs.popbill.com/htcashbill/dotnetcore/api#ListActiveJob
  */
 public IActionResult ListActiveJob()
 {
     try
     {
         var response = _htCashbillService.ListActiveJob(corpNum);
         return(View("ListActiveJob", response));
     }
     catch (PopbillException pe)
     {
         return(View("Exception", pe));
     }
 }