2022-02-13 23:39:27 +08:00
|
|
|
// Copyright 2022 The Casdoor Authors. All Rights Reserved.
|
2022-02-05 01:18:13 +08:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
import * as Setting from "../Setting";
|
|
|
|
|
2023-06-12 00:31:49 +08:00
|
|
|
export function getPayments(owner, organization, page = "", pageSize = "", field = "", value = "", sortField = "", sortOrder = "") {
|
|
|
|
return fetch(`${Setting.ServerUrl}/api/get-payments?owner=${owner}&organization=${organization}&p=${page}&pageSize=${pageSize}&field=${field}&value=${value}&sortField=${sortField}&sortOrder=${sortOrder}`, {
|
2022-02-05 01:18:13 +08:00
|
|
|
method: "GET",
|
2022-08-06 23:54:56 +08:00
|
|
|
credentials: "include",
|
2022-10-23 15:16:24 +08:00
|
|
|
headers: {
|
|
|
|
"Accept-Language": Setting.getAcceptLanguage(),
|
|
|
|
},
|
2022-02-05 01:18:13 +08:00
|
|
|
}).then(res => res.json());
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getPayment(owner, name) {
|
|
|
|
return fetch(`${Setting.ServerUrl}/api/get-payment?id=${owner}/${encodeURIComponent(name)}`, {
|
|
|
|
method: "GET",
|
2022-08-06 23:54:56 +08:00
|
|
|
credentials: "include",
|
2022-10-23 15:16:24 +08:00
|
|
|
headers: {
|
|
|
|
"Accept-Language": Setting.getAcceptLanguage(),
|
|
|
|
},
|
2022-02-05 01:18:13 +08:00
|
|
|
}).then(res => res.json());
|
|
|
|
}
|
|
|
|
|
|
|
|
export function updatePayment(owner, name, payment) {
|
2022-08-08 23:35:24 +08:00
|
|
|
const newPayment = Setting.deepCopy(payment);
|
2022-02-05 01:18:13 +08:00
|
|
|
return fetch(`${Setting.ServerUrl}/api/update-payment?id=${owner}/${encodeURIComponent(name)}`, {
|
2022-07-10 15:45:55 +08:00
|
|
|
method: "POST",
|
|
|
|
credentials: "include",
|
2022-02-05 01:18:13 +08:00
|
|
|
body: JSON.stringify(newPayment),
|
2022-10-23 15:16:24 +08:00
|
|
|
headers: {
|
|
|
|
"Accept-Language": Setting.getAcceptLanguage(),
|
|
|
|
},
|
2022-02-05 01:18:13 +08:00
|
|
|
}).then(res => res.json());
|
|
|
|
}
|
|
|
|
|
|
|
|
export function addPayment(payment) {
|
2022-08-08 23:35:24 +08:00
|
|
|
const newPayment = Setting.deepCopy(payment);
|
2022-02-05 01:18:13 +08:00
|
|
|
return fetch(`${Setting.ServerUrl}/api/add-payment`, {
|
2022-07-10 15:45:55 +08:00
|
|
|
method: "POST",
|
|
|
|
credentials: "include",
|
2022-02-05 01:18:13 +08:00
|
|
|
body: JSON.stringify(newPayment),
|
2022-10-23 15:16:24 +08:00
|
|
|
headers: {
|
|
|
|
"Accept-Language": Setting.getAcceptLanguage(),
|
|
|
|
},
|
2022-02-05 01:18:13 +08:00
|
|
|
}).then(res => res.json());
|
|
|
|
}
|
|
|
|
|
|
|
|
export function deletePayment(payment) {
|
2022-08-08 23:35:24 +08:00
|
|
|
const newPayment = Setting.deepCopy(payment);
|
2022-02-05 01:18:13 +08:00
|
|
|
return fetch(`${Setting.ServerUrl}/api/delete-payment`, {
|
2022-07-10 15:45:55 +08:00
|
|
|
method: "POST",
|
|
|
|
credentials: "include",
|
2022-02-05 01:18:13 +08:00
|
|
|
body: JSON.stringify(newPayment),
|
2022-10-23 15:16:24 +08:00
|
|
|
headers: {
|
|
|
|
"Accept-Language": Setting.getAcceptLanguage(),
|
|
|
|
},
|
2022-02-05 01:18:13 +08:00
|
|
|
}).then(res => res.json());
|
|
|
|
}
|
2022-04-27 00:24:48 +08:00
|
|
|
|
|
|
|
export function invoicePayment(owner, name) {
|
|
|
|
return fetch(`${Setting.ServerUrl}/api/invoice-payment?id=${owner}/${encodeURIComponent(name)}`, {
|
|
|
|
method: "POST",
|
2022-08-06 23:54:56 +08:00
|
|
|
credentials: "include",
|
2022-10-23 15:16:24 +08:00
|
|
|
headers: {
|
|
|
|
"Accept-Language": Setting.getAcceptLanguage(),
|
|
|
|
},
|
2022-04-27 00:24:48 +08:00
|
|
|
}).then(res => res.json());
|
|
|
|
}
|