| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646 |
- <template>
- <!-- 修改现货品种 -->
- <a-modal class="commonModal addSpotVariety"
- title="修改现货品种"
- v-if="visible"
- v-model:visible="visible"
- centered
- :maskClosable="false"
- @cancel="cancel"
- 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="deliverygoodsname">
- <a-input class="dialogInput"
- v-model:value="formState.deliverygoodsname"
- style="width: 200px"
- placeholder="请输入现货品种名称" />
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="现货品种代码"
- name="deliverygoodscode">
- <a-input class="dialogInput"
- style="width: 200px"
- v-model:value="formState.deliverygoodscode"
- placeholder="请输入现货品种代码" />
- </a-form-item>
- </a-col>
- </a-row>
- <a-row :gutter="24">
- <a-col :span="24">
- <a-form-item label="单位"
- name="unitid">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- v-model:value="formState.unitid"
- placeholder="请选择单位">
- <a-select-option v-for="item in unitList"
- :value="item.enumitemname"
- :key="item.autoid">
- {{ item.enumdicname }}
- </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"
- v-model:value="formState.remark"
- style="width: 588px"
- placeholder="请输入备注" />
- </a-form-item>
- </a-col>
- </a-row>
- </fieldset>
- <fieldset class="formFieldSet">
- <legend>商品信息</legend>
- <a-row :gutter="24"
- class="dialogRowTitle">
- <a-col :span="6">
- <span>
- <span class="red">*</span>
- 商品
- </span>
- </a-col>
- <a-col :span="6">
- <span>
- <span class="red">*</span>
- 单位
- </span>
- </a-col>
- <a-col :span="6">
- <span>
- <span class="red">*</span>
- 标仓系数
- </span>
- </a-col>
- <a-col :span="6">
- <span>
- 操作
- </span>
- </a-col>
- <template v-for="(domain, index) in formState.gldwrstandards"
- :key="domain.index + 'domain'">
- <a-col :span="6">
- <a-form-item :name="['gldwrstandards',index, 'wrstandardname', ]"
- :rules="rules.gldwrstandards.wrstandardname">
- <a-input class="dialogInput"
- v-model:value="domain.wrstandardname"
- placeholder="请输入商品"></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item :name="['gldwrstandards',index,'unitid' ]"
- :rules="rules.gldwrstandards.unitid">
- <a-select class="inlineFormSelect"
- v-model:value="domain.unitid"
- placeholder="请选择单位">
- <a-select-option v-for="item in unitList"
- :value="item.enumitemname"
- :key="item.autoid">
- {{ item.enumdicname }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item :name="['gldwrstandards',index,'convertfactor']"
- :rules="rules.gldwrstandards.convertfactor">
- <a-input-number class="dialogInput"
- style="width: 200px"
- :min="0"
- v-model:value="domain.convertfactor"
- placeholder="请输入标仓系数"></a-input-number>
- </a-form-item>
- </a-col>
- <a-col :span="6"
- class="tc">
- <a-button class="plusBtn"
- @click="deleteOne('gldwrstandards', index)"
- v-if="index > 0">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- <a-button class="minusBtn"
- @click="addOne('gldwrstandards')">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- </a-col>
- </template>
- </a-row>
- </fieldset>
- <fieldset class="formFieldSet">
- <legend>品牌信息</legend>
- <a-row :gutter="24"
- class="dialogRowTitle dialogRowTitle2">
- <a-col :span="12">
- <span>
- <span class="red">*</span>
- 品牌
- </span>
- </a-col>
- <a-col :span="12">
- <span>
- 操作
- </span>
- </a-col>
- <template v-for="(domain, index) in formState.glddgfactoryItems"
- :key="domain.index + 'domain'">
- <a-col :span="12">
- <a-form-item :name="['glddgfactoryItems',index,'dgfactoryitemvalue']"
- :rules="rules.glddgfactoryItems.dgfactoryitemvalue">
- <a-input class="dialogInput"
- v-model:value="domain.dgfactoryitemvalue"
- placeholder="请输入品牌"></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-button class="plusBtn"
- @click="deleteOne('glddgfactoryItems', index)"
- v-if="index > 0">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- <a-button class="minusBtn"
- @click="addOne('glddgfactoryItems')">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- </a-col>
- </template>
- </a-row>
- </fieldset>
- <fieldset class="formFieldSet">
- <legend>套保品种信息</legend>
- <a-row :gutter="24"
- class="dialogRowTitle">
- <a-col :span="6">
- <span>
- <span class="red">*</span>
- 套保品种
- </span>
- </a-col>
- <a-col :span="6">
- <span>
- <span class="red">*</span>
- 单位
- </span>
- </a-col>
- <a-col :span="6">
- <span>
- <span class="red">*</span>
- 套保系数
- </span>
- </a-col>
- <a-col :span="6">
- <span>
- 操作
- </span>
- </a-col>
- <template v-for="(domain, index) in formState.wrsconvertdetails"
- :key="domain.index + 'domain'">
- <a-col :span="6">
- <a-form-item :name="['wrsconvertdetails',index,'middlegoodsid']"
- :rules="rules.wrsconvertdetails.middlegoodsid">
- <a-select class="inlineFormSelect"
- @change="middleChange(domain.middlegoodsid, domain)"
- v-model:value="domain.middlegoodsid"
- placeholder="请选择套保品种">
- <a-select-option v-for="item in goodsGroup"
- :value="item.goodsgroupid"
- :key="item.goodsgroupid">
- {{ item.goodsgroupname }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item :name="['wrsconvertdetails', index, 'unitidName']">
- <a-input class="dialogInput"
- readonly
- v-model:value="domain.unitidName"
- placeholder="选择套保品种后自动填入"></a-input>
- </a-form-item>
- </a-col>
- <a-col :span="6">
- <a-form-item :name="['wrsconvertdetails', index, 'convertratio']"
- :rules="rules.wrsconvertdetails.convertratio">
- <a-input-number class="dialogInput"
- style="width: 200px"
- :min="0"
- v-model:value="domain.convertratio"
- placeholder="请输入套保系数"></a-input-number>
- </a-form-item>
- </a-col>
- <a-col :span="6"
- class="tc">
- <a-button class="plusBtn"
- @click="deleteOne('wrsconvertdetails', index)"
- v-if="index > 0">
- <template #icon>
- <MinusOutlined />
- </template>
- </a-button>
- <a-button class="minusBtn"
- @click="addOne('wrsconvertdetails')">
- <template #icon>
- <PlusOutlined />
- </template>
- </a-button>
- </a-col>
- </template>
- </a-row>
- </fieldset>
- </a-form>
- </a-modal>
- </template>
- <script lang="ts">
- import { defineComponent, PropType, ref, watchEffect } from 'vue';
- import { closeModal } from '@/common/setup/modal/index';
- import { initData } from '@/common/methods/index';
- import { PlusOutlined, MinusOutlined } from '@ant-design/icons-vue';
- import { handleFromState, handleGoodsGroup } from './setup';
- import { RuleObject } from 'ant-design-vue/es/form/interface';
- import { FormState, WRSConvertDetailEx } from './interface';
- import { validateCommon } from '@/common/setup/validate';
- import { initDG } from '../../list/spot-variety/setup';
- import { ErmcpDeliveryGoodsDetailEx } from '@/services/go/ermcp/goodsInfo/interface';
- import { mergeTwoObj } from '@/utils/objHandle';
- import { getGoodsUnitEnumList } from '@/common/constants/enumsList';
- import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
- import { addDeliveryGoodsApply } from '@/services/proto/delivery';
- import { DeliveryGoodsApplyReq } from '@/services/proto/delivery/interface';
- import { validateAction } from '@/common/setup/form';
- interface Obj {
- [props: string]: any;
- }
- /**
- * 检验单位
- */
- const validateUnit = async (rule: RuleObject, value: number) => {
- return validateCommon(value, '请选择单位');
- };
- /**
- *
- */
- const valideteWR = async (rule: RuleObject, value: number) => {
- return validateCommon(value, '请选择商品');
- };
- export default defineComponent({
- name: 'modify-custom',
- props: {
- selctedDeliveryGoods: {
- default: initDG,
- type: Object as PropType<ErmcpDeliveryGoodsDetailEx>,
- },
- },
- components: {
- PlusOutlined,
- MinusOutlined,
- },
- setup(props, context) {
- // 控制关闭弹窗
- const { visible, cancel } = closeModal('goods_info_spot_normal_modify');
- // 下单方法
- const loading = ref<boolean>(false);
- // 单位列表
- const unitList = getGoodsUnitEnumList();
- // 表单
- const formRef = ref();
- const { formState, addOne, deleteOne } = handleFromState();
- const rules = {
- deliverygoodsname: [{ required: true, message: '请输入现货品种名称', trigger: 'blur' }],
- // unitid: [{ required: true, message: '请选择单位', trigger: 'change' }],
- unitid: [{ required: true, validator: validateUnit, trigger: 'change' }],
- gldwrstandards: {
- unitid: { required: true, validator: validateUnit, trigger: 'change' },
- wrstandardname: { required: true, message: '请输入商品', trigger: 'blur' },
- convertfactor: { required: true, message: '请输入标仓系数', trigger: 'blur', type: 'number' },
- },
- glddgfactoryItems: {
- dgfactoryitemvalue: { required: true, message: '请输入品牌', trigger: 'blur' },
- },
- wrsconvertdetails: {
- middlegoodsid: { required: true, validator: valideteWR, trigger: 'change' },
- convertratio: { required: true, message: '请输入套保系数', trigger: 'blur', type: 'number' },
- },
- };
- function submit() {
- validateAction<FormState>(formRef, formState).then((param) => {
- const unitid = param.unitid === undefined ? 0 : param.unitid;
- const reqParam: DeliveryGoodsApplyReq = {
- deliverygoodsid: param.deliverygoodsid,
- unitid: unitid,
- deliverygoodsname: param.deliverygoodsname,
- deliverygoodscode: param.deliverygoodscode,
- type: 2,
- remark: param.remark,
- gldwrstandards: param.gldwrstandards.map((value) => {
- const gldunitid = value.unitid === undefined ? 0 : value.unitid;
- const convertfactors: any = value.convertfactor === null ? 0 : value.convertfactor;
- return {
- wrstandardid: value.wrstandardid,
- wrstandardname: value.wrstandardname,
- unitid: gldunitid,
- convertfactor: (convertfactors as string) ? Number(convertfactors) : convertfactors,
- };
- }),
- glddgfactoryItems: param.glddgfactoryItems,
- wrsconvertdetails: param.wrsconvertdetails.map((value) => {
- const middlegoodsid = value.middlegoodsid === undefined ? 0 : value.middlegoodsid;
- const convertratio: any = value.convertratio === null ? 0 : value.convertratio;
- const wrsunitid = value.unitid === null ? 0 : value.unitid;
- return {
- middlegoodsid: middlegoodsid,
- convertratio: convertratio ? Number(convertratio) : convertratio,
- unitid: wrsunitid,
- };
- }),
- };
- requestResultLoadingAndInfo(addDeliveryGoodsApply, reqParam, loading, ['修改现货品种成功', '修改现货品种失败:']).then(() => {
- cancel();
- context.emit('refresh');
- });
- });
- }
- const { goodsGroup, getGoodsGroup } = handleGoodsGroup();
- /**
- * 切换套保品种时候,获取对应的单位
- */
- function middleChange(id: number, value: WRSConvertDetailEx) {
- const obj = goodsGroup.value.find((e) => e.goodsgroupid === id);
- if (obj) {
- value.unitidName = obj.enumdicname;
- value.unitid = obj.goodunitid;
- }
- }
- watchEffect(() => {
- if (props.selctedDeliveryGoods.data.deliverygoodsname) {
- const { data, gblist, gmlist, mgList } = props.selctedDeliveryGoods;
- mergeTwoObj(formState, props.selctedDeliveryGoods);
- mergeTwoObj(formState, data);
- // 单位
- formState.unitid = data.goodsunitid;
- // 品类
- formState.gldwrstandards = gmlist.map((e) => {
- const { wrstandardid, wrstandardname, convertfactor, unitid } = e;
- return { wrstandardid, wrstandardname, convertfactor: convertfactor, unitid };
- });
- // 品牌
- formState.glddgfactoryItems = gblist.map((e) => {
- const { brandid, brandname } = e;
- return { dgfactoryitemid: brandid, dgfactoryitemvalue: brandname };
- });
- // 套保信息
- formState.wrsconvertdetails = mgList.map((e) => {
- const { goodsgroupid, goodsunitid, enumdicname } = e.mg;
- return {
- middlegoodsid: goodsgroupid,
- unitid: goodsunitid,
- unitidName: enumdicname,
- convertratio: e.convertratio,
- };
- });
- }
- });
- initData(() => {
- getGoodsGroup();
- });
- return {
- visible,
- cancel,
- formRef,
- formState,
- addOne,
- deleteOne,
- rules,
- unitList,
- goodsGroup,
- middleChange,
- submit,
- loading,
- maskClosableFlag: false,
- };
- },
- });
- </script>
- <style lang="less">
- .addSpotVariety {
- width: 100%;
- height: 100%;
- // padding: 30px;
- .ant-form.inlineForm .ant-row.ant-form-item .ant-form-item-label {
- width: 120px !important;
- }
- .upload {
- display: inline-flex;
- .ant-btn.uploadBtn {
- width: 60px;
- height: 30px;
- background: @m-blue0;
- border: 0;
- padding: 0;
- text-align: center;
- font-size: 14px;
- color: @m-white0;
- .rounded-corners(3px);
- &:hover {
- background: rgba(@m-blue0, 0);
- color: rgba(@m-white0, 0.8);
- }
- }
- .look {
- color: @m-blue0;
- font-size: 14px;
- margin-left: 10px;
- cursor: pointer;
- }
- }
- .red {
- color: @m-red1;
- }
- .ant-btn.minusBtn,
- .ant-btn.plusBtn {
- width: 26px;
- height: 26px;
- .inlineflex;
- justify-content: center;
- background: @m-blue0;
- .rounded-corners(3px);
- border: 0;
- .anticon {
- font-size: 12px;
- color: @m-white0;
- align-self: center;
- align-items: center;
- }
- &:hover,
- &:focus {
- background: rgba(@m-blue0, 0.8);
- .anticon {
- color: rgba(@m-white0, 0.8);
- }
- }
- }
- .ant-btn.plusBtn {
- margin-right: 10px;
- background: transparent;
- border: 1px solid #3a87f7;
- .anticon {
- color: @m-blue0;
- }
- }
- .white {
- color: @m-white0;
- }
- .dialogTable {
- .ant-table {
- .ant-table-content {
- .ant-table-body {
- table {
- tr {
- td {
- padding: 0;
- .ant-input.dialogInput {
- height: 34px;
- line-height: 34px;
- border: 0;
- border-radius: 0;
- }
- .dialogSelect.ant-select-single {
- float: left;
- margin-right: 0;
- .ant-select-selector {
- padding: 0 10px;
- height: 34px;
- background: @m-grey21;
- border: 0;
- border-radius: 0;
- .ant-select-selection-placeholder {
- color: @m-grey10;
- text-align: left;
- }
- }
- .ant-select-arrow {
- color: @m-blue0;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- .ant-form.inlineForm {
- .ant-row.dialogRowTitle {
- .ant-col {
- .ant-row.ant-form-item {
- .ant-col.ant-form-item-control-wrapper {
- width: 100%;
- .ant-form-item-control {
- .ant-form-item-children {
- .ant-input.dialogInput {
- border-radius: 0;
- margin-top: 1px;
- // margin-left: -1px;
- // width: calc(100% + 2px);
- }
- .ant-select.inlineFormSelect {
- margin-top: 1px;
- .ant-select-selector {
- text-align: left;
- }
- }
- }
- }
- .ant-form-item-control.has-error {
- text-align: left;
- .ant-form-item-children {
- .ant-input.dialogInput {
- background: @m-grey21;
- }
- }
- .ant-form-explain {
- color: @m-red1;
- }
- }
- }
- }
- }
- .ant-col {
- text-align: center;
- }
- }
- .ant-row.dialogRowTitle2 {
- .ant-col:nth-child(3),
- .ant-col:nth-child(4) {
- border-top: 1px solid @m-grey20;
- }
- }
- }
- }
- </style
- >;
|