mirror of https://github.com/fantasticit/think.git
close #11
This commit is contained in:
parent
088b7f0357
commit
c8ee4974ef
|
@ -300,9 +300,13 @@ export class DocumentService {
|
||||||
userId: user.id,
|
userId: user.id,
|
||||||
});
|
});
|
||||||
|
|
||||||
const query = this.documentRepo.createQueryBuilder('documemt');
|
const [docs] = await this.documentRepo.findAndCount({ createUserId: user.id });
|
||||||
query.select('MAX(documemt.index)', 'maxIndex');
|
const maxIndex = docs.length
|
||||||
const { maxIndex } = await query.getRawOne();
|
? Math.max.apply(
|
||||||
|
[],
|
||||||
|
docs.map((doc) => +doc.index)
|
||||||
|
)
|
||||||
|
: -1;
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
...dto,
|
...dto,
|
||||||
|
|
Loading…
Reference in New Issue