我们有一个工作的vTiger应用程序已经有很多发票。我们现在需要导入所有旧发票(当然,大约有4500张发票及其所有产品和送货地址)。
我创建了一个脚本,可以读取所有旧发票并执行以下操作:
- adds a new crmentity to the vtiger_crmentity table
- adds a new invoice to the vtiger_invoice table
- adds a new shipping address to the vtiger_invoiceshipads
- adds a new billing address to the vtiger_invoicebillads
- adds all products to the vtiger_inventoryproductrel
到目前为止一切顺利。一切似乎都是先导入好的,所有信息都在发票中正确显示。
然而,在尝试保存新发票后,我几乎没有遇到任何问题:
index.php
而不是保存。我认为它可能与invoice_no
(自定义发票排序)有关,因为在导入时我将invoice_no列留空了。
导入时我还没有修改vtiger_modentity_num
表,是否可以相关?
在我的场景中是否还需要修改其他表/字段?
非常感谢任何帮助。
谢谢。