automation and view updates

This commit is contained in:
Jason Jordan
2026-04-17 15:35:10 -04:00
parent 247a075c9c
commit 7ab1143db8
30 changed files with 124704 additions and 602 deletions
+23
View File
@@ -0,0 +1,23 @@
module Vhcs
class PlPlanGroupCode < VhcsRecord
self.table_name = 'PLPlanGroupCode'
alias_attribute :group_code, :GroupCode
alias_attribute :pl_plan_key, :PLPlanKey
alias_attribute :pl_cov_type_hdr_key, :PLCovTypeHdrKey
alias_attribute :group_code_desc, :GroupCodeDesc
def attributes
rails_like = {
group_code: self.group_code,
pl_plan_key: self.pl_plan_key,
pl_cov_type_hdr_key: self.pl_cov_type_hdr_key,
group_code_desc: self.group_code_desc,
}
super.merge(rails_like)
end
end
end