cosmoim-852 fix 新增线边库半成品移库
parent
62a1402b5a
commit
7e7eaa1dbf
@ -0,0 +1,39 @@
|
||||
/**
|
||||
* 看单交接明细表格列
|
||||
*/
|
||||
import vm from '@/main';
|
||||
export const headers = [
|
||||
{
|
||||
label: vm.$t('message.Delivery'),
|
||||
key: 'proMoveCode', //单号
|
||||
width: 250,
|
||||
},
|
||||
{
|
||||
label: vm.$t('message.ModelCode'),
|
||||
key: 'materialCode', //型号编码
|
||||
width: 220,
|
||||
},
|
||||
{
|
||||
label: vm.$t('message.ModelName'),
|
||||
key: 'materialDesc', //型号名称
|
||||
width: 460,
|
||||
},
|
||||
{
|
||||
label: vm.$t('message.product_barCode'),
|
||||
key: 'barCode', //条码号
|
||||
width: 280,
|
||||
},
|
||||
{
|
||||
label: vm.$t('message.SourceLocation'),
|
||||
key: 'wlFromCode', //源库位
|
||||
},
|
||||
{
|
||||
label: vm.$t('message.Warehouse_TargetLocation'),
|
||||
key: 'wlToCode', //目标库位
|
||||
},
|
||||
{
|
||||
label: vm.$t('message.operatingTime'),
|
||||
key: 'moveTime', //操作时间
|
||||
width: 475,
|
||||
},
|
||||
];
|
@ -0,0 +1,100 @@
|
||||
<template>
|
||||
<view class="page-kan-dan-detail">
|
||||
<view class="header" :style="{ backgroundColor: `rgba(23, 83, 234, ${scrollTop / 100})` }">
|
||||
<view class="left">
|
||||
<u-icon class="icon" name="arrow-left" @click="uni.navigateBack({})" />
|
||||
</view>
|
||||
<view class="title">{{ $t('message.Warehouse_TransferDetails') }}</view>
|
||||
<view class="right"></view>
|
||||
</view>
|
||||
<wyb-table class="table" ref="table" width="100%" show-left-and-right-border :headers="headers" :contents="model.detailedList" :show-vert-border="false" />
|
||||
</view>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { Component } from 'vue-property-decorator';
|
||||
import { BasePage } from '@/components/base/page';
|
||||
import model from './model';
|
||||
import { headers } from './config';
|
||||
@Component
|
||||
export default class KanDanHandOverDetails extends BasePage {
|
||||
order = '';
|
||||
headers = headers;
|
||||
model = model;
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.page-kan-dan-detail {
|
||||
background: #f2f2f2 linear-gradient(0deg, #f2f2f2 0%, #4a78ea 51%, #1753ea 100%) no-repeat;
|
||||
background-size: 100% 600rpx;
|
||||
padding: 118rpx 30rpx 162rpx;
|
||||
min-height: 100%;
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 36rpx;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 99;
|
||||
display: flex;
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
color: #fff;
|
||||
font-size: 34rpx;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
.title {
|
||||
flex: 3;
|
||||
}
|
||||
.left,
|
||||
.right {
|
||||
flex: 1;
|
||||
}
|
||||
.icon {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 88rpx;
|
||||
height: 88rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.form {
|
||||
background-color: #fff;
|
||||
padding: 40rpx;
|
||||
border-radius: 10rpx;
|
||||
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
||||
|
||||
.u-form-item {
|
||||
padding: 30rpx 0;
|
||||
line-height: 35rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.bottom-bar {
|
||||
z-index: 21;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
|
||||
.container {
|
||||
background: #ffffff;
|
||||
box-shadow: 0 1rpx 20rpx 0 rgba(128, 128, 128, 0.2);
|
||||
padding: 20rpx;
|
||||
}
|
||||
|
||||
.extra {
|
||||
background-color: #fff;
|
||||
margin: 5px;
|
||||
border-radius: 5px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.bottom-info {
|
||||
.u-form-item {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
@ -0,0 +1,338 @@
|
||||
<template>
|
||||
<view class="page-product-receipt">
|
||||
<view class="header" :style="{ backgroundColor: `rgba(23, 83, 234, ${scrollTop / 100})` }">
|
||||
<view class="left">
|
||||
<u-icon class="icon" name="arrow-left" @click="uni.navigateBack({})" />
|
||||
</view>
|
||||
<view class="title">{{ $t('message.semi_finished_Transfer') }}</view>
|
||||
<view class="right"></view>
|
||||
</view>
|
||||
<u-form class="form" ref="form" :model="form" label-width="180rpx">
|
||||
<!-- 移库码 -->
|
||||
<view class="single">
|
||||
<view class="single-left">
|
||||
<view>{{ $t('message.Batch') }}</view>
|
||||
<u-search :placeholder="$t('message.batch')" class="Transfer" v-model.trim="userDefined4" @search="QueryHistory" :show-action="false"></u-search>
|
||||
</view>
|
||||
<view class="single-right">
|
||||
<u-button type="primary" style="height: 60rpx; width: 140rpx" @click="generate">{{ $t('message.generate') }}</u-button>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 总数 -->
|
||||
<u-form-item :label="$t('message.Warehouse_TotalNumber')">
|
||||
<u-input :disabled="true" v-model="allNum" placeholder="" />
|
||||
</u-form-item>
|
||||
<!-- 半成品编码 -->
|
||||
<u-form-item :label="$t('message.coding')">
|
||||
<jPicker sureColor="#ff0000" @bindpicker="selectItem" showKey="value" valKey="value" :val="remove.value" :options="model.removeMaterialList" />
|
||||
</u-form-item>
|
||||
<!-- 半成品描述 -->
|
||||
<u-form-item :label="$t('message.Description')">
|
||||
<u-input :disabled="true" v-model="histroyItem.materialDesc" placeholder="" style="overflow: hidden" />
|
||||
</u-form-item>
|
||||
<!-- 数量 -->
|
||||
<u-form-item :label="$t('message.product_Number')">
|
||||
<u-input :disabled="true" v-model="histroyItem.proNum" placeholder="" />
|
||||
</u-form-item>
|
||||
<!-- 条码 -->
|
||||
<u-form-item :required="true" :label="$t('message.product_barCode')" prop="productCode">
|
||||
<u-search :placeholder="$t('message.po_PleaseInput')" v-model.trim="form.productCode" @search="query" :show-action="false"></u-search>
|
||||
</u-form-item>
|
||||
<!-- 库位 -->
|
||||
<u-form-item :label="$t('message.product_Location')">
|
||||
<u-input :disabled="true" v-model="model.orderInInfo.locCode" placeholder="" />
|
||||
</u-form-item>
|
||||
<!-- 目标库位 -->
|
||||
<u-form-item :required="true" :label="$t('message.Warehouse_TargetLocation')" prop="aimWl">
|
||||
<jPicker sureColor="#ff0000" @bindpicker="bookTypeChange" showKey="value" valKey="value" :val="form.aimWl.value" :options="model.WlList" />
|
||||
</u-form-item>
|
||||
</u-form>
|
||||
<view class="bottom-bar">
|
||||
<u-row class="button-bar">
|
||||
<!-- 移库明细 -->
|
||||
<u-col :span="4">
|
||||
<u-button type="primary" @click="bill">{{ $t('message.detailed') }}</u-button>
|
||||
</u-col>
|
||||
<!-- 确定 -->
|
||||
<u-col :span="4">
|
||||
<u-button type="primary" @click="onSubmit">{{ $t('message.workArea_Confirm') }}</u-button>
|
||||
</u-col>
|
||||
<!-- 返回 -->
|
||||
<u-col :span="4">
|
||||
<u-button type="error" @click="uni.navigateBack({})">{{ $t('message.po_Return') }}</u-button>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { Component, Ref } from 'vue-property-decorator';
|
||||
import { BasePage } from '@/components/base/page';
|
||||
import jPicker from '@/components/J-Picker/jPicker.vue';
|
||||
import { VForm, VFormRules } from 'vue/types/form';
|
||||
import model from './model';
|
||||
import { session } from '@/store/modules/session';
|
||||
interface OptionType {
|
||||
label: string;
|
||||
value: string;
|
||||
}
|
||||
@Component({
|
||||
components: {
|
||||
jPicker,
|
||||
},
|
||||
})
|
||||
export default class productCheckReceipt extends BasePage {
|
||||
//表单引用
|
||||
@Ref('form') readonly $form!: VForm;
|
||||
model = model;
|
||||
form = {
|
||||
aimWl: {} as OptionType,
|
||||
productCode: '',
|
||||
};
|
||||
remove: any = {};
|
||||
allNum = 0;
|
||||
userDefined4: any = '';
|
||||
histroyItem: any = {};
|
||||
aimWlSelect = false;
|
||||
cboPlaceSelect = false;
|
||||
rules: VFormRules<any> = {
|
||||
documentNo: [{ required: true, message: this.$t('message.Warehouse_Tip1') as string }],
|
||||
aimWl: [{ required: true, message: this.$t('message.Warehouse_Tip3') as string }],
|
||||
cboPlace: [{ required: true, message: this.$t('message.Warehouse_Tip4') as string }],
|
||||
};
|
||||
value = '';
|
||||
show = false;
|
||||
//选择目标库位回调函数
|
||||
bookTypeChange(e: any) {
|
||||
this.form.aimWl = e.pickerName;
|
||||
}
|
||||
selectItem(e: any) {
|
||||
this.remove = e.pickerName;
|
||||
this.model.removeList.forEach((item: any) => {
|
||||
if (item.materialCode == this.remove.value) {
|
||||
this.histroyItem = item;
|
||||
console.log('this.histroyItem', this.histroyItem);
|
||||
}
|
||||
});
|
||||
}
|
||||
//扫描条码回车
|
||||
async query() {
|
||||
if (this.form.productCode == ' ' || this.form.productCode.length == 0) {
|
||||
this.customToast(this.$t('message.product_unit7') as string);
|
||||
return;
|
||||
}
|
||||
if (this.userDefined4 == '' || this.userDefined4.length == 0) {
|
||||
this.customToast(this.$t('message.Warehouse_Tip') as string);
|
||||
return;
|
||||
}
|
||||
await model.getProductCode(this.form.productCode);
|
||||
if (this.model.code == '1') {
|
||||
uni.showToast({
|
||||
//icon: 'success',
|
||||
title: this.$t('message.successful') as string,
|
||||
duration: 2000,
|
||||
image: '/static/icons/icon-51.png',
|
||||
});
|
||||
}
|
||||
}
|
||||
//查询已扫物料
|
||||
async QueryHistory() {
|
||||
if (this.userDefined4 == ' ' || this.userDefined4.length == 0) {
|
||||
this.customToast(this.$t('message.barcode') as string);
|
||||
return;
|
||||
}
|
||||
this.allNum = 0;
|
||||
let params = {
|
||||
loginName: session.loginName,
|
||||
factoryCode: session.factoryCode,
|
||||
proMoveCode: this.userDefined4,
|
||||
};
|
||||
await this.model.QueryHistory(params);
|
||||
this.model.removeList.forEach((item: any) => {
|
||||
this.allNum += parseFloat(item.proNum);
|
||||
});
|
||||
if (this.model.removeMaterialList.length == 0) {
|
||||
this.remove = {};
|
||||
this.histroyItem.proNum = 0;
|
||||
this.histroyItem.materialDesc = '';
|
||||
console.log('11111111111111111');
|
||||
console.log('this.histroyItem', this.histroyItem);
|
||||
} else {
|
||||
this.remove = this.model.removeMaterialList[0];
|
||||
this.model.removeList.forEach((item: any) => {
|
||||
if (item.materialCode == this.remove.value) {
|
||||
this.histroyItem = item;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
//页面初始化
|
||||
async onReady() {
|
||||
this.$form.setRules(this.rules);
|
||||
this.model.empty();
|
||||
await this.model.queryLocation();
|
||||
this.form.aimWl = this.model.WlList[0];
|
||||
}
|
||||
// async onShow() {
|
||||
// await this.model.queryLocation();
|
||||
// this.form.aimWl = this.model.WlList[0];
|
||||
// }
|
||||
//点击生成随机移库码
|
||||
async generate() {
|
||||
let params = {
|
||||
loginName: session.loginName,
|
||||
factoryCode: session.factoryCode,
|
||||
};
|
||||
await this.model.getCpMoveBatchNo(params);
|
||||
this.userDefined4 = model.userDefined;
|
||||
}
|
||||
//移库明细
|
||||
async bill() {
|
||||
if (this.userDefined4 == ' ' || this.userDefined4.length == 0) {
|
||||
this.customToast(this.$t('message.LibraryCode') as string);
|
||||
return;
|
||||
}
|
||||
await this.model.querydetaildle(this.userDefined4);
|
||||
this.toPage(this.page.raw.LineSide.semifinishedTransfer.detail);
|
||||
}
|
||||
//移库确认
|
||||
onSubmit() {
|
||||
this.$form.validate(async (valid: boolean) => {
|
||||
if (!valid) return;
|
||||
if (this.userDefined4 == ' ' || this.userDefined4.length == 0) {
|
||||
this.customToast(this.$t('message.LibraryCode') as string);
|
||||
return;
|
||||
}
|
||||
if (!this.form.productCode) {
|
||||
this.customToast(this.$t('message.Warehouse_Tip5') as string);
|
||||
return;
|
||||
}
|
||||
if (!this.form.aimWl.value) {
|
||||
this.customToast(this.$t('message.Warehouse_Tip3') as string);
|
||||
return;
|
||||
}
|
||||
if (this.form.aimWl.value == model.orderInInfo.locCode) {
|
||||
this.customToast(this.$t('message.TargetLocation') as string);
|
||||
return;
|
||||
}
|
||||
const orderlist = [
|
||||
{
|
||||
...this.model.orderInInfo,
|
||||
originWl: this.model.orderInInfo.locCode,
|
||||
barCode: this.model.orderInInfo.barcode,
|
||||
aimWl: this.form.aimWl.value,
|
||||
type: '2',
|
||||
orderType: '5',
|
||||
keepBy: session.loginName as string,
|
||||
factoryCode: session.factoryCode as string,
|
||||
userDefined4: this.userDefined4,
|
||||
},
|
||||
];
|
||||
await this.model.onTakeoutConfirm(orderlist);
|
||||
if (model.code == '1') {
|
||||
this.customToast(this.$t('message.Warehouse_Tip9') as string);
|
||||
// this.form.productCode = '';
|
||||
this.model.empty();
|
||||
// this.query()
|
||||
this.form.productCode = '';
|
||||
this.allNum = 0;
|
||||
this.QueryHistory();
|
||||
// setTimeout(() => {
|
||||
// this.$forceUpdate();
|
||||
// }, 2000);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.page-product-receipt {
|
||||
background: #f2f2f2 linear-gradient(0deg, #f2f2f2 0%, #4a78ea 51%, #1753ea 100%) no-repeat;
|
||||
background-size: 100% 600rpx;
|
||||
padding: 118rpx 30rpx 162rpx;
|
||||
min-height: 100%;
|
||||
|
||||
.header {
|
||||
position: fixed;
|
||||
top: 36rpx;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 99;
|
||||
display: flex;
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
color: #fff;
|
||||
font-size: 34rpx;
|
||||
font-weight: 500;
|
||||
text-align: center;
|
||||
.title {
|
||||
flex: 3;
|
||||
}
|
||||
.left,
|
||||
.right {
|
||||
flex: 1;
|
||||
}
|
||||
.icon {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 88rpx;
|
||||
height: 88rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.form {
|
||||
background-color: #fff;
|
||||
padding: 40rpx;
|
||||
border-radius: 10rpx;
|
||||
box-shadow: 0 0 20rpx 0 rgba(128, 128, 128, 0.2);
|
||||
|
||||
.u-form-item {
|
||||
padding: 30rpx 0;
|
||||
line-height: 35rpx;
|
||||
.Transfer {
|
||||
width: 280rpx;
|
||||
height: 64rpx;
|
||||
background: rgb(242, 242, 242);
|
||||
border-radius: 110rpx;
|
||||
}
|
||||
}
|
||||
.single {
|
||||
width: 100%;
|
||||
height: 100rpx;
|
||||
display: flex;
|
||||
.single-left {
|
||||
width: 80%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
view {
|
||||
width: 170rpx;
|
||||
height: 100%;
|
||||
line-height: 100rpx;
|
||||
}
|
||||
}
|
||||
.single-right {
|
||||
button {
|
||||
margin-top: 15rpx;
|
||||
width: 140rpx;
|
||||
height: 70rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.bottom-bar {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 99;
|
||||
background: #ffffff;
|
||||
box-shadow: 0 1rpx 20rpx 0 rgba(128, 128, 128, 0.2);
|
||||
padding: 20rpx;
|
||||
}
|
||||
|
||||
.button-bar {
|
||||
}
|
||||
}
|
||||
</style>
|
@ -0,0 +1,150 @@
|
||||
import { Action, getModule, Module, MutationAction, VuexModule } from 'vuex-module-decorators';
|
||||
import store from '@/store';
|
||||
import http from '@/utils/request';
|
||||
import { url } from '@/utils/url';
|
||||
import { session } from '@/store/modules/session';
|
||||
// import { page } from '@/utils/page';
|
||||
|
||||
class OrderInInfo {
|
||||
productDescZh?: string;
|
||||
qty?: string;
|
||||
custCode?: string;
|
||||
custCodeName?: string;
|
||||
productCode?: string;
|
||||
locCode?: string;
|
||||
barcode?: string;
|
||||
// actualQty?: string;
|
||||
}
|
||||
|
||||
@Module({
|
||||
namespaced: true,
|
||||
dynamic: true,
|
||||
store,
|
||||
name: 'row.LineSide.semi-finished-Transfer',
|
||||
})
|
||||
export class wholeTransfer extends VuexModule {
|
||||
/**
|
||||
* 库位地点列表
|
||||
*/
|
||||
WlList = [];
|
||||
userDefined: any = '';
|
||||
detailedList: any;
|
||||
code = '';
|
||||
delCode = '';
|
||||
removeList: any = [];
|
||||
removeMaterialList: any = [];
|
||||
dnNo = '';
|
||||
orderInInfo: OrderInInfo = new OrderInInfo();
|
||||
@MutationAction
|
||||
async queryLocation() {
|
||||
const result: any = await http.get(url.warehouse.wholeTransfer.getMdLocationSfg, {
|
||||
params: {
|
||||
factoryCode: session.factoryCode,
|
||||
loginName: session.loginName,
|
||||
},
|
||||
});
|
||||
console.log('库位数据', result);
|
||||
const WlList = result.data.map((_: any) => ({
|
||||
label: _.locationCode,
|
||||
value: _.locationCode,
|
||||
}));
|
||||
return { WlList };
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询单号
|
||||
* 查询DN单号
|
||||
* @param dnNo
|
||||
*/
|
||||
@MutationAction
|
||||
async getProductCode(barcode: any) {
|
||||
const res: any = await http.post(url.warehouse.container.getOdsRawStorageSnNewHalf, {
|
||||
factoryCode: session.factoryCode,
|
||||
loginName: session.loginName,
|
||||
barcode,
|
||||
});
|
||||
const code = res.code;
|
||||
const orderInInfo = res.data;
|
||||
// if (orderInInfo.custCode == '0') {
|
||||
// orderInInfo.custCodeName = vm.$t('message.Warehouse_NX') as any;
|
||||
// } else if (orderInInfo.custCode == '1') {
|
||||
// orderInInfo.custCodeName = vm.$t('message.Warehouse_WX') as any;
|
||||
// } else if (orderInInfo.custCode == '2') {
|
||||
// orderInInfo.custCodeName = vm.$t('message.Warehouse_YJ') as any;
|
||||
// } else if (orderInInfo.custCode == '4') {
|
||||
// orderInInfo.custCodeName = vm.$t('message.Warehouse_BCP') as any;
|
||||
// }
|
||||
return { orderInInfo, code };
|
||||
}
|
||||
//退扫
|
||||
@MutationAction
|
||||
async codeDel(params: any) {
|
||||
const res: any = await http.post(url.warehouse.wholeTransfer.del, params);
|
||||
const delCode = res.code;
|
||||
return { delCode };
|
||||
}
|
||||
//清除数据
|
||||
@MutationAction
|
||||
async empty() {
|
||||
const orderInInfo: any = [];
|
||||
// const userDefined = '';
|
||||
// const WlList = [];
|
||||
const code = '';
|
||||
return { orderInInfo, code };
|
||||
}
|
||||
@MutationAction
|
||||
async onTakeoutConfirm(list: any) {
|
||||
const records: any = await http.post(url.warehouse.rowTransfer.confirmMoveRussia, list);
|
||||
const code = records.code;
|
||||
return { code };
|
||||
}
|
||||
//生成移库码
|
||||
@MutationAction
|
||||
async getCpMoveBatchNo(params: any = {}) {
|
||||
const res: any = await http.post(url.warehouse.rowTransfer.getSfgMoveBatchNo, params);
|
||||
const userDefined: any = res.data;
|
||||
return { userDefined };
|
||||
}
|
||||
//查询已扫物料
|
||||
@MutationAction
|
||||
async QueryHistory(params: any = {}) {
|
||||
const res: any = await http.post(url.warehouse.rowTransfer.queryGroupListByMoveCode, params);
|
||||
const removeList: any = res.data;
|
||||
const removeMaterialList: any = [];
|
||||
res.data.forEach((item: any) => {
|
||||
const arr: any = {
|
||||
value: item.materialCode,
|
||||
laber: item.materialCode,
|
||||
};
|
||||
removeMaterialList.push(arr);
|
||||
});
|
||||
return { removeList, removeMaterialList };
|
||||
}
|
||||
//查询明细
|
||||
@Action({ commit: 'updateCheckedOrderInInfoListKw' })
|
||||
//@MutationAction
|
||||
async querydetaildle(userDefined4: any) {
|
||||
const res: any = await http.post(url.warehouse.rowTransfer.queryListByMoveCode, {
|
||||
loginName: session.loginName,
|
||||
factoryCode: session.factoryCode,
|
||||
proMoveCode: userDefined4,
|
||||
});
|
||||
console.log('明细》》》》》》》》》', res.data);
|
||||
this.detailedList = res.data;
|
||||
return res;
|
||||
}
|
||||
@Action({ commit: 'updateCheckedOrderInInfoListKw' })
|
||||
async changeOrderInLocation(kw: string) {
|
||||
await http.post('/wmspda/material/orderin/enter', {
|
||||
loginName: session.loginName,
|
||||
// loginName: '1999',
|
||||
warehouseCode: '',
|
||||
factoryCode: session.factoryCode,
|
||||
// factoryCode: '1999',
|
||||
locationCode: kw,
|
||||
});
|
||||
return kw;
|
||||
}
|
||||
}
|
||||
|
||||
export default getModule(wholeTransfer);
|
Loading…
Reference in New Issue