-1

我将变量设置为将Inventory record(库存表)带到我的Production layout(生产表)中,将该变量插入到其ID字段中。这样可行。

我的问题是Item, Color, Weight, Basis, Size我需要从我的字段中提取信息inventory table以使用该数字放入生产布局中ID。(我知道门户,但我需要多个门户,因为我将从我的库存记录和我的客户记录中“导入”其他信息)。

编辑我想我可能已经回答了我自己的问题。我为要带入生产布局的所有字段设置变量,然后使用脚本通过计算设置这些字段。这似乎是解决这个问题的最好方法。?

4

1 回答 1

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
于 2013-08-02T19:28:37.840 回答