Skip to content

Commit

Permalink
feat: 결제 연동 구현에 맞춘 dbml 수정 #29
Browse files Browse the repository at this point in the history
  • Loading branch information
bongsh0112 committed Sep 18, 2023
1 parent 4f792c9 commit e7060e8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 16 deletions.
23 changes: 7 additions & 16 deletions Api/src/main/resources/static/js/payment.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,11 @@ function requestKakaoPay() {
IMP.request_pay({
pg : "kakaopay.TC0ONETIME",
pay_method : 'card',
merchant_uid: "52300234", // 계속 바뀌게 설정해야함
merchant_uid: "09090902", // 계속 바뀌게 설정해야함. 결제에서 가장 중요한 정보 -> 이걸로 결제 하나하나를 식별함
name : '당근 10kg',
amount : 1004,
buyer_email : 'Iamport@chai.finance',
buyer_name : '아임포트 기술지원팀',
buyer_tel : '010-1234-5678',
buyer_addr : '서울특별시 강남구 삼성동',
buyer_postcode : '123-456'
buyer_name : '아임포트 기술지원팀'
}, function (rsp) { // callback
if (rsp.success) {
console.log(rsp);
Expand All @@ -28,15 +25,12 @@ function requestTossPay() {
IMP.request_pay({
pg : "tosspay.tosstest",
pay_method : 'card',
merchant_uid: "52300234", // 계속 바뀌게 설정해야함
merchant_uid: "1341",
name : '당근 10kg',
amount : 1004,
buyer_email : 'Iamport@chai.finance',
buyer_name : '아임포트 기술지원팀',
buyer_tel : '010-1234-5678',
buyer_addr : '서울특별시 강남구 삼성동',
buyer_postcode : '123-456'
}, function (rsp) { // callback
buyer_name : '아임포트 기술지원팀'
}, function (rsp) { // callback -> rsp에
if (rsp.success) {
console.log(rsp);
} else {
Expand All @@ -49,14 +43,11 @@ function requestKGInicis() {
IMP.request_pay({
pg : "html5_inicis.INIBillTst",
pay_method : 'card',
merchant_uid: "52300234", // 계속 바뀌게 설정해야함
merchant_uid: "57854673",
name : '당근 10kg',
amount : 1004,
buyer_email : 'Iamport@chai.finance',
buyer_name : '아임포트 기술지원팀',
buyer_tel : '010-1234-5678',
buyer_addr : '서울특별시 강남구 삼성동',
buyer_postcode : '123-456'
buyer_name : '아임포트 기술지원팀'
}, function (rsp) { // callback
if (rsp.success) {
console.log(rsp);
Expand Down
21 changes: 21 additions & 0 deletions Docs/Picasso.dbml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,27 @@ Table Board.article_amount_history [
created_at datetime [default: 'now()', note: '해당 금액 갱신 시간']
}

Table Payment.payment_info [
headercolor: #2563eb
note: '결제 히스토리'
] {
id long [pk, increment, note: '결제 정보 하나하나에 대한 ID']
payment_id long
pg varchar(20) [not null, note: '''
결제 플랫폼
ex) 카카오페이, 토스페이, 이니시스
'''
pay_method varchar(20) [not null, default: 'card', note: '결제 방법']
merchant_uid int [not null, unique, note: ''''
주문 번호 : 서버에서 고유하게 지정할 예정.
아마 게시물(경매 물품)의 id를 변형할듯함
''']
product_name varchar(100) [not null, note: '상품 이름']
amount int [not null, note: '결제 가격']
buyer_id [not null, ref > Auth.user.id, note: '구매자 ID'
buyer_email [not null, note: '구매자 Email']
buyer_name [not null, note: '구매자 이름']
}

//사용자 정보 관련 그룹
TableGroup User {
Expand Down

0 comments on commit e7060e8

Please sign in to comment.