37 lines
1023 B
Go
37 lines
1023 B
Go
/*
|
|
DESCRIPTION:
|
|
Any functions that are used internally by the use-case
|
|
*/
|
|
package kfr
|
|
|
|
import (
|
|
e "simrs-vx/internal/domain/main-entities/kfr"
|
|
|
|
erc "simrs-vx/internal/domain/references/common"
|
|
)
|
|
|
|
func setData[T *e.CreateDto | *e.UpdateDto](input T, data *e.KFR) {
|
|
var inputSrc *e.CreateDto
|
|
if inputT, ok := any(input).(*e.CreateDto); ok {
|
|
inputSrc = inputT
|
|
data.Status_Code = erc.DVCNew
|
|
} else {
|
|
inputTemp := any(input).(*e.UpdateDto)
|
|
inputSrc = &inputTemp.CreateDto
|
|
}
|
|
|
|
data.Encounter_Id = inputSrc.Encounter_Id
|
|
data.CreatedBy_Employee_Id = inputSrc.CreatedBy_Employee_Id
|
|
data.Type = inputSrc.Type
|
|
data.Subjective = inputSrc.Subjective
|
|
data.Objective = inputSrc.Objective
|
|
data.Assessment = inputSrc.Assessment
|
|
data.TreatmentGoals = inputSrc.TreatmentGoals
|
|
data.Education = inputSrc.Education
|
|
data.Action = inputSrc.Action
|
|
data.Frequency = inputSrc.Frequency
|
|
data.IntervalUnit_Code = inputSrc.IntervalUnit_Code
|
|
data.FollowUpType = inputSrc.FollowUpType
|
|
data.FollowUpNote = inputSrc.FollowUpNote
|
|
}
|