|
@@ -156,7 +156,7 @@
|
|
label-width="0"
|
|
label-width="0"
|
|
prop="currentVendor"
|
|
prop="currentVendor"
|
|
>
|
|
>
|
|
- <el-select-v2
|
|
|
|
|
|
+ <!-- <el-select-v2
|
|
v-model="form.currentVendor"
|
|
v-model="form.currentVendor"
|
|
:remote-method="getSupplierLists"
|
|
:remote-method="getSupplierLists"
|
|
remote
|
|
remote
|
|
@@ -165,7 +165,23 @@
|
|
:options="vendorList"
|
|
:options="vendorList"
|
|
filterable
|
|
filterable
|
|
clearable
|
|
clearable
|
|
- ></el-select-v2>
|
|
|
|
|
|
+ ></el-select-v2> -->
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="form.currentVendor"
|
|
|
|
+ :remote-method="getSupplierLists"
|
|
|
|
+ remote
|
|
|
|
+ style="width: 100%"
|
|
|
|
+ :loading="vendorLoading"
|
|
|
|
+ filterable
|
|
|
|
+ clearable
|
|
|
|
+ >
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="option in vendorList"
|
|
|
|
+ :key="option.value"
|
|
|
|
+ :value="option.value"
|
|
|
|
+ :label="option.label"
|
|
|
|
+ ></el-option>
|
|
|
|
+ </el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<div
|
|
<div
|
|
v-if="typeof computedCompany.taxReimbursement === 'undefined'"
|
|
v-if="typeof computedCompany.taxReimbursement === 'undefined'"
|
|
@@ -1072,7 +1088,7 @@ const submit = () => {
|
|
loading.value = true
|
|
loading.value = true
|
|
createPurchaseOrders()
|
|
createPurchaseOrders()
|
|
.then((res) => {
|
|
.then((res) => {
|
|
- console.log(res)
|
|
|
|
|
|
+ // console.log(res)
|
|
getPurchaseOrdersData()
|
|
getPurchaseOrdersData()
|
|
.then(() => {
|
|
.then(() => {
|
|
generatePDF()
|
|
generatePDF()
|
|
@@ -1332,14 +1348,14 @@ const createPurchaseOrders = function () {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
if (data.productList) delete data.productList
|
|
if (data.productList) delete data.productList
|
|
- console.log(data, 'create po params')
|
|
|
|
|
|
+ // console.log(data, 'create po params')
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
request
|
|
request
|
|
.post('/Purchase_orders/createPurchaseOrders', data, {})
|
|
.post('/Purchase_orders/createPurchaseOrders', data, {})
|
|
.then((response) => {
|
|
.then((response) => {
|
|
if (response.data.code !== 1) return
|
|
if (response.data.code !== 1) return
|
|
const res = response.data.result
|
|
const res = response.data.result
|
|
- console.log(res, 'create po')
|
|
|
|
|
|
+ // console.log(res, 'create po')
|
|
if (res.data && res.data.length && res.data[0].code === 'SUCCESS') {
|
|
if (res.data && res.data.length && res.data[0].code === 'SUCCESS') {
|
|
POID.value = res.data[0].details?.id || ''
|
|
POID.value = res.data[0].details?.id || ''
|
|
resolve(res.data[0].details?.id)
|
|
resolve(res.data[0].details?.id)
|
|
@@ -1613,9 +1629,12 @@ const grandTotal = computed(() => {
|
|
const productLoading = ref(false)
|
|
const productLoading = ref(false)
|
|
const getProductList = utils.debounce(
|
|
const getProductList = utils.debounce(
|
|
(keyword: string, target: IProductItem) => {
|
|
(keyword: string, target: IProductItem) => {
|
|
|
|
+ const key = keyword.trim()
|
|
|
|
+ if (!key.length) return
|
|
|
|
+
|
|
productLoading.value = true
|
|
productLoading.value = true
|
|
const data = {
|
|
const data = {
|
|
- value: keyword.trim(),
|
|
|
|
|
|
+ value: key,
|
|
name: 'Products',
|
|
name: 'Products',
|
|
api_name: 'Product_Name',
|
|
api_name: 'Product_Name',
|
|
contains: 'contains',
|
|
contains: 'contains',
|
|
@@ -1676,13 +1695,16 @@ watch(computedVendor, () => {
|
|
|
|
|
|
const vendorLoading = ref(false)
|
|
const vendorLoading = ref(false)
|
|
const getSupplierLists = utils.debounce(function (string: string) {
|
|
const getSupplierLists = utils.debounce(function (string: string) {
|
|
|
|
+ const keyword = string.trim()
|
|
|
|
+ if (!keyword.length) return
|
|
|
|
+
|
|
const data = {
|
|
const data = {
|
|
- value: string.trim(),
|
|
|
|
|
|
+ value: keyword,
|
|
name: 'Vendors',
|
|
name: 'Vendors',
|
|
api_name: 'Vendor_Name',
|
|
api_name: 'Vendor_Name',
|
|
contains: 'contains',
|
|
contains: 'contains',
|
|
page: 1,
|
|
page: 1,
|
|
- limit: 200,
|
|
|
|
|
|
+ limit: 100,
|
|
}
|
|
}
|
|
vendorLoading.value = true
|
|
vendorLoading.value = true
|
|
getSearchData(data)
|
|
getSearchData(data)
|
|
@@ -1977,7 +1999,7 @@ const getProductData = async (id: string) =>
|
|
request.post('/common/getProductsData', { id }).then((response) => {
|
|
request.post('/common/getProductsData', { id }).then((response) => {
|
|
const res = response.data
|
|
const res = response.data
|
|
if (res.code !== 1) return
|
|
if (res.code !== 1) return
|
|
- console.log(res.result)
|
|
|
|
|
|
+ // console.log(res.result)
|
|
return res.result?.CF3 || ''
|
|
return res.result?.CF3 || ''
|
|
})
|
|
})
|
|
|
|
|