|
|
@@ -265,7 +265,7 @@ export function updateOtherConfig(data) {
|
|
|
*/
|
|
|
export function fetchCurrenciesList() {
|
|
|
return request({
|
|
|
- url: '/v1/currency/currencies',
|
|
|
+ url: '/v1/config/currencies',
|
|
|
method: 'get'
|
|
|
})
|
|
|
}
|
|
|
@@ -276,7 +276,7 @@ export function fetchCurrenciesList() {
|
|
|
*/
|
|
|
export function fetchCurrencyConversionsList() {
|
|
|
return request({
|
|
|
- url: '/v1/currency/currencies-conversions',
|
|
|
+ url: '/v1/config/currencies',
|
|
|
method: 'get'
|
|
|
})
|
|
|
}
|
|
|
@@ -287,7 +287,7 @@ export function fetchCurrencyConversionsList() {
|
|
|
*/
|
|
|
export function setCurrencyConversions(data) {
|
|
|
return request({
|
|
|
- url: '/v1/currency/set-currencies-conversions',
|
|
|
+ url: '/v1/config/set-currencies-conversions',
|
|
|
method: 'post',
|
|
|
data
|
|
|
})
|
|
|
@@ -299,7 +299,7 @@ export function setCurrencyConversions(data) {
|
|
|
*/
|
|
|
export function fetchTransportationList() {
|
|
|
return request({
|
|
|
- url: '/v1/transportation/transportation',
|
|
|
+ url: '/v1/config/transportation',
|
|
|
method: 'get'
|
|
|
})
|
|
|
}
|
|
|
@@ -310,7 +310,7 @@ export function fetchTransportationList() {
|
|
|
*/
|
|
|
export function setTransportation(data) {
|
|
|
return request({
|
|
|
- url: '/v1/transportation/set-transportation',
|
|
|
+ url: '/v1/config/set-transportation',
|
|
|
method: 'post',
|
|
|
data
|
|
|
})
|