| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <template>
- <!-- 采购合同-入库登记-->
- <a-modal class="commonModal"
- title="采购合同-入库登记"
- v-model:visible="visible"
- centered
- @cancel="cancel"
- width="890px">
- <template #footer>
- <a-button key="submit"
- class="cancelBtn"
- @click="cancel">取消</a-button>
- <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="合同编号">
- <span class="white">{{ formatValue(selectedRow.contractno) }}</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item :label="selectedRow.contracttype===1? '采购方': '销售方'">
- <span class="white">{{ formatValue(selectedRow.accountname) }}</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-col :span="12">
- <a-form-item label="合同签署量">
- <span class="white">{{formatValue(selectedRow.qty)}}</span>
- </a-form-item>
- </a-col>
- </a-row>
- </fieldset>
- <fieldset class="formFieldSet">
- <legend>已登记信息</legend>
- <a-row :gutter="24">
- <a-col :span="12"
- v-for="(item, i) in DGList"
- :key="i">
- <a-form-item label="已入库量">
- <span class="white">{{item.wrstandardname}} + {{item.brandname}}</span>
- </a-form-item>
- </a-col>
- <!-- <a-col :span="12">
- <a-form-item label="已入库量2">
- <span class="white">品类2+品牌2(66吨)</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="已入库量3">
- <span class="white">品类3+品牌3(1000吨)</span>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="已入库量4">
- <span class="white">品类4+品牌4(5吨)</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="品类">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- placeholder="请选择品类"
- v-model:value="selectedRow.wrstandardid"
- readonly>
- <a-select-option v-for="option in gmlist"
- :key="option.wrstandardid"
- :value="option.wrstandardid">{{option.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"
- placeholder="请选择品牌"
- v-model:value="formState.SpotGoodsBrandID">
- <a-select-option v-for="option in gblist"
- :key="option.brandid"
- :value="option.brandid">{{option.brandname}}</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="入库仓库"
- name="WarehouseInfo">
- <a-select class="inlineFormSelect"
- style="width: 200px"
- placeholder="请选择入库仓库"
- v-model:value="formState.WarehouseInfo">
- <a-select-option v-for="option in wareHouseList"
- :key="option.autoid"
- :value="option.autoid">{{option.warehousename}}</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :span="12">
- <a-form-item label="入库数量"
- name="Qty">
- <a-input-number class="dialogInput"
- style="width: 200px"
- suffix="单位"
- placeholder="请输入入库数量"
- v-model:value="formState.Qty">
- </a-input-number>
- </a-form-item>
- </a-col>
- </a-row>
- </fieldset>
- </a-form>
- </a-modal>
- </template>
- <script lang="ts">
- import { defineComponent, PropType, ref, unref } from 'vue';
- import { Ermcp3SellBuyContract } from '@/services/go/ermcp/purchase/interface';
- import { ERMCPAreaInOutStockApplyReq } from '@/services/proto/warehouse/interface';
- import { QueryAreaStockApply, QueryWareHouse } from '@/services/go/ermcp/warehouse-info/index';
- import * as Long from 'long';
- import { formatValue } from '@/common/methods';
- import { handleForm } from './setup';
- import APP from '@/services';
- import { ErmcpWareHouseInfo } from '@/views/information/warehouse-info/list';
- import { requestResultLoadingAndInfo } from '@/common/methods/request/resultInfo';
- import { message } from 'ant-design-vue';
- import { Ermcp3AreaStockApplySum } from '@/services/go/ermcp/warehouse-info/interface';
- import { ermcpInOutStockApplyReq } from '@/services/proto/warehouse';
- import { _closeModal } from '@/common/setup/modal/modal';
- export default defineComponent({
- name: 'purchase_pending_storage',
- emits: ['cancel', 'update'],
- components: {},
- props: {
- selectedRow: {
- type: Object as PropType<Ermcp3SellBuyContract>,
- default: {},
- },
- },
- setup(props, context) {
- const { visible, cancel } = _closeModal(context);
- const { rules, formState, formRef } = handleForm();
- const loading = ref<boolean>(false);
- const wareHouseList = ref<ErmcpWareHouseInfo[]>([]);
- const gblist = ref<[]>([]);
- const gmlist = ref<[]>([]);
- const DGList = ref<Ermcp3AreaStockApplySum[]>([]);
- QueryAreaStockApply(props.selectedRow.spotcontractid)
- .then((res) => {
- DGList.value = res.filter((e) => e.inouttype === 1);
- })
- .catch((err) => message.error(err));
- const deliverygoods = APP.get('DeliveryGoodsList').find((x: any) => x.deliverygoodsid === props.selectedRow.deliverygoodsid);
- gblist.value = deliverygoods && deliverygoods.gblist;
- gmlist.value = deliverygoods && deliverygoods.gmlist;
- // 查询仓库信息
- QueryWareHouse('1').then((res) => {
- wareHouseList.value = res;
- });
- function submit() {
- const wrapEl = unref(formRef);
- wrapEl.validate().then(() => {
- const params: ERMCPAreaInOutStockApplyReq = {
- InOutType: 5, // 5:采购入库 6:销售出库 7:生产入库 8:生产出库
- WRStandardID: props.selectedRow.wrstandardid, //品类ID
- SpotGoodsBrandID: formState.SpotGoodsBrandID || 0, //现货品牌ID(DGFactoryItem表的ID)
- DeliveryGoodsID: props.selectedRow.deliverygoodsid, //现货商品ID
- SpotContractID: Long.fromString(props.selectedRow.spotcontractid), //合同ID
- WarehouseInfo: formState.WarehouseInfo || 0, // uint64 现货仓库ID
- Qty: formState.Qty || 0, // double 数量t
- ApplyRemark: '', // string 申请备注
- };
- requestResultLoadingAndInfo(ermcpInOutStockApplyReq, params, loading, ['入库登记成功', '入库登记失败:']).then(() => {
- cancel(true);
- });
- });
- }
- return {
- visible,
- cancel,
- submit,
- loading,
- formatValue,
- rules,
- formState,
- formRef,
- wareHouseList,
- gblist,
- gmlist,
- DGList,
- };
- },
- });
- </script>
- <style lang="less">
- </style>;
|