튜토리얼
.NET Core 개발환경에서 팝빌 SDK를 추가하여 전자명세서 즉시 발행 (RegistIssue) 함수를 구현하는 예시입니다.
1. POPBiLL SDK 추가
[프로젝트 > NuGet 패키지 관리] 메뉴에서 popbill을 검색하여 최신 버전의 패키지를 설치합니다.
2. POPBiLL SDK 설정
① 프로젝트의 Startup.cs 파일에 koreanName 서비스 인스턴스 클래스를 생성하고, Startup클래스의 ConfigureServices() 함수에 의존성 주입 패턴으로 Singleton 서비스 인스턴스를 추가합니다.
② koreanName 서비스명으로 컨트롤러를 생성하고 생성한 컨트롤러의 생성자 함수에서 koreanName 인스턴스 객체를 할당합니다.
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Popbill.moduleName;
public class serviceNameInstance
{
// 링크아이디
private string linkID = "TESTER";
// 비밀키
private string secretKey = "SwWxqU+0TErBXy/9TVjIPEnI0VTUMMSQZtJf3Ed8q3I=";
// koreanName 서비스 객체 선언
public serviceNameService classNameService;
public serviceNameInstance()
{
// koreanName 서비스 객체 초기화
statementService = new Statement(linkID, seretKey);
// 연동환경 설정, true-테스트, false-운영(Production), (기본값: false)
statementService.IsTest = true;
// 인증토큰 IP 검증 설정, ture-사용, false-미사용, (기본값: true)
statementService.IPRestrictOnOff = true;
// 통신 고정 IP, true-사용, false-미사용, (기본값: false)
statementService.UseStaticIP = false;
// 로컬시스템 시간 사용여부, true-사용, false-미사용, (기본값: false)
statementService.UseLocalTimeYN = true
}
}
namespace serviceNameExample
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
services.AddSingleton<serviceNameInstance>();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
}
app.UseStaticFiles();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=serviceName}/{action=Index}");
});
}
}
}
3. RegistIssue 기능 구현
전자명세서 서비스명으로 생성한 컨트롤러의 생성자 함수에 인스턴스 객체를 할당하고, 전자명세서 즉시 발행 함수(RegistIssue) 호출 코드를 추가합니다.
// Controllers/StatementController.cs
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using Popbill;
using Popbill.Statement;
namespace StatementExample.Controllers
{
public class StatementController : Controller
{
private readonly StatementService _statementService;
public StatementController(StatementInstance STMinstance)
{
//전자명세서 서비스 객체 주입
_statementService = STMinstance.statementService;
}
public IActionResult RegistIssue()
{
//팝빌 연동회원 사업자번호 (하이픈 '-' 제외 10자리)
string corpNum = "1234567890";
//팝빌 연동회원 아이디
string userID = "testkorea";
// 전자명세서 정보 객체
Statement statement = new Statement();
// [필수], 기재상 작성일자 날짜형식(yyyyMMdd)
statement.writeDate = "20220101";
// [필수], {영수, 청구, 없음} 중 기재
statement.purposeType = "영수";
// [필수], 과세형태, {과세, 영세, 면세} 중 기재
statement.taxType = "과세";
// 맞춤양식코드, 기본값을 공백('')으로 처리하면 기본양식으로 처리.
statement.formCode = "";
// [필수] 명세서 코드 - 121(거래명세서), 122(청구서), 123(견적서), 124(발주서), 125(입금표), 126(영수증)
statement.itemCode = 121;
// [필수] 문서번호, 1~24자리 숫자, 영문, '-', '_' 조합으로 사업자별로 중복되지 않도록 구성
statement.mgtKey = "20220101-021";
/**************************************************************************
* 발신자 정보 *
**************************************************************************/
// [필수] 발신자 사업자번호
statement.senderCorpNum = corpNum;
// 종사업장 식별번호. 필요시 기재. 형식은 숫자 4자리.
statement.senderTaxRegID = "";
// 발신자 상호
statement.senderCorpName = "발신자 상호";
// 발신자 대표자성명
statement.senderCEOName = "발신자 대표자 성명";
// 발신자 주소
statement.senderAddr = "발신자 주소";
// 발신자 종목
statement.senderBizClass = "발신자 종목";
// 발신자 업태
statement.senderBizType = "발신자 업태";
// 발신자 종목
statement.senderBizClass = "발신자 종목";
// 발신자 성명
statement.senderContactName = "발신자 담당자명";
// 발신자 부서명
statement.senderDeptName = "발신자 부서명";
// 발신자 연락처
statement.senderTEL = "070-7070-0707";
// 발신자 휴대전화
statement.senderHP = "010-000-2222";
// 발신자 이메일주소
statement.senderEmail = "test@test.com";
// 발신자 팩스번호
statement.senderFAX = "02-111-2222";
/**************************************************************************
* 수신자 정보 *
**************************************************************************/
// 수신자 사업자번호
statement.receiverCorpNum = "8888888888";
// [필수] 수신자 상호
statement.receiverCorpName = "수신자 상호";
// 수신자 대표자성명
statement.receiverCEOName = "수신자 대표자 성명";
// 수신자 주소
statement.receiverAddr = "수신자 주소";
// 수신자 종목
statement.receiverBizClass = "수신자 종목";
// 수신자 업태
statement.receiverBizType = "수신자 업태";
// 수신자 종목
statement.receiverBizClass = "수신자 종목";
// [필수] 수신자 성명
statement.receiverContactName = "수신자 담당자명";
// 수신자 부서명
statement.receiverDeptName = "수신자 부서명";
// 수신자 연락처
statement.receiverTEL = "070-7070-0707";
// 수신자 휴대전화
statement.receiverHP = "010-000-2222";
// 수신자 이메일주소
// 팝빌 개발환경에서 테스트하는 경우에도 안내 메일이 전송되므로,
// 실제 거래처의 메일주소가 기재되지 않도록 주의
statement.receiverEmail = "test@test.com";
// 수신자 팩스번호
statement.receiverFAX = "02-111-2222";
/**************************************************************************
* 전자명세서 기재항목 *
**************************************************************************/
// [필수] 공급가액 합계
statement.supplyCostTotal = "200000";
// [필수] 세액 합계
statement.taxTotal = "20000";
// 합계금액
statement.totalAmount = "220000";
// 기재상 일련번호 항목
statement.serialNum = "123";
// 기재상 비고 항목
statement.remark1 = "비고1";
statement.remark2 = "비고2";
statement.remark3 = "비고3";
// 사업자등록증 첨부 여부
statement.businessLicenseYN = false;
// 통장사본 첨부 여부
statement.bankBookYN = false;
// 문자 자동전송 여부
statement.smssendYN = false;
// 상세항목(품목) 정보 객체
statement.detailList = new List<StatementDetail>();
StatementDetail detail = new StatementDetail();
detail.serialNum = 1; // 일련번호 1부터 순차기재
detail.purchaseDT = "20220101"; // 거래일자 작성형식 yyyyMMdd
detail.itemName = "품목명"; // 품목명
detail.spec = "규격"; // 규격
detail.qty = "1"; // 수량
detail.unitCost = "100000"; // 단가
detail.supplyCost = "100000"; // 공급가액
detail.tax = "10000"; // 세액
detail.remark = "품목비고"; // 비고
detail.spare1 = "spare1"; // 여분
detail.spare2 = "spare2";
detail.spare3 = "spare3";
detail.spare4 = "spare4";
detail.spare5 = "spare5";
statement.detailList.Add(detail);
detail = new StatementDetail();
detail.serialNum = 2; // 일련번호 1부터 순차기재
detail.purchaseDT = "20220101"; // 거래일자 작성형식 yyyyMMdd
detail.itemName = "품목명"; // 품목명
detail.spec = "규격"; // 규격
detail.qty = "1"; // 수량
detail.unitCost = "100000"; // 단가
detail.supplyCost = "100000"; // 공급가액
detail.tax = "10000"; // 세액
detail.remark = "품목비고"; // 비고
detail.spare1 = "spare1"; // 여분
detail.spare2 = "spare2";
detail.spare3 = "spare3";
detail.spare4 = "spare4";
detail.spare5 = "spare5";
statement.detailList.Add(detail);
// 추가속성항목
statement.propertyBag = new propertyBag();
statement.propertyBag.Add("Balance", "15000"); // 전잔액
statement.propertyBag.Add("Deposit", "5000"); // 입금액
statement.propertyBag.Add("CBalance", "20000"); // 현잔액
// 즉시 발행
string memo = "즉시 발행 메모";
try
{
var response = _statementService.RegistIssue(corpNum, statement, memo, userID);
return View("Response", response);
}
catch (PopbillException pe)
{
return View("Exception", pe);
}
}
}
}
4. 결과 확인
함수 호출 반환 결과는 아래와 같습니다.
- 성공 : Response code 로 숫자 1 반환
- 실패 : PopbillException 으로 음의 정수 8자리 숫자값 오류코드와 오류메시지 반환 [오류코드]