我有两种模型 Invoice 和 Shipment。Invoice has_many shipping and a shipping belongs_to a Invoice。
这是我想要做的。
创建新货件。
new_shipment = Shipment.create! (params)
检查这批货物的合同是否已经存在发票。
invoice = Invoice.find_by_ref_no(ref_no)
if invoice.nil?
invoice.shipments << new_shipment
invoice.save
else
Invoice.create! (some_params,
:shipment_ids => [new_shipment.id],
other_params
)
end
我想知道添加发货后需要保存发票吗?此外,如何直接添加货件而不先获取货件?
我在 Invoice 中使用 :before_save 和 :after_save 进行一些处理。在控制台中,我尝试了这样的事情。
Invoice.last.shipments << (Shipment.first)
Invoice.last.shipments.count
并且计数增加了。但是如果我明确不保存发票,我不确定 :before_save 和 :after_save 是否会运行。
在这里,我从 excel 文件中导入大数据,所以我想确保我不会两次保存发票。