| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <template>
- <!-- 交收审核-->
- <a-modal class="add-custom custom-detail" title="交收审核" v-model:visible="visible" centered :maskClosable="false" @cancel="cancel" width="890px">
- <template #footer>
- <a-button type="primary" :loading="loading" @click="cancel">关闭</a-button>
- <a-button v-if="isShowContractCheck(selectedRow.applystatus)" type="primary" :loading="loading" @click="pass">审核通过
- </a-button>
- <a-button v-if="isShowContractCheck(selectedRow.applystatus)" type="primary" :loading="loading" @click="refuse">审核拒绝
- </a-button>
- </template>
- <a-form class="inlineForm">
- <fieldset class="formFieldSet">
- <legend>合同基本信息</legend>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="合同编号">
- <span class="white">{{ getContractTypeName(selectedRow.contracttype) + '/' + formatValue(selectedRow.contractno) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="点价类型">
- <span class="white">{{ getPriceTypeName(selectedRow.pricetype) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="销售方">
- <span class="white">{{ formatValue(selectedRow.sellusername) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="现货品种">
- <span class="white">{{ formatValue(selectedRow.deliverygoodsname) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- </fieldset>
- <fieldset class="formFieldSet">
- <legend>待审核登记信息</legend>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="交收量">
- <span class="white">{{ formatValue(selectedRow.reckonrealqty) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="其它费用">
- <span class="white">{{ formatValue(selectedRow.reckonotheramount) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="调整保证金">
- <span class="white">{{
- formatValue(selectedRow.addmargin !== 0 && selectedRow.addmargin !== undefined ?
- "+" + formatValue(selectedRow.addmargin) : (selectedRow.decmargin === 0 ? 0.0 : "-" + formatValue(selectedRow.decmargin)))
- }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="调整金额">
- <span class="white">{{ formatValue(selectedRow.reckonadjustamount) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="登记时间">
- <span class="white">{{ formatValue(selectedRow.applytime) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="登记人">
- <span class="white">{{ formatValue(selectedRow.applyname) }}</span>
- </a-form-item>
- </a-col>
- </a-row>
- </fieldset>
- </a-form>
- </a-modal>
- </template>
- <script lang="ts">
- import { defineComponent, PropType, reactive, ref, watchEffect } from 'vue';
- import { closeModal } from '@/common/setup/modal/index';
- import { QueryCustomInfoType } from '@/services/go/ermcp/customInfo/interface';
- import { mergeObj } from '@/utils/objHandle';
- import { getStatusName } from '@/common/constants/enumsName';
- import { formatValue, formatTime } from '@/common/methods';
- import { QryBussinessJsRsp } from '@/services/go/ermcp/business-review/interface';
- import { Modal } from 'ant-design-vue';
- import { ContractOperateApplyReq } from '@/services/proto/contract/interface';
- import Long from 'long';
- import { somePriceControl } from '@/views/manage/business-review/components/setup';
- import { getContractTypeName, getPriceTypeName } from '@/common/constants/enumsName';
- import { isShowContractCheck } from '@/views/manage/inventory-review/setup';
- import { _closeModal } from '@/common/setup/modal/modal';
- export default defineComponent({
- name: 'business_review_settlement_audit',
- emits: ['cancel', 'update'],
- props: {
- selectedRow: {
- type: Object as PropType<QryBussinessJsRsp>,
- default: {},
- },
- },
- setup(props, context) {
- const { visible, cancel } = _closeModal(context);
- const loading = ref<boolean>(false);
- const maskClosableFlag = ref<boolean>(false);
- // 审核通过
- function pass() {
- Modal.confirm({
- title: '是否确认审核通过',
- okText: '审核通过',
- cancelText: '取消',
- onOk() {
- const param: ContractOperateApplyReq = {
- OperateApplyID: Long.fromString(props.selectedRow.operateapplyid),
- OperateType: 2,
- };
- somePriceControl(param, loading)
- .then((res) => {
- cancel(true);
- })
- .catch((err) => { });
- },
- onCancel() { },
- });
- }
- // 审核拒绝
- function refuse() {
- Modal.confirm({
- title: '是否确认审核拒绝',
- okText: '审核拒绝',
- cancelText: '取消',
- onOk() {
- const param: ContractOperateApplyReq = {
- OperateApplyID: Long.fromString(props.selectedRow.operateapplyid),
- OperateType: 3,
- };
- somePriceControl(param, loading)
- .then((res) => {
- cancel(true);
- })
- .catch((err) => { });
- },
- onCancel() { },
- });
- }
- return {
- visible,
- cancel,
- loading,
- formatValue,
- getStatusName,
- maskClosableFlag,
- pass,
- refuse,
- getPriceTypeName,
- getContractTypeName,
- isShowContractCheck,
- };
- },
- });
- </script>
- <style lang="less">
- .business_review_settlement_audit {
- .ant-form.inlineForm {
- margin-top: 20px;
- }
- }
- </style>
|