Bladeren bron

采购入库/发货通知单-增加字段

jingbb 3 maanden geleden
bovenliggende
commit
646292a8ce

+ 19 - 1
src/views/inventiry/purchaseIn/components/purchaseInForm.vue

@@ -64,6 +64,21 @@
                 <JDictSelectTag v-model:value="formData.warehouse" placeholder="请选择" dictCode="warehouse"/>
 							</a-form-item>
 						</a-col>
+            <a-col :span="12">
+							<a-form-item label="包装尺寸(dimension)" v-bind="validateInfos.dimension" id="SaleOrderForm-dimension" name="dimension">
+                <a-input v-model:value="formData.dimension" placeholder="请输入"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+            <a-col :span="12">
+							<a-form-item label="重量(Weight)" v-bind="validateInfos.weight" id="SaleOrderForm-weight" name="weight">
+                <a-input v-model:value="formData.weight" placeholder="请输入"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
+            <a-col :span="12">
+							<a-form-item label="包装(Method)" v-bind="validateInfos.method" id="SaleOrderForm-method" name="method">
+                <a-input v-model:value="formData.method" placeholder="请输入"  allow-clear ></a-input>
+							</a-form-item>
+						</a-col>
             <a-col :span="12">
 							<a-form-item label="备注(notes)" v-bind="validateInfos.notes" id="SaleOrderForm-notes" name="notes">
 								<a-input v-model:value="formData.notes" AutoComplete="off"></a-input>
@@ -213,7 +228,10 @@
         notes:'',
         attachs:'',
         arrivalDetails:'',
-        typr:'1'
+        typr:'1',
+        dimension:'',
+        weight:'',
+        method:'',
       });
       //表单验证
       const validatorRules = reactive({

+ 9 - 4
src/views/saleCode/deliveryNotice/components/deliveryNoticeForm.vue

@@ -119,9 +119,13 @@
                 <a-input v-model:value="formData.invoiceHeader" placeholder="请输入" AutoComplete="off"/>
 							</a-form-item>
 						</a-col>
-          
             <a-col :span="12">
-							<a-form-item label="是否有第三方运费(otherFee)" v-bind="validateInfos.otherFee" id="SaleOrderForm-otherFee" name="otherFee" >
+							<a-form-item label="包装详情(packingDetails))" v-bind="validateInfos.packingDetails " id="SaleOrderForm-packingDetails " name="packingDetails " >
+                <a-input v-model:value="formData.packingDetails " placeholder="请输入" AutoComplete="off"/>
+							</a-form-item>
+						</a-col>
+            <a-col :span="12">
+							<a-form-item label="是否有第三方运费(otherFee)" v-bind="validateInfos.otherFee" id="SaleOrderForm-otherFee" name="otherFee" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
                 <a-select v-model:value="formData.otherFee">
                   <a-select-option value="是"> 是 </a-select-option>
                   <a-select-option value="否"> 否 </a-select-option>
@@ -129,7 +133,7 @@
 							</a-form-item>
 						</a-col>			
             <a-col :span="12">
-							<a-form-item label="备注(notes)" v-bind="validateInfos.notes" id="quotationFormForm-notes" name="notes" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
+							<a-form-item label="备注(notes)" v-bind="validateInfos.notes" id="quotationFormForm-notes" name="notes" >
 								<a-input v-model:value="formData.notes" placeholder="请输入备注(notes)"  allow-clear AutoComplete="off"></a-input>
 							</a-form-item>
 						</a-col>
@@ -289,7 +293,8 @@
         blno: '',   
         notes: '',   
         invoiceHeader:'',
-        otherFee  :''
+        otherFee  :'',
+        packingDetails:''
       });
 
       //表单验证