refs #6184 saveCmr #1788
|
@ -34,19 +34,13 @@ module.exports = Self => {
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.generateCmrPdf = async function(ctx, id, options) {
|
Self.generateCmrPdf = async function(ctx, id, options) {
|
||||||
const models = Self.app.models;
|
|
||||||
const myOptions = {};
|
const myOptions = {};
|
||||||
|
|
||||||
if (typeof options == 'object')
|
if (typeof options == 'object')
|
||||||
Object.assign(myOptions, options);
|
Object.assign(myOptions, options);
|
||||||
|
|
||||||
const zipConfig = await models.ZipConfig.findOne(null, myOptions);
|
|
||||||
let totalSize = 0;
|
|
||||||
|
|
||||||
const baseUrl = (await Self.app.models.Url.getUrl()).replace('#!', 'api');
|
const baseUrl = (await Self.app.models.Url.getUrl()).replace('#!', 'api');
|
||||||
|
|
||||||
if (zipConfig && totalSize > zipConfig.maxSize) throw new UserError('Files are too large');
|
|
||||||
|
|
||||||
const response = await axios.get(
|
const response = await axios.get(
|
||||||
`${baseUrl}Routes/${id}/cmr`, {
|
`${baseUrl}Routes/${id}/cmr`, {
|
||||||
...myOptions,
|
...myOptions,
|
||||||
|
|
Loading…
Reference in New Issue