- fixed item creation, which was broken by last update
This commit is contained in:
parent
185d563ac0
commit
57513da827
@ -66,13 +66,16 @@ function returnAllModelFieldData() {
|
||||
* @param {string} [relation_name='id']
|
||||
* @returns {undefined || object} undefined or prisma connect object
|
||||
*/
|
||||
export function parseIntRelation(data: string, relation_name: string = 'id') {
|
||||
export function parseIntRelation(data: string, relation_name: string = 'id', doNotDisconnect: boolean = false) {
|
||||
// This function is perfect. If data is not a valid number, return `undefined`
|
||||
// If it is a valid number return `{connect: {relation_name: yourNumber}}}`
|
||||
// This can be used by prisma to connect relations
|
||||
|
||||
// If the incoming data is null or empty, return a prisma disconnect object instead of a connect one
|
||||
if (data === null || data === '') {
|
||||
if (doNotDisconnect) {
|
||||
return undefined;
|
||||
}
|
||||
return JSON.parse(`{
|
||||
"disconnect": true
|
||||
}`);
|
||||
|
@ -102,9 +102,9 @@ function post(req: Request, res: Response) {
|
||||
comment: req.body.comment,
|
||||
status: req.body.status, // Only enum(itemStatus) values are valid
|
||||
// Relations
|
||||
contactInfo: parseIntRelation(req.body.contactInfoId),
|
||||
category: parseIntRelation(req.body.categoryId),
|
||||
storageLocation: parseIntRelation(req.body.storageLocationId),
|
||||
contactInfo: parseIntRelation(req.body.contactInfoId, undefined, true),
|
||||
category: parseIntRelation(req.body.categoryId, undefined, true),
|
||||
storageLocation: parseIntRelation(req.body.storageLocationId, undefined, true),
|
||||
|
||||
manufacturer: req.body.manufacturer,
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user