@nger/fk-upload 1.0.213 → 1.0.216
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,4 @@
|
|
1
|
+
import { FkJiQun } from "./fk-jiqun";
|
1
2
|
import { FkW7Account } from "./w7-account";
|
2
3
|
export declare class FkCheckTask {
|
3
4
|
id: number;
|
@@ -9,5 +10,7 @@ export declare class FkCheckTask {
|
|
9
10
|
time: string;
|
10
11
|
w7AccountId: number;
|
11
12
|
w7Account: FkW7Account;
|
13
|
+
jiqunId: number;
|
14
|
+
jiqun: FkJiQun;
|
12
15
|
deleteDate: Date;
|
13
16
|
}
|
@@ -7,6 +7,7 @@ const rest_1 = require("@nger/rest");
|
|
7
7
|
const typeorm_1 = require("@nger/typeorm");
|
8
8
|
const typeorm_2 = require("typeorm");
|
9
9
|
const check_service_1 = require("../services/check.service");
|
10
|
+
const fk_jiqun_1 = require("./fk-jiqun");
|
10
11
|
const w7_account_1 = require("./w7-account");
|
11
12
|
let FkCheckTask = FkCheckTask_1 = class FkCheckTask {
|
12
13
|
id;
|
@@ -18,6 +19,8 @@ let FkCheckTask = FkCheckTask_1 = class FkCheckTask {
|
|
18
19
|
time;
|
19
20
|
w7AccountId;
|
20
21
|
w7Account;
|
22
|
+
jiqunId;
|
23
|
+
jiqun;
|
21
24
|
deleteDate;
|
22
25
|
};
|
23
26
|
tslib_1.__decorate([
|
@@ -160,6 +163,41 @@ tslib_1.__decorate([
|
|
160
163
|
}),
|
161
164
|
tslib_1.__metadata("design:type", w7_account_1.FkW7Account)
|
162
165
|
], FkCheckTask.prototype, "w7Account", void 0);
|
166
|
+
tslib_1.__decorate([
|
167
|
+
(0, rest_1.Widget)({
|
168
|
+
title: `执行者`,
|
169
|
+
path: 'jiqun.clientId',
|
170
|
+
width: '180px',
|
171
|
+
span: 24,
|
172
|
+
required: true,
|
173
|
+
widget: {
|
174
|
+
type: 'selector',
|
175
|
+
from: 'fk_ji_qun',
|
176
|
+
config: {
|
177
|
+
label: 'clientId',
|
178
|
+
value: 'id'
|
179
|
+
}
|
180
|
+
}
|
181
|
+
}),
|
182
|
+
(0, typeorm_2.Column)({
|
183
|
+
name: 'jiqun_id',
|
184
|
+
nullable: true
|
185
|
+
}),
|
186
|
+
tslib_1.__metadata("design:type", Number)
|
187
|
+
], FkCheckTask.prototype, "jiqunId", void 0);
|
188
|
+
tslib_1.__decorate([
|
189
|
+
(0, rest_1.Widget)({
|
190
|
+
hideInAdd: true,
|
191
|
+
hideInEdit: true,
|
192
|
+
hideInSearch: true,
|
193
|
+
hideInTable: true
|
194
|
+
}),
|
195
|
+
(0, typeorm_2.ManyToOne)(() => fk_jiqun_1.FkJiQun),
|
196
|
+
(0, typeorm_2.JoinColumn)({
|
197
|
+
name: 'jiqun_id'
|
198
|
+
}),
|
199
|
+
tslib_1.__metadata("design:type", fk_jiqun_1.FkJiQun)
|
200
|
+
], FkCheckTask.prototype, "jiqun", void 0);
|
163
201
|
tslib_1.__decorate([
|
164
202
|
(0, rest_1.Widget)({
|
165
203
|
hideInAdd: true,
|
package/dist/main.js
CHANGED
@@ -7,25 +7,13 @@ require("reflect-metadata");
|
|
7
7
|
require('dotenv').config();
|
8
8
|
const main_1 = require("@nger/main");
|
9
9
|
const core_1 = require("@nger/core");
|
10
|
-
const sirv_1 = require("@nger/sirv");
|
11
|
-
const rest_1 = require("@nger/rest");
|
12
|
-
const upload_1 = require("@nger/upload");
|
13
|
-
const rabbitmq_1 = require("@nger/rabbitmq");
|
14
10
|
const fk_upload_module_1 = require("./fk-upload.module");
|
15
|
-
const menu_1 = require("@nger/menu");
|
16
|
-
const setting_1 = require("@nger/setting");
|
17
11
|
let AppModule = class AppModule {
|
18
12
|
};
|
19
13
|
AppModule = tslib_1.__decorate([
|
20
14
|
(0, core_1.Module)({
|
21
15
|
imports: [
|
22
|
-
|
23
|
-
sirv_1.SirvModule.forRoot(),
|
24
|
-
rest_1.RestModule,
|
25
|
-
upload_1.UploadModule,
|
26
|
-
fk_upload_module_1.FkUploadModule,
|
27
|
-
menu_1.MenuModule,
|
28
|
-
setting_1.SettingModule
|
16
|
+
fk_upload_module_1.FkUploadModule
|
29
17
|
]
|
30
18
|
})
|
31
19
|
], AppModule);
|
@@ -109,9 +109,8 @@ class DownloadTask extends rabbitmq_1.Task {
|
|
109
109
|
const headers = resp.headers;
|
110
110
|
total = Number(headers["content-length"]);
|
111
111
|
if (total > 1024 * 1024 * 1024) {
|
112
|
-
sub.error(new Error(`文件超出1G`));
|
113
|
-
await _defer;
|
114
112
|
await db.manager.update(download_task_1.FkDownloadTask, download.id, { isBigFile: true, desc: '文件超出1G', status: `6` });
|
113
|
+
sub.error(new Error(`文件超出1G`));
|
115
114
|
return;
|
116
115
|
}
|
117
116
|
const useSize = download.w7Account.fkAccount.usedSize + total;
|