我有两个实体,预订和出院。
在 Bookings 中创建记录时,它会自动在 Discharge 中创建记录。Discharge 有一个附加字段,它是一个包含四个选项的下拉菜单。
I want a functionality where when any one of the values in drop down is chosen, the similar record in Bookings should shift from "Active" view to a default view which I have created by the name of "Processed" in Bookings.
我的想法是在 Bookings 中创建一个隐藏字段,当我从 Discharge 下拉菜单中选择一个选项时填充该字段,并且基于该字段,记录应该在 Bookings 中改变视图。但是如何填充隐藏字段?工作流程没有给我那个选项,或者我做错了什么。
帮助?
所以我在 Booking 和 Discharge 之间建立了 1:N 的关系。该字段根据 Discharge 中的字段在 Booking 中更新,我从 Discharge 的查找字段中选择 Booking 中的特定记录。但我想摆脱这第二步。我不想选择 Booking 实体中的记录,而是直接从 Discharge 更新它。有一些字段和它们的值在这两种形式中是共同的,我可以基于它创建一个关系吗?