2 コミット 72e3e0ba25 ... 8722a46780

作者 SHA1 メッセージ 日付
  peter 8722a46780 feat: 创建PO.供应商搜索增加曾用名支持. 1 ヶ月 前
  peter c3c6ccd532 change: indent 转单. 增加attn相关自动及半自动填充交互. 1 ヶ月 前

+ 142 - 6
src/pages/indent-manage/indent/components/quoteRecord.vue

@@ -11,8 +11,8 @@
     >
       <el-table
         v-loading="loading"
-        row-key="id"
         :expand-row-keys="expandRowKeys"
+        row-key="id"
         :data="list"
       >
         <el-table-column type="expand">
@@ -72,6 +72,21 @@
                   ></el-input>
                 </el-form-item>
 
+                <el-form-item
+                  label="ATTN"
+                  prop="Primary_Contact"
+                >
+                  <el-input v-model="formList[props.$index].Primary_Contact">
+                    <template #append>
+                      <el-button @click="openATTNDialog(props.$index)">
+                        <el-icon :size="14">
+                          <Notebook></Notebook>
+                        </el-icon>
+                      </el-button>
+                    </template>
+                  </el-input>
+                </el-form-item>
+
                 <el-form-item
                   :rules="{
                     required: true,
@@ -83,6 +98,22 @@
                   <el-input
                     v-model="formList[props.$index].Shipping_Unit_Building_Name"
                   ></el-input>
+                  <!-- <el-select
+                    v-model="formList[props.$index].Shipping_Unit_Building_Name"
+                    allow-create
+                    filterable
+                    remote
+                    placeholder="enter directly or select a place"
+                    :remote-method="($e) => remoteSearchPlace($e, props.$index)"
+                    :loading="loading"
+                  >
+                    <el-option
+                      v-for="item in remoteOption[props.$index] as any[]"
+                      :key="item.value"
+                      :label="item.label"
+                      :value="item.value"
+                    />
+                  </el-select> -->
                 </el-form-item>
                 <el-form-item
                   :rules="{
@@ -230,6 +261,59 @@
         ></el-pagination>
       </div>
     </el-dialog>
+    <el-dialog
+      v-model="show2"
+      class="attn-dialog"
+      title="选择地址"
+      :close-on-click-modal="false"
+      :close-on-press-escape="false"
+      width="1150px"
+    >
+      <el-table
+        v-if="currentATTNList"
+        highlight-current-row
+        :data="currentATTNList"
+        max-height="70vh"
+        @current-change="selectATTN"
+      >
+        <el-table-column
+          type="index"
+          width="50"
+        ></el-table-column>
+        <el-table-column
+          width="150"
+          label="ATTN"
+          prop="Primary_Contact"
+        ></el-table-column>
+        <el-table-column
+          width="120"
+          label="Phone"
+          prop="Phone"
+        ></el-table-column>
+        <el-table-column
+          label="Shipping_Unit_Building_Name"
+          prop="Shipping_Unit_Building_Name"
+        ></el-table-column>
+        <el-table-column
+          label="Shipping_Street"
+          prop="Shipping_Street"
+        ></el-table-column>
+        <el-table-column
+          width="135"
+          label="Shipping_State"
+          prop="Shipping_State"
+        ></el-table-column>
+      </el-table>
+      <div class="flex justify-center pt-2">
+        <el-button
+          type="primary"
+          @click="onATTNSelect"
+        >
+          选择该项进行填充
+        </el-button>
+        <el-button @click="show2 = false">关闭</el-button>
+      </div>
+    </el-dialog>
   </div>
 </template>
 <script lang="ts" setup>
@@ -249,7 +333,9 @@ import {
   ElDatePicker,
   ElSelect,
   ElOption,
+  ElIcon,
 } from 'element-plus'
+import { Notebook } from '@element-plus/icons-vue'
 import { getCalcPriceRecord, generateOrder } from '@/api/indent'
 defineComponent({
   name: 'ComponentQuoteRecord',
@@ -260,8 +346,10 @@ const { visible = false, id = '' } = defineProps<{
 }>()
 const $emit = defineEmits(['update:visible'])
 let show = ref(false)
+let show2 = ref(false)
 let loading = ref(false)
 let list = ref([] as any[])
+// let remoteOption = ref([])
 
 watch(
   () => visible,
@@ -289,26 +377,63 @@ const getCalcPriceRecordFunc = () => {
           })) || []
 
       for (let i = 0; i < list.value.length; i++) {
+        const v = list.value[i].Accounts || ({} as any)
+        // remoteOption.value.push([])
         formList.value.push({
           Contract_Title: '',
           Expected_Delivery_Date: '',
           Brand_Name: '',
           Client_Mailbox: '',
-          Shipping_Unit_Building_Name: '',
-          Shipping_Street: '',
-          Shipping_City: '',
-          Shipping_State: '',
-          Shipping_Code: '',
+          Shipping_Unit_Building_Name: v.Billing_Unit_Building_Name || '',
+          Shipping_Street: v.Shipping_Street || '',
+          Shipping_City: v.Shipping_City || '',
+          Shipping_State: v.Shipping_State || '',
+          Shipping_Code: v.Shipping_Code || '',
+          Shipping_Country: v.Shipping_Country || '',
           Tax_Level: 'GST AU 10%',
           Order_Source: 'Indent App',
           Contact_Name: { id: '4791186000057250001', name: '/' },
+          Primary_Contact: '',
+          Phone: '',
         })
       }
     })
     .finally(() => (loading.value = false))
 }
+const currentATTNList = ref([] as any[])
+let currentATTNIndex = ref(0) // 当前第几行表单在选attn
+const openATTNDialog = (index: number) => {
+  show2.value = true
+  currentATTNList.value = list.value[index].AccountEndUser || []
+  currentATTN.value = {}
+  console.log(index, 'index')
+  currentATTNIndex.value = index || 0
+}
+let currentATTN = ref({} as any)
+const selectATTN = (value: any) => {
+  currentATTN.value = value || {}
+}
+const onATTNSelect = () => {
+  if (!currentATTN.value.id) {
+    ElMessage.error('请先点击选择一行地址数据, 再点击按钮')
+    return
+  }
+  const v = currentATTN.value
+  const target = formList.value[currentATTNIndex.value]
+  target.Shipping_Unit_Building_Name = v.Shipping_Unit_Building_Name || ''
+  target.Shipping_Street = v.Shipping_Street || ''
+  target.Shipping_City = v.Shipping_City || ''
+  target.Shipping_State = v.Shipping_State || ''
+  target.Shipping_Code = v.Shipping_Post_Code || ''
+  target.Shipping_Country = v.Shipping_Country || ''
+  target.Primary_Contact = v.Primary_Contact || ''
+  show2.value = false
+}
 let close = (done = {} as any) => {
   $emit('update:visible', false)
+  list.value = []
+  formList.value = []
+  // remoteOption.value = []
   if (typeof done === 'function') done()
 }
 
@@ -353,11 +478,22 @@ const onChangeOrderClick = (row: any) => {
       .finally(() => (loading.value = false))
   })
 }
+// const remoteSearchPlace = (str: string, index: number) => {
+//   console.log(str, 'str', index)
+//   if (!str.length) return
+//   const target = remoteOption.value[index] as any[]
+//   if (target && Array.isArray(target)) {
+//     target.push({ value: 1, label: 1 })
+//   }
+// }
 </script>
 <style lang="scss">
 .dialog-change-order {
   .el-form-item {
     width: 49%;
   }
+  .attn-dialog {
+    margin-top: 8vh;
+  }
 }
 </style>

+ 33 - 10
src/pages/purchase-order/edit.vue

@@ -1909,7 +1909,7 @@ const computedVendor = computed(() => {
         label: '',
         value: '',
         Payment_Terms: '',
-        High_Risk_Supplier: false
+        High_Risk_Supplier: false,
       }
 })
 
@@ -1930,17 +1930,31 @@ const getSupplierLists = function (string: string) {
       reject('false')
       return
     }
-    const data = {
-      value: keyword,
-      name: 'Vendors',
-      api_name: 'Vendor_Name',
-      contains: 'contains',
-      page: 1,
-      limit: 100,
+    const query = {
+      title: 'Vendors',
+      comm: {
+        group_operator: 'OR',
+        group: [
+          {
+            comparator: 'contains',
+            field: {
+              api_name: 'Vendor_Name',
+            },
+            value: keyword,
+          },
+          {
+            comparator: 'contains',
+            field: {
+              api_name: 'Previous_Supplier_Name',
+            },
+            value: keyword,
+          },
+        ],
+      },
     }
 
     vendorLoading.value = true
-    getSearchData(data)
+    getSearchData2(query)
       .then((response) => {
         if (response.data.code !== 1) return false
         const res = response.data.result || { data: [] }
@@ -1949,7 +1963,11 @@ const getSupplierLists = function (string: string) {
           .map((i: any) => {
             return {
               ...i,
-              label: i.Suppliers_Name || i.Vendor_Name,
+              label:
+                (i.Suppliers_Name || i.Vendor_Name) +
+                (i.Previous_Supplier_Name && i.Previous_Supplier_Name != null
+                  ? ` (曾用名: ${i.Previous_Supplier_Name})`
+                  : ''),
               value: i.supplier_id || i.id,
               Primary_Contact_name: i.Primary_Contact_name || '',
               PDF_display: i.PDF_display || '',
@@ -1991,6 +2009,11 @@ const getSearchData = async function (p: any) {
       return response
     })
 }
+const getSearchData2 = async function (p: any) {
+  return await request.post('/common/getPublicListsAll', p).then((response) => {
+    return response
+  })
+}
 
 const computedCompanyList = computed(() => {
   return userInfo.value.Organization === 'PrimePac'