|
@@ -126,7 +126,22 @@
|
|
|
v-model="formList[props.$index].Shipping_Country"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- <div></div>
|
|
|
+ <el-form-item
|
|
|
+ label="Tax Level"
|
|
|
+ :rules="{
|
|
|
+ required: true,
|
|
|
+ }"
|
|
|
+ prop="Tax_Level"
|
|
|
+ >
|
|
|
+ <el-select v-model="formList[props.$index].Tax_Level">
|
|
|
+ <el-option
|
|
|
+ v-for="item in taxList"
|
|
|
+ :key="item"
|
|
|
+ :label="item"
|
|
|
+ :value="item"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
</div>
|
|
|
<div class="flex justify-end">
|
|
|
<el-button
|
|
@@ -219,6 +234,8 @@ import {
|
|
|
ElFormItem,
|
|
|
ElInput,
|
|
|
ElDatePicker,
|
|
|
+ ElSelect,
|
|
|
+ ElOption,
|
|
|
} from 'element-plus'
|
|
|
import { getCalcPriceRecord, generateOrder } from '@/api/indent'
|
|
|
defineComponent({
|
|
@@ -246,7 +263,7 @@ watch(
|
|
|
const pageSize = ref(10)
|
|
|
const currentPage = ref(1)
|
|
|
const total = ref(0)
|
|
|
-
|
|
|
+const taxList = ref(['GST AU 10%', 'GST NZ 15%', 'No GST 0%', 'VAT 20%'])
|
|
|
const getCalcPriceRecordFunc = () => {
|
|
|
loading.value = true
|
|
|
getCalcPriceRecord({ id: id })
|
|
@@ -268,6 +285,7 @@ const getCalcPriceRecordFunc = () => {
|
|
|
Shipping_City: '',
|
|
|
Shipping_State: '',
|
|
|
Shipping_Code: '',
|
|
|
+ Tax_Level: 'GST AU 10%',
|
|
|
Order_Source: 'Indent App',
|
|
|
Contact_Name: { id: '4791186000057250001', name: '/' },
|
|
|
})
|