7f543937fb
- currency.js: 新增getBfiExchangeRate接口调用 - pre-settlement-editor.vue: - 选择合同后同步结算币种并自动查询当天BFI汇率 - 汇率日期变更时自动查询BFI汇率并回填结算汇率 - 新增时自动设置当天日期并查询汇率 - formal-settlement-editor.vue: - 选择合同后同步结算币种并自动查询当天BFI汇率 - 汇率日期变更时自动查询BFI汇率并回填结算汇率 - 新增时自动查询当天BFI汇率
72 lines
1.2 KiB
JavaScript
72 lines
1.2 KiB
JavaScript
import request from '@/axios';
|
|
|
|
export const getList = (current, size, params) => {
|
|
return request({
|
|
url: '/blade-system/currency/list',
|
|
method: 'get',
|
|
params: {
|
|
...params,
|
|
current,
|
|
size,
|
|
},
|
|
});
|
|
};
|
|
|
|
export const getDetail = id => {
|
|
return request({
|
|
url: '/blade-system/currency/detail',
|
|
method: 'get',
|
|
params: {
|
|
id,
|
|
},
|
|
});
|
|
};
|
|
|
|
export const getRate = params => {
|
|
return request({
|
|
url: '/blade-system/currency/rate',
|
|
method: 'get',
|
|
params,
|
|
});
|
|
};
|
|
|
|
export const remove = ids => {
|
|
return request({
|
|
url: '/blade-system/currency/remove',
|
|
method: 'post',
|
|
params: {
|
|
ids,
|
|
},
|
|
});
|
|
};
|
|
|
|
export const submit = row => {
|
|
return request({
|
|
url: '/blade-system/currency/submit',
|
|
method: 'post',
|
|
data: row,
|
|
});
|
|
};
|
|
|
|
export const changeStatus = (id, status) => {
|
|
return request({
|
|
url: '/blade-system/currency/status',
|
|
method: 'post',
|
|
params: {
|
|
id,
|
|
status,
|
|
},
|
|
});
|
|
};
|
|
|
|
export const getBfiExchangeRate = (currencyCode, effectdate) => {
|
|
return request({
|
|
url: '/blade-transport/bfi/exchange-rate',
|
|
method: 'get',
|
|
params: {
|
|
currencyCode,
|
|
effectdate,
|
|
},
|
|
});
|
|
};
|