|
@@ -37,7 +37,7 @@
|
|
|
<el-button
|
|
|
:disabled="tableData.length < 1"
|
|
|
type="primary"
|
|
|
- @click="save"
|
|
|
+ @click="createStatement"
|
|
|
>
|
|
|
Save
|
|
|
</el-button>
|
|
@@ -313,16 +313,16 @@ const computedTableData = computed(() => {
|
|
|
})
|
|
|
const computedStatementList = computed(() => {
|
|
|
const result: any[] = []
|
|
|
- const result2: any[] = []
|
|
|
+
|
|
|
tableData.value.forEach((i) => {
|
|
|
if (i.statement_name?.length && !result.includes(i.statement_name)) {
|
|
|
result.push(i.statement_name)
|
|
|
- result2.push(i.statement_id)
|
|
|
}
|
|
|
})
|
|
|
return result.map((i, index) => {
|
|
|
+ // statement调整成点击保存再创建了, 而不是之前的在上传对话框创建, 所以逻辑变动, 这里拿不到id, 只能拿name凑合.
|
|
|
return {
|
|
|
- value: result2[index],
|
|
|
+ value: i,
|
|
|
label: i,
|
|
|
}
|
|
|
})
|
|
@@ -365,23 +365,47 @@ const onEditRow = function (data: IPoItem) {
|
|
|
data,
|
|
|
)
|
|
|
}
|
|
|
-
|
|
|
-const save = function () {
|
|
|
+const statementID = ref('')
|
|
|
+const createStatement = function () {
|
|
|
if (!['Finance Manager', 'CEO'].includes(userInfo.value.role.name)) {
|
|
|
ElMessage.error('当前用户没有处理的权限')
|
|
|
return
|
|
|
}
|
|
|
+ loading.value = true
|
|
|
+ request
|
|
|
+ .post('/payment_request/createStatementData', [
|
|
|
+ {
|
|
|
+ Total_Amount: computedSum.value,
|
|
|
+ Currency: tableData.value[0].currency,
|
|
|
+ Name: tableData.value[0].statement_name,
|
|
|
+ },
|
|
|
+ ])
|
|
|
+ .then((response) => {
|
|
|
+ if (response.data.code !== 1) {
|
|
|
+ ElMessage.error('创建statement出错')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ statementID.value = response.data.result.data[0].details.id
|
|
|
+
|
|
|
+ save()
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ loading.value = false
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+const save = function () {
|
|
|
const formData = tableData.value.map((i, index) => {
|
|
|
const result: any = {
|
|
|
Unit_Price: i.unit_price,
|
|
|
- Quantity: i.quantity,
|
|
|
+ Quantity: i.quantity ? i.quantity.toString() : '',
|
|
|
Sample_Fee: i.sample_fee,
|
|
|
Setup_Service_Fee: i.setup_service_fee,
|
|
|
Total: i.total,
|
|
|
Currency: i.currency,
|
|
|
Description: i.description,
|
|
|
PO_id: i.po_number,
|
|
|
- Statement: { name: i.statement_name, id: i.statement_id },
|
|
|
+ Statement: { name: i.statement_name, id: statementID.value },
|
|
|
Request_Type: '月结申请',
|
|
|
Name: '/',
|
|
|
Unit_Price_Non_Currency: i.unit_price ? i.unit_price.toString() : '',
|
|
@@ -415,6 +439,7 @@ const save = function () {
|
|
|
Promise.all(pool)
|
|
|
.then(() => {
|
|
|
tableData.value = []
|
|
|
+ statementID.value = ''
|
|
|
})
|
|
|
.finally(() => {
|
|
|
loading.value = false
|