| | |
| | | {{ parseFloat(row.payableAmount).toFixed(2) }} |
| | | </el-text> |
| | | </template> |
| | | <template #paymentActionSlot="{ row }"> |
| | | <el-button link type="primary" @click="openPaymentDialog(row)"> |
| | | 新增付款 |
| | | </el-button> |
| | | </template> |
| | | </PIMTable> |
| | | </div> |
| | | </el-col> |
| | | </el-row> |
| | | |
| | | <!-- 新增付款弹框 --> |
| | | <el-dialog |
| | | v-model="paymentDialogVisible" |
| | | title="新增付款" |
| | | width="35%" |
| | | @close="closePaymentDialog" |
| | | > |
| | | <el-form |
| | | :model="paymentForm" |
| | | label-width="100px" |
| | | :rules="paymentRules" |
| | | ref="paymentFormRef" |
| | | > |
| | | <el-form-item label="采购合同号:"> {{ currentPaymentRow.purchaseContractNumber || '--' }} </el-form-item> |
| | | <el-form-item label="付款日期:" prop="paymentDate"> |
| | | <el-date-picker |
| | | style="width: 100%" |
| | | v-model="paymentForm.paymentDate" |
| | | value-format="YYYY-MM-DD" |
| | | format="YYYY-MM-DD" |
| | | type="date" |
| | | placeholder="请选择付款日期" |
| | | clearable |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="付款金额:" prop="paymentAmount"> |
| | | <el-input-number |
| | | style="width: 100%" |
| | | v-model="paymentForm.paymentAmount" |
| | | :precision="2" |
| | | :min="0.01" |
| | | :max="Math.max(0, (Number(currentPaymentRow.payableAmount) || 0) - (Number(currentPaymentRow.paymentAmount) || 0))" |
| | | placeholder="请输入付款金额" |
| | | controls-position="right" |
| | | /> |
| | | <div style="color: #e6a23c; font-size: 12px; margin-top: 4px"> |
| | | 当前可付款余额:{{ (Number(currentPaymentRow.payableAmount) || 0) - (Number(currentPaymentRow.paymentAmount) || 0) > 0 ? ((Number(currentPaymentRow.payableAmount) || 0) - (Number(currentPaymentRow.paymentAmount) || 0)).toFixed(2) : '0.00' }} 元 |
| | | </div> |
| | | </el-form-item> |
| | | <el-form-item label="付款方式:" prop="paymentMethod"> |
| | | <el-select |
| | | v-model="paymentForm.paymentMethod" |
| | | placeholder="请选择付款方式" |
| | | style="width: 100%" |
| | | clearable |
| | | > |
| | | <el-option label="银行转账" value="银行转账" /> |
| | | <el-option label="现金" value="现金" /> |
| | | <el-option label="支票" value="支票" /> |
| | | <el-option label="微信/支付宝" value="微信/支付宝" /> |
| | | <el-option label="其他" value="其他" /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="备注:" prop="remark"> |
| | | <el-input |
| | | v-model="paymentForm.remark" |
| | | type="textarea" |
| | | :rows="3" |
| | | placeholder="请输入备注信息" |
| | | clearable |
| | | /> |
| | | </el-form-item> |
| | | </el-form> |
| | | <template #footer> |
| | | <div class="dialog-footer"> |
| | | <el-button type="primary" @click="submitPaymentForm">确认</el-button> |
| | | <el-button @click="closePaymentDialog">取消</el-button> |
| | | </div> |
| | | </template> |
| | | </el-dialog> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | import { |
| | | paymentLedgerList, |
| | | paymentRecordList, |
| | | savePayment, |
| | | } from "@/api/procurementManagement/paymentLedger.js"; |
| | | import Pagination from "../../../components/PIMTable/Pagination.vue"; |
| | | |
| | |
| | | prop: "payableAmount", |
| | | slot: "payableAmountSlot", |
| | | }, |
| | | { |
| | | label: "操作", |
| | | dataType: "slot", |
| | | slot: "paymentActionSlot", |
| | | width: 100, |
| | | fixed: "right", |
| | | align: "center", |
| | | }, |
| | | ]); |
| | | const tableDataSon = ref([]); |
| | | const originalTableDataSon = ref([]); |
| | |
| | | const isShowSummarySon = ref(true); |
| | | const { proxy } = getCurrentInstance(); |
| | | |
| | | // 新增付款弹框 |
| | | const paymentDialogVisible = ref(false); |
| | | const currentPaymentRow = ref({}); |
| | | const paymentFormRef = ref(null); |
| | | const paymentForm = reactive({ |
| | | paymentDate: "", |
| | | paymentAmount: undefined, |
| | | paymentMethod: "", |
| | | remark: "", |
| | | }); |
| | | const validatePaymentAmount = (_, value, callback) => { |
| | | if (!value) { |
| | | return callback(new Error("请输入付款金额")); |
| | | } |
| | | const remaining = |
| | | (Number(currentPaymentRow.value.payableAmount) || 0) - |
| | | (Number(currentPaymentRow.value.paymentAmount) || 0); |
| | | if (value > remaining) { |
| | | return callback(new Error(`付款金额不能超过可付款余额 ${remaining.toFixed(2)} 元`)); |
| | | } |
| | | callback(); |
| | | }; |
| | | const paymentRules = { |
| | | paymentDate: [ |
| | | { required: true, message: "请选择付款日期", trigger: "change" }, |
| | | ], |
| | | paymentAmount: [ |
| | | { required: true, validator: validatePaymentAmount, trigger: "blur" }, |
| | | ], |
| | | paymentMethod: [ |
| | | { required: true, message: "请选择付款方式", trigger: "change" }, |
| | | ], |
| | | }; |
| | | const openPaymentDialog = row => { |
| | | currentPaymentRow.value = row; |
| | | paymentForm.paymentDate = ""; |
| | | paymentForm.paymentAmount = undefined; |
| | | paymentForm.paymentMethod = ""; |
| | | paymentForm.remark = ""; |
| | | paymentDialogVisible.value = true; |
| | | }; |
| | | const closePaymentDialog = () => { |
| | | paymentFormRef.value?.resetFields(); |
| | | paymentDialogVisible.value = false; |
| | | }; |
| | | const submitPaymentForm = () => { |
| | | paymentFormRef.value?.validate(valid => { |
| | | if (valid) { |
| | | const payload = { |
| | | supplierId: currentSupplierId.value, |
| | | purchaseContractNumber: currentPaymentRow.value.purchaseContractNumber, |
| | | paymentDate: paymentForm.paymentDate, |
| | | paymentAmount: paymentForm.paymentAmount, |
| | | paymentMethod: paymentForm.paymentMethod, |
| | | remark: paymentForm.remark, |
| | | }; |
| | | savePayment(payload).then(res => { |
| | | proxy.$modal.msgSuccess("新增付款成功"); |
| | | closePaymentDialog(); |
| | | getPaymenRecordtList(currentSupplierId.value); |
| | | getList(); |
| | | }); |
| | | } |
| | | }); |
| | | }; |
| | | |
| | | // 主表合计方法 |
| | | const summarizeMainTable = param => { |
| | | return proxy.summarizeTable( |