2023-04-06 10:52:32 +00:00
|
|
|
import { Organization } from '@hcengineering/contact'
|
2023-10-27 05:22:43 +00:00
|
|
|
import core, { Account, Client, Data, Doc, Ref, SortingOrder, Status, TxOperations } from '@hcengineering/core'
|
2023-04-13 15:25:34 +00:00
|
|
|
import recruit, { Applicant, Vacancy } from '@hcengineering/recruit'
|
2024-03-05 05:38:10 +00:00
|
|
|
import task, { ProjectType, makeRank } from '@hcengineering/task'
|
2023-04-06 10:52:32 +00:00
|
|
|
|
|
|
|
export async function createVacancy (
|
|
|
|
rawClient: Client,
|
|
|
|
name: string,
|
2023-10-27 05:22:43 +00:00
|
|
|
typeId: Ref<ProjectType>,
|
2023-04-06 10:52:32 +00:00
|
|
|
account: Ref<Account>,
|
|
|
|
company?: Ref<Organization>
|
|
|
|
): Promise<Ref<Vacancy>> {
|
|
|
|
const client = new TxOperations(rawClient, account)
|
2023-10-27 05:22:43 +00:00
|
|
|
const type = await client.findOne(task.class.ProjectType, { _id: typeId })
|
|
|
|
if (type === undefined) {
|
|
|
|
throw Error(`Failed to find target project type: ${typeId}`)
|
2023-04-06 10:52:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const sequence = await client.findOne(task.class.Sequence, { attachedTo: recruit.class.Vacancy })
|
|
|
|
if (sequence === undefined) {
|
|
|
|
throw new Error('sequence object not found')
|
|
|
|
}
|
|
|
|
|
|
|
|
const incResult = await client.update(sequence, { $inc: { sequence: 1 } }, true)
|
|
|
|
|
|
|
|
const id = await client.createDoc(recruit.class.Vacancy, core.space.Space, {
|
|
|
|
name,
|
2023-10-27 05:22:43 +00:00
|
|
|
description: type.shortDescription ?? '',
|
|
|
|
fullDescription: type.description,
|
2023-04-06 10:52:32 +00:00
|
|
|
private: false,
|
|
|
|
archived: false,
|
|
|
|
company,
|
|
|
|
number: (incResult as any).object.sequence,
|
2023-09-04 17:06:34 +00:00
|
|
|
members: [],
|
2023-10-27 05:22:43 +00:00
|
|
|
type: typeId
|
2023-04-06 10:52:32 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return id
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function createApplication (
|
|
|
|
client: TxOperations,
|
2023-10-27 05:22:43 +00:00
|
|
|
selectedState: Status,
|
2023-04-06 10:52:32 +00:00
|
|
|
_space: Ref<Vacancy>,
|
2023-04-13 15:25:34 +00:00
|
|
|
doc: Doc,
|
|
|
|
data: Data<Applicant>
|
2023-04-06 10:52:32 +00:00
|
|
|
): Promise<void> {
|
|
|
|
if (selectedState === undefined) {
|
|
|
|
throw new Error(`Please select initial state:${_space}`)
|
|
|
|
}
|
|
|
|
const sequence = await client.findOne(task.class.Sequence, { attachedTo: recruit.class.Applicant })
|
|
|
|
if (sequence === undefined) {
|
|
|
|
throw new Error('sequence object not found')
|
|
|
|
}
|
|
|
|
|
|
|
|
const lastOne = await client.findOne(recruit.class.Applicant, {}, { sort: { rank: SortingOrder.Descending } })
|
|
|
|
const incResult = await client.update(sequence, { $inc: { sequence: 1 } }, true)
|
|
|
|
|
|
|
|
await client.addCollection(recruit.class.Applicant, _space, doc._id, recruit.mixin.Candidate, 'applications', {
|
2023-04-13 15:25:34 +00:00
|
|
|
...data,
|
2023-10-27 05:22:43 +00:00
|
|
|
status: selectedState._id,
|
2023-04-06 10:52:32 +00:00
|
|
|
number: (incResult as any).object.sequence,
|
2024-03-05 05:38:10 +00:00
|
|
|
rank: makeRank(lastOne?.rank, undefined)
|
2023-04-06 10:52:32 +00:00
|
|
|
})
|
|
|
|
}
|