Browse Source

所有节点-单据编号设置为不可编辑

jingbb 4 months ago
parent
commit
8980492d2c
22 changed files with 32 additions and 19 deletions
  1. 5 0
      src/views/cuspCode/CustomerProfile/CuspCustomerProfile.data.ts
  2. 1 1
      src/views/cuspCode/CustomerProfile/CuspCustomerProfileList.vue
  3. 1 1
      src/views/cuspCode/Intermediator/components/CuspIntermediatorForm.vue
  4. 2 1
      src/views/cuspCode/SupplierEvaluation/CuspSupplierEvaluation.data.ts
  5. 1 0
      src/views/cuspCode/SupplierProfile/CuspSupplierProfile.data.ts
  6. 1 1
      src/views/inventiry/inventoryCheck/components/inventoryCheckForm.vue
  7. 1 1
      src/views/inventiry/otherIn/components/otherInForm.vue
  8. 1 1
      src/views/inventiry/otherOut/components/otherOutForm.vue
  9. 1 1
      src/views/inventiry/purchaseIn/components/purchaseInForm.vue
  10. 1 1
      src/views/inventiry/salesOutbound/components/salesOutForm.vue
  11. 1 1
      src/views/purchase/arrivedGoods/components/ArriveGoodsFormForm.vue
  12. 1 1
      src/views/purchase/freightPurchaseOrder/components/FreightPurOrderForm.vue
  13. 1 1
      src/views/purchase/purchaseInquiryForm/components/PurchaseInquiryFormForm.vue
  14. 1 1
      src/views/purchase/purchaseOrder/components/PurchaseOrderFormForm.vue
  15. 1 1
      src/views/purchase/purchaseQuotationFrm/components/PurchaseQuotationFormForm.vue
  16. 1 1
      src/views/purchase/selectionQuotationForm/components/SelectQuotationFormForm.vue
  17. 1 1
      src/views/saleCode/deliveryNotice/components/deliveryNoticeForm.vue
  18. 1 1
      src/views/saleCode/quotation/components/quotationFormForm.vue
  19. 4 1
      src/views/saleCode/rfp/SaleRfp.data.ts
  20. 3 0
      src/views/saleCode/saleContract/SaleContract.data.ts
  21. 1 1
      src/views/saleCode/saleInquiryForm/components/SaleInquiryFormForm.vue
  22. 1 1
      src/views/saleCode/salesOrder/components/SlaeOrderFormForm.vue

+ 5 - 0
src/views/cuspCode/CustomerProfile/CuspCustomerProfile.data.ts

@@ -87,6 +87,7 @@ export const columns: BasicColumn[] = [
     title: '中间人佣金(intermediator commission)',
     align:"center",
     dataIndex: 'intermediatorCommission',
+    width: 300,
     customRender:function (t, r, index) {
       if(t.text&&t.text!==''){
         return t.text+'%'
@@ -235,6 +236,10 @@ export const formSchema: FormSchema[] = [
     component: 'Input',
     colProps: {span: 12},
     labelWidth: 200,
+    dynamicDisabled:true,
+    componentProps:{
+      placeholder:'自动生成'
+    },
   },
   {
     label: '名称(name)',

+ 1 - 1
src/views/cuspCode/CustomerProfile/CuspCustomerProfileList.vue

@@ -1,7 +1,7 @@
 <template>
   <div>
     <!--引用表格-->
-   <BasicTable @register="registerTable" :rowSelection="rowSelection">
+   <BasicTable @register="registerTable" :rowSelection="rowSelection" size="small">
      <!--插槽:table标题-->
       <template #tableTitle>
           <a-button type="primary" v-auth="'cuspCode:cusp_customer_profile:add'"  @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增(add)</a-button>

+ 1 - 1
src/views/cuspCode/Intermediator/components/CuspIntermediatorForm.vue

@@ -6,7 +6,7 @@
           <a-row>
 						<a-col :span="12">
 							<a-form-item label="编码(code)" v-bind="validateInfos.code" id="CuspIntermediatorForm-code" name="code">
-								<a-input v-model:value="formData.code" placeholder="请输入编码" disabled allow-clear ></a-input>
+								<a-input v-model:value="formData.code" placeholder="自动生成" disabled allow-clear ></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 2 - 1
src/views/cuspCode/SupplierEvaluation/CuspSupplierEvaluation.data.ts

@@ -57,7 +57,8 @@ export const searchFormSchema: FormSchema[] = [
         component: 'Input',
         labelWidth:150,
         componentProps:{
-          AutoComplete:'off'
+          AutoComplete:'off',
+          placeholder: '自动生成',
         },
         //colProps: {span: 6},
      },

+ 1 - 0
src/views/cuspCode/SupplierProfile/CuspSupplierProfile.data.ts

@@ -81,6 +81,7 @@ export const columns: BasicColumn[] = [
     title: '临时供应商(temporary supplier)',
     align:"center",
     dataIndex: 'temporarySupplier',
+    width:300,
     customRender:function (t, r, index) {
       if(t.text==1){
         return '申请中(application in progress)'

+ 1 - 1
src/views/inventiry/inventoryCheck/components/inventoryCheckForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="盘点单号(bill code)" v-bind="validateInfos.billCode" id="SaleOrderForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="出库单号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/inventiry/otherIn/components/otherInForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="入库单号(bill code)" v-bind="validateInfos.billCode" id="SaleOrderForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="入库单号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/inventiry/otherOut/components/otherOutForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="出库单号(bill code)" v-bind="validateInfos.billCode" id="SaleOrderForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="出库单号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

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

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="入库单号(bill code)" v-bind="validateInfos.billCode" id="SaleOrderForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="入库单号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/inventiry/salesOutbound/components/salesOutForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="出库单号(bill code)" v-bind="validateInfos.billCode" id="SaleOrderForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="出库单号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/purchase/arrivedGoods/components/ArriveGoodsFormForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="到货单号(bill code)" v-bind="validateInfos.billCode" id="SaleOrderForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="到货单号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/purchase/freightPurchaseOrder/components/FreightPurOrderForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="订单编号(bill code)" v-bind="validateInfos.billCode" id="SaleOrderForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="订单编号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/purchase/purchaseInquiryForm/components/PurchaseInquiryFormForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="询价单号(bill code)" v-bind="validateInfos.billCode" id="PuechaseInquiryFormForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="请输入询价单号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/purchase/purchaseOrder/components/PurchaseOrderFormForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="订单编号(bill code)" v-bind="validateInfos.billCode" id="SaleOrderForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="订单编号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/purchase/purchaseQuotationFrm/components/PurchaseQuotationFormForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="报价单号(bill code)" v-bind="validateInfos.billCode" id="PuechaseQuotationFormForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="请输入报价单号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/purchase/selectionQuotationForm/components/SelectQuotationFormForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="选定单号(bill code)" v-bind="validateInfos.billCode" id="SelectQuotationFormForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="请输入报价单号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/saleCode/deliveryNotice/components/deliveryNoticeForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="发货通知单号(bill code)" v-bind="validateInfos.billCode" id="quotationFormForm-billCode" name="billCode" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
-								<a-input v-model:value="formData.billCode" placeholder="" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/saleCode/quotation/components/quotationFormForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="报价单号(bill code)" v-bind="validateInfos.billCode" id="quotationFormForm-billCode" name="billCode" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
-								<a-input v-model:value="formData.billCode" placeholder="请输入报价单号(bill code)" ></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 4 - 1
src/views/saleCode/rfp/SaleRfp.data.ts

@@ -201,7 +201,10 @@ export const formSchema: FormSchema[] = [
     field: 'billCode',
     component: 'Input',
     labelWidth:150,
-    dynamicDisabled:true
+    dynamicDisabled:true,
+    componentProps: {
+      placeholder: '自动生成',
+    },
   },
   {
     label: '单据日期(bill date)',

+ 3 - 0
src/views/saleCode/saleContract/SaleContract.data.ts

@@ -234,6 +234,9 @@ export const formSchema: FormSchema[] = [
     labelWidth: 200,
     component: 'Input',
     dynamicDisabled:true,  
+    componentProps: {
+      placeholder: '自动生成',
+    },
   },
   {
     label: '单据日期(bill date)',

+ 1 - 1
src/views/saleCode/saleInquiryForm/components/SaleInquiryFormForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="询价单号(bill code)" v-bind="validateInfos.billCode" id="SaleInquiryFormForm-billCode" name="billCode">
-								<a-input v-model:value="formData.billCode" placeholder="请输入询价单号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">

+ 1 - 1
src/views/saleCode/salesOrder/components/SlaeOrderFormForm.vue

@@ -6,7 +6,7 @@
           <a-row>
             <a-col :span="12">
 							<a-form-item label="订单编号(bill code)" v-bind="validateInfos.billCode" id="SaleOrderForm-billCode" name="billCode" :labelCol="formItemLayout.labelCol1" :wrapperCol="formItemLayout.wrapperCol1">
-								<a-input v-model:value="formData.billCode" placeholder="订单编号(bill code)" disabled></a-input>
+								<a-input v-model:value="formData.billCode" placeholder="自动生成" disabled></a-input>
 							</a-form-item>
 						</a-col>
 						<a-col :span="12">