OWL ITS + 탐지시스템(인터넷 진흥원)
jhjang
2021-10-14 3052936fed9166521b0557a36df83eb11a5e51ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
 * Created by wisestone on 2018-02-13.
 */
'use strict';
 
define(['app'], function (app) {
    app.factory("Payment", ['$http', '$log', function ($http, $log) {
        return {
            paymentOneTime : function (parameter) {
                return $http.post("payment/paymentOneTime", parameter).then(function (response) {
                    $log.debug("정기 결재 결과 : ", response);
                    return response;
                });
            },
            immediateAddUser : function (parameter) {
                return $http.post("payment/immediateAddUser", parameter).then(function (response) {
                    $log.debug("추가 결재 결과 : ", response);
                    return response;
                });
            },
            cancelNextPayment : function (parameter) {
                return $http.post("payment/cancelNextPayment", parameter).then(function (response) {
                    $log.debug("정기 결재 취소 결과 : ", response);
                    return response;
                });
            },
            detail : function (parameter) {
                return $http.post("payment/detail", parameter).then(function (response) {
                    $log.debug("정기 결재 정보 결과 : ", response);
                    return response;
                });
            },
            modify : function (parameter) {
                return $http.post("payment/modify", parameter).then(function (response) {
                    $log.debug("정기 결재 변경 결과 : ", response);
                    return response;
                });
            }
        }
    }
    ])
});