| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585 |
- <template>
- <!-- 重新提交现货合同-->
- <a-modal class="commonModal modify-custom"
- title="重新提交现货合同"
- v-if="visible"
- v-model:visible="visible"
- @cancel="cancel"
- centered
- width="890px">
- <template #footer>
- <a-button key="submit"
- type="primary"
- :loading="loading"
- @click="submit">完成</a-button>
- </template>
- <a-form class="inlineForm"
- ref="formRef"
- :model="formState"
- :rules="rules">
- <fieldset class="formFieldSet">
- <legend>基本信息</legend>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="合同编号"
- name="ContractNo">
- <a-input class="dialogInput"
- style="width: 200px"
- v-model:value="formState.ContractNo"
- placeholder="请输入合同编号" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="合同类型"
- name="ContractType">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- @change="contractChange"
- v-model:value="formState.ContractType"
- placeholder="请选择合同类型">
- <a-select-option v-for="item in contractType"
- :key="item.key"
- :value="item.key">
- {{item.value}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="业务类型"
- name="BizType">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- v-model:value="formState.BizType"
- placeholder="请选择业务类型">
- <a-select-option v-for="item in businessType"
- :key="item.key"
- :value="item.key">
- {{item.value}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <template v-if="isSell">
- <a-col :span="12">
- <a-form-item label="采购方"
- name="BuyUserID">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- v-model:value="formState.BuyUserID"
- placeholder="请选择客户">
- <!-- 客户资料列表 正常 -->
- <a-select-option :value="item.userid"
- v-for="item in customList"
- :key="item.userid">
- {{item.customername}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="销售方">
- <span class="white">{{getUserName()}}</span>
- </a-form-item>
- </a-col>
- </template>
- <template v-else>
- <a-col :span="12">
- <a-form-item label="采购方">
- <span class="white">{{getUserName()}}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="销售方"
- name="SellUserID">
- <a-select class="inlineFormSelect"
- v-model:value="formState.SellUserID"
- style="width: 200px"
- placeholder="请选择客户">
- <!-- 客户资料列表 正常 -->
- <a-select-option :value="item.userid"
- v-for="item in customList"
- :key="item.userid">
- {{item.customername}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </template>
- <a-col :span="12">
- <a-form-item label="合同附件"
- name="ContractAttachment">
- <UploadImg :visible="visible"
- :imgList="uploadImgList"
- @upload="uploadImgAction" />
- </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="现货品种"
- name="DeliveryGoodsID">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- @change="deliveryGoodsChange"
- v-model:value="formState.DeliveryGoodsID"
- placeholder="请选择现货品种">
- <a-select-option v-for="item in deliveryGoodsList"
- :key="item.deliverygoodsid"
- :value="item.deliverygoodsid">
- {{item.deliverygoodsname}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="商品"
- name="WrStandardID">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- @change="WrStandardChange"
- v-model:value="formState.WrStandardID"
- placeholder="请选择商品">
- <a-select-option v-for="item in gmlist"
- :key="item.wrstandardid"
- :value="item.wrstandardid">
- {{item.wrstandardname}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="品牌"
- name="SpotGoodsBrandID">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- v-model:value="formState.SpotGoodsBrandID"
- placeholder="请选择品牌">
- <a-select-option v-for="item in gblist"
- :key="item.brandid"
- :value="item.brandid">
- {{item.brandname}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="标仓系数"
- name="ConvertFactor">
- <a-input class="dialogInput"
- style="width: 200px"
- v-model:value="formState.ConvertFactor"
- readonly
- placeholder="选择商品后自动填入" />
- </a-form-item>
- </a-col>
- <a-col :span="24">
- <a-form-item label="商品规格"
- name="SpotGoodsDesc">
- <a-input class="dialogInput"
- style="width: 200px"
- v-model:value="formState.SpotGoodsDesc"
- placeholder="请输入商品规格" />
- </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="定价类型"
- name="PriceType">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- v-model:value="formState.PriceType"
- placeholder="请选择定价类型">
- <a-select-option v-for="item in priceType"
- :key="item.key"
- :value="item.key">
- {{item.value}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="结算币种"
- name="CurrencyID">
- <a-select class="inlineFormSelect"
- v-model:value="formState.CurrencyID"
- style="width: 200px"
- placeholder="请选择结算币种">
- <a-select-option v-for="item in payCurrency"
- :key="item.enumitemname"
- :value="item.enumitemname">
- {{item.enumdicname}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="数量"
- name="Qty">
- <a-input class="dialogInput suffixGrey"
- v-model:value="formState.Qty"
- style="width: 200px"
- @change="getAmout"
- placeholder="请输入数量"
- :suffix="numberUnit" />
- </a-form-item>
- </a-col>
- <a-col :span="12"
- v-if="formState.PriceType === 3">
- <a-form-item label="暂定价">
- <a-input class="dialogInput suffixGrey"
- style="width: 200px"
- :suffix="payCurrencyUnit"
- placeholder="请输入暂定价" />
- </a-form-item>
- </a-col>
- <!-- 以下是点价的价格信息 start -->
- <template v-if="formState.PriceType === 2 || formState.PriceType === 3">
- <a-col :span="12">
- <a-form-item label="点价合约"
- name="GoodsID">
- <a-select class="inlineFormSelect"
- v-model:value="formState.GoodsID"
- style="width: 200px"
- placeholder="请选择点价合约">
- <a-select-option v-for="item in goodsList"
- :key="item.goodsid"
- :value="item.goodsid">
- {{item.goodsname}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="升贴水"
- name="PriceMove">
- <a-input-number class="dialogInput suffixGrey"
- v-model:value="formState.PriceMove"
- placeholder="请输入升贴水"
- :suffix="`${payCurrencyUnit}/${numberUnit}`"
- style="width: 200px" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="点价期">
- <a-range-picker v-model:value="priceDate"
- class="commonPicker"
- :disabled-date="disabledDate"
- style="width: 200px"
- :show-time="{hideDisabledOptions: true}"
- format="YYYY-MM-DD" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="交收期">
- <a-range-picker v-model:value="deliveryDate"
- class="commonPicker"
- style="width: 200px"
- :disabled-date="disabledDate"
- :show-time="{hideDisabledOptions: true}"
- format="YYYY-MM-DD" />
- </a-form-item>
- </a-col>
- </template>
- <!-- 以上是点价的价格信息 end -->
- <template v-if="formState.PriceType === 1">
- <a-col :span="12">
- <a-form-item label="价格"
- name="Price">
- <a-input class="dialogInput suffixGrey"
- v-model:value="formState.Price"
- @change="getAmout"
- placeholder="请输入价格"
- :suffix="`${payCurrencyUnit}/${numberUnit}`"
- style="width: 200px" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="金额"
- class="relative"
- name="Amount">
- <a-input class="dialogInput suffixGrey"
- v-model:value="formState.Amount"
- readonly
- placeholder="输入数量和价格后自动算"
- :suffix="payCurrencyUnit"
- style="width: 200px" />
- </a-form-item>
- </a-col>
- <a-col :span="24">
- <a-form-item label="交收期">
- <a-range-picker v-model:value="deliveryDate"
- style="width: 200px"
- class="commonPicker"
- :disabled-date="disabledDate"
- :show-time="{hideDisabledOptions: true}"
- format="YYYY-MM-DD" />
- </a-form-item>
- </a-col>
- </template>
- </a-row>
- </fieldset>
- <fieldset class="formFieldSet">
- <legend>其他信息</legend>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="保证金"
- name="ContractMargin">
- <a-input class="dialogInput suffixGrey"
- placeholder="请输入保证金"
- v-model:value="formState.ContractMargin"
- style="width: 200px"
- :suffix="payCurrencyUnit" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="业务员"
- name="SaleUserID">
- <a-select class="inlineFormSelect"
- v-model:value="formState.SaleUserID"
- style="width: 200px"
- placeholder="请选择业务员">
- <a-select-option v-for="item in businesserList"
- :key="item.loginid"
- :value="item.loginid">
- {{item.accountname}}-{{item.logincode}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="12">
- <a-form-item label="跟单员"
- name="MerUserID">
- <a-select class="inlineFormSelect"
- v-model:value="formState.MerUserID"
- style="width: 200px"
- placeholder="请选择跟单员">
- <a-select-option v-for="item in merchandiserList"
- :key="item.loginid"
- :value="item.loginid">
- {{item.accountname}}-{{item.logincode}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="交易用户"
- name="TradeUserID">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- v-model:value="formState.TradeUserID"
- placeholder="请选择期货账户">
- <a-select-option v-for="item in traderList"
- :key="item.roleid"
- :value="item.roleid">
- {{item.rolename}}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="24">
- <a-form-item label="备注"
- name="Remark">
- <a-input class="dialogInput"
- style="width: 608px"
- v-model:value="formState.Remark"
- placeholder="请输入备注" />
- </a-form-item>
- </a-col>
- </a-row>
- </fieldset>
- </a-form>
- <a-modal :visible="previewVisible"
- :footer="null"
- @cancel="cancelImg">
- <img alt="预览附件"
- style="width: 100%"
- :src="previewImage" />
- </a-modal>
- </a-modal>
- </template>
- <script lang="ts">
- import { defineComponent, PropType, ref } from 'vue';
- import { getUserName, getUsrId } from '@/services/bus/user';
- import { getGoodsList } from '@/services/bus/goods';
- import { Goods } from '@/services/go/ermcp/goodsInfo/interface';
- import { FormState } from '../interface';
- import { formatTime } from '@/common/methods/format';
- import { Ermcp3ContractRsp } from '@/services/go/ermcp/spot-contract/interface';
- import moment, { Moment } from 'moment';
- import { handleFormRule, handleContract, handleDeliveryGoods, handleAmout, handlePrice, handleDate, handleFromState } from '../setup';
- import { addContractReq } from '@/views/information/spot-contract/components/add/setup';
- import { mergeTwoObj } from '@/utils/objHandle';
- import { validateAction } from '@/common/setup/form';
- import { ErmcpLoginUser } from '@/services/go/ermcp/account/interface';
- import { handlerManagerList } from '@/common/setup/user';
- import { getUploadImg } from '@/common/setup/upload';
- import UploadImg from '@/common/components/uploadImg/index.vue';
- import { _closeModal } from '@/common/setup/modal/modal';
- export default defineComponent({
- name: 'spot_contract_btn_modify',
- emits: ['cancel', 'update'],
- props: {
- selectedRow: {
- type: Object as PropType<Ermcp3ContractRsp>,
- default: {},
- },
- },
- components: { UploadImg },
- setup(props, context) {
- const { visible, cancel } = _closeModal(context);
- const loading = ref<boolean>(false);
- const { sendReq } = addContractReq();
- const { formState, businessType } = handleFromState();
- // 表单
- const formRef = ref();
- const { rules } = handleFormRule(formState);
- // 合同类型
- const { contractType, isSell, contractChange, customList, queryCustomList } = handleContract(formState);
- // 处理现货商品
- const { deliveryGoodsList, gblist, gmlist, numberUnit, WrStandardChange, getDeliveryGoods, deliveryGoodsChange } = handleDeliveryGoods(formState);
- // 价格信息
- const { priceType, payCurrency, payCurrencyUnit, parCurrencyChange } = handlePrice(formState);
- // 日期
- const { deliveryDate, priceDate, disabledDate } = handleDate();
- // 处理金额
- const { getAmout } = handleAmout(formState);
- // 获取 业务账户
- const { queryTable: queryBusinessManager, getBusinesserOrMerchandiser } = handlerManagerList(loading, 1);
- const { tableList: traderList, queryTable: queryTradeManager } = handlerManagerList(loading, 2, true);
- // 业务员
- const businesserList = ref<ErmcpLoginUser[]>([]);
- // 跟单员
- const merchandiserList = ref<ErmcpLoginUser[]>([]);
- // 现货商品列表
- const goodsList = ref<Goods[]>([]);
- const { uploadImgAction, uploadImgList, handleImg } = getUploadImg();
- queryCustomList();
- getDeliveryGoods();
- goodsList.value = getGoodsList();
- queryBusinessManager().then(() => {
- businesserList.value = getBusinesserOrMerchandiser('22');
- merchandiserList.value = getBusinesserOrMerchandiser('23');
- });
- queryTradeManager();
- mergeTwoObj(formState, props.selectedRow);
- isSell.value = formState.ContractType === 1 ? false : true;
- const { deliverygoodsid, qty, price, wrstandardid, spotgoodsbrandid, currencyid, attachment, deliverystartdate, deliveryenddate, startdate, enddate } = props.selectedRow;
- if (deliverygoodsid) {
- deliveryGoodsChange(deliverygoodsid);
- if (wrstandardid) {
- WrStandardChange(wrstandardid);
- formState.WrStandardID = wrstandardid;
- formState.SpotGoodsBrandID = spotgoodsbrandid;
- }
- }
- formState.Qty = qty.toString();
- formState.Price = price.toString();
- formState.CurrencyID = currencyid;
- formState.ContractAttachment = attachment;
- if (deliverystartdate) {
- deliveryDate.value.push(moment(deliverystartdate));
- }
- if (deliveryenddate) {
- deliveryDate.value.push(moment(deliveryenddate));
- }
- if (startdate) {
- priceDate.value.push(moment(startdate));
- }
- if (enddate) {
- priceDate.value.push(moment(enddate));
- }
- if (attachment) {
- uploadImgList.value = handleImg(attachment);
- }
- function submit() {
- validateAction<FormState>(formRef, formState).then((param) => {
- const id = getUsrId();
- isSell.value ? (param.SellUserID = id) : (param.BuyUserID = id);
- const fn = (value: Moment) => {
- return formatTime(value, 'd') + ' ' + '00:00:00';
- };
- // 交收期
- const dDate = deliveryDate.value;
- if (dDate.length) {
- const DeliveryStartDate = fn(dDate[0]);
- const DeliveryEndDate = fn(dDate[1]);
- Object.assign(param, { DeliveryStartDate, DeliveryEndDate });
- }
- // 点价期
- const pDate = priceDate.value;
- if (pDate.length && param.PriceType !== 1) {
- // 点价日期[2:点价3:暂定价]
- const StartDate = fn(pDate[0]);
- const EndDate = fn(pDate[1]);
- Object.assign(param, { StartDate, EndDate });
- }
- sendReq(param, loading, 2)
- .then((res) => {
- cancel(true);
- })
- .catch((err) => {});
- });
- }
- return {
- visible,
- cancel,
- submit,
- formRef,
- loading,
- maskClosableFlag: false,
- formState,
- rules,
- businessType,
- contractType,
- isSell,
- contractChange,
- customList,
- deliveryGoodsList,
- gblist,
- gmlist,
- deliveryGoodsChange,
- WrStandardChange,
- priceType,
- payCurrency,
- payCurrencyUnit,
- parCurrencyChange,
- numberUnit,
- getUserName,
- deliveryDate,
- priceDate,
- disabledDate,
- goodsList,
- getAmout,
- traderList,
- businesserList,
- merchandiserList,
- uploadImgAction,
- uploadImgList,
- };
- },
- });
- </script>
- <style lang="less">
- .modify-custom {
- }
- </style
- >;
|