refactor(FE): Fix warehouse name display in DeliveryOrderProductTable

This commit is contained in:
rstubryan
2026-02-06 14:46:13 +07:00
parent 9ee5e95d0b
commit 4e80c1a703
@@ -136,7 +136,9 @@ const DeliveryOrderProductTable = ({
<tr>
<td className='text-sm px-4 py-3'>Gudang</td>
<td className='text-sm px-4 py-3'>
{item.marketing_product?.product_warehouse?.label}
{doItem?.warehouse?.name ||
item.marketing_product?.product_warehouse_data
?.warehouse?.name}
</td>
</tr>
<tr>