platform/plugins/bitrix/src/hr.ts

66 lines
2.2 KiB
TypeScript
Raw Normal View History

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'
import recruit, { Applicant, Vacancy } from '@hcengineering/recruit'
import task, { ProjectType, makeRank } from '@hcengineering/task'
export async function createVacancy (
rawClient: Client,
name: string,
2023-10-27 05:22:43 +00:00
typeId: Ref<ProjectType>,
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}`)
}
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,
private: false,
archived: false,
company,
number: (incResult as any).object.sequence,
members: [],
2023-10-27 05:22:43 +00:00
type: typeId
})
return id
}
export async function createApplication (
client: TxOperations,
2023-10-27 05:22:43 +00:00
selectedState: Status,
_space: Ref<Vacancy>,
doc: Doc,
data: Data<Applicant>
): 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', {
...data,
2023-10-27 05:22:43 +00:00
status: selectedState._id,
number: (incResult as any).object.sequence,
rank: makeRank(lastOne?.rank, undefined)
})
}