Add shipement mode and freightCarrier mode in purchaseOrderLine

This commit is contained in:
2022-09-15 13:07:42 +01:00
parent 732ebbc22f
commit 5d709144fd

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<domain-models xmlns="http://axelor.com/xml/ns/domain-models"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://axelor.com/xml/ns/domain-models http://axelor.com/xml/ns/domain-models/domain-models_5.2.xsd">
<module name="purchase" package="com.axelor.apps.purchase.db"/>
<entity name="PurchaseOrderLine" lang="java">
<many-to-one name="shipmentMode" ref="com.axelor.apps.stock.db.ShipmentMode"/>
<many-to-one name="freightCarrierMode" ref="com.axelor.apps.stock.db.FreightCarrierMode"/>
</entity>
</domain-models>