diff --git a/src/views/erp/stock/in/components/StockInItemForm.vue b/src/views/erp/stock/in/components/StockInItemForm.vue
index ded64709..122547bd 100644
--- a/src/views/erp/stock/in/components/StockInItemForm.vue
+++ b/src/views/erp/stock/in/components/StockInItemForm.vue
@@ -80,11 +80,11 @@
-
+
@@ -104,6 +104,13 @@
+
+
+
+
+
+
+
@@ -118,6 +125,23 @@
+
+
+ {{ t('ErpStock.Item.purchaseUnitConvertQuantity') }}
+
+
+ {{ purchaseUnitConvertTipText }}
+
+
+
+
+
+
+
+
+
+
@@ -504,6 +528,7 @@ const activeCategoryType = computed(() => stockInCategoryTypeMap[props.inType ||
const isProductMaterialStockIn = computed(() => Boolean(activeCategoryType.value))
const isProductStockIn = computed(() => activeCategoryType.value === 1)
const isPurchaseUnitStockIn = computed(() => activeCategoryType.value === 2 || activeCategoryType.value === 3)
+const purchaseUnitConvertTipText = computed(() => t('FactoryModeling.ProductInformation.dialogPurchaseUnitConvertTip'))
const selectorColumnLabel = computed(() => {
const rows = formData.value || []
return rows.length > 0 && rows.every((row) => isRowRelatedTask(row))