我设置我的变量,将Inventory record
(库存表)带到我的Production layout
(生产表),将该变量插入其ID
字段。这样可行。
我的问题是,我需要Item, Color, Weight, Basis, Size
个字段,我需要从我的inventory table
提取信息,以使用ID
号码输入生产版面。 (我知道门户网站,但我需要多个门户网站,因为我将从我的库存记录和客户记录中“导入”其他信息)。
编辑我想我可能已回答了我自己的问题。我为要添加到生产布局中的所有字段设置变量,然后使用脚本通过计算设置这些字段。这似乎是解决这个问题的最好方法吗?
答案 0 :(得分:0)
关系会更好。
Set $productionId = Production::id
Go To Layout "Inventory"
New Record
Set Field Inventory::productionId = $productionId
// now the relationship is valid between inventory and production
// you can copy fields over from the Production table,
// or just reference them using the relationship