提交 b0fbcc72 authored 作者: Ras's avatar Ras

添加新表单

上级 8889804f
<template>
<a-card :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('维修领料')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-menu slot="overlay">
<a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
</a-menu>
<a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
</a-dropdown>
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
bordered
rowKey="id"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
<div v-html="text"></div>
</template>
<template slot="imgSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
<img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
</template>
<template slot="fileSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
<a-button
v-else
:ghost="true"
type="primary"
icon="download"
size="small"
@click="downloadFile(text)">
下载
</a-button>
</template>
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)">编辑</a>
<a-divider type="vertical" />
<a-dropdown>
<a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
<a-menu slot="overlay">
<a-menu-item>
<a @click="handleDetail(record)">详情</a>
</a-menu-item>
<a-menu-item>
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
</a-popconfirm>
</a-menu-item>
</a-menu>
</a-dropdown>
</span>
</a-table>
</div>
<ims-maintain-picking-modal ref="modalForm" @ok="modalFormOk"></ims-maintain-picking-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsMaintainPickingModal from './modules/ImsMaintainPickingModal'
export default {
name: 'ImsMaintainPickingList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsMaintainPickingModal
},
data () {
return {
description: '维修领料管理页面',
// 表头
columns: [
{
title: '#',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'唯一序号',
align:"center",
dataIndex: 'queueId'
},
{
title:'交易时间',
align:"center",
dataIndex: 'trxDate',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
{
title:'操作人编码',
align:"center",
dataIndex: 'userCode'
},
{
title:'组织代码',
align:"center",
dataIndex: 'orgId'
},
{
title:'仓库编码',
align:"center",
dataIndex: 'storeCode'
},
{
title:'物料编码',
align:"center",
dataIndex: 'mtrlCode'
},
{
title:'数量',
align:"center",
dataIndex: 'quantity'
},
{
title:'出库申请单编码',
align:"center",
dataIndex: 'pmnCode'
},
{
title:'行号',
align:"center",
dataIndex: 'thirdRwn'
},
{
title:'备注',
align:"center",
dataIndex: 'remark'
},
{
title:'fid',
align:"center",
dataIndex: 'fid'
},
{
title:'单据编码',
align:"center",
dataIndex: 'fbillNo'
},
{
title:'单据体内码-分录',
align:"center",
dataIndex: 'fentryId'
},
{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' }
}
],
url: {
list: "/org.jeecg.modules.iost.ims.entity/imsMaintainPicking/list",
delete: "/ras/imsMaintainPicking/delete",
deleteBatch: "/ras/imsMaintainPicking/deleteBatch",
exportXlsUrl: "/ras/imsMaintainPicking/exportXls",
importExcelUrl: "ras/imsMaintainPicking/importExcel",
},
dictOptions:{},
}
},
created() {
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
},
},
methods: {
initDictConfig(){
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>
\ No newline at end of file
<template>
<a-card :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('工单关单')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-menu slot="overlay">
<a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
</a-menu>
<a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
</a-dropdown>
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
bordered
rowKey="id"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
<div v-html="text"></div>
</template>
<template slot="imgSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
<img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
</template>
<template slot="fileSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
<a-button
v-else
:ghost="true"
type="primary"
icon="download"
size="small"
@click="downloadFile(text)">
下载
</a-button>
</template>
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)">编辑</a>
<a-divider type="vertical" />
<a-dropdown>
<a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
<a-menu slot="overlay">
<a-menu-item>
<a @click="handleDetail(record)">详情</a>
</a-menu-item>
<a-menu-item>
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
</a-popconfirm>
</a-menu-item>
</a-menu>
</a-dropdown>
</span>
</a-table>
</div>
<ims-produce-order-close-modal ref="modalForm" @ok="modalFormOk"></ims-produce-order-close-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsProduceOrderCloseModal from './modules/ImsProduceOrderCloseModal'
export default {
name: 'ImsProduceOrderCloseList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsProduceOrderCloseModal
},
data () {
return {
description: '工单关单管理页面',
// 表头
columns: [
{
title: '#',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'唯一序号',
align:"center",
dataIndex: 'queueId'
},
{
title:'交易时间',
align:"center",
dataIndex: 'trxDate',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
{
title:'操作人编码',
align:"center",
dataIndex: 'userCode'
},
{
title:'组织代码',
align:"center",
dataIndex: 'orgId'
},
{
title:'工单编码',
align:"center",
dataIndex: 'moCode'
},
{
title:'物料编码',
align:"center",
dataIndex: 'mtrlCode'
},
{
title:'数量',
align:"center",
dataIndex: 'quantity'
},
{
title:'备注',
align:"center",
dataIndex: 'remark'
},
{
title:'fid',
align:"center",
dataIndex: 'fid'
},
{
title:'单据编码',
align:"center",
dataIndex: 'fbillNo'
},
{
title:'单据体内码-分录',
align:"center",
dataIndex: 'fentryId'
},
{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' }
}
],
url: {
list: "/org.jeecg.modules.iost.ims.entity/imsProduceOrderClose/list",
delete: "/ras/imsProduceOrderClose/delete",
deleteBatch: "/ras/imsProduceOrderClose/deleteBatch",
exportXlsUrl: "/ras/imsProduceOrderClose/exportXls",
importExcelUrl: "ras/imsProduceOrderClose/importExcel",
},
dictOptions:{},
}
},
created() {
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
},
},
methods: {
initDictConfig(){
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>
\ No newline at end of file
<template>
<a-card :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator">
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
<a-button type="primary" icon="download" @click="handleExportXls('工单备料')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-menu slot="overlay">
<a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
</a-menu>
<a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
</a-dropdown>
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
size="middle"
:scroll="{x:true}"
bordered
rowKey="id"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
class="j-table-force-nowrap"
@change="handleTableChange">
<template slot="htmlSlot" slot-scope="text">
<div v-html="text"></div>
</template>
<template slot="imgSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
<img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
</template>
<template slot="fileSlot" slot-scope="text">
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
<a-button
v-else
:ghost="true"
type="primary"
icon="download"
size="small"
@click="downloadFile(text)">
下载
</a-button>
</template>
<span slot="action" slot-scope="text, record">
<a @click="handleEdit(record)">编辑</a>
<a-divider type="vertical" />
<a-dropdown>
<a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
<a-menu slot="overlay">
<a-menu-item>
<a @click="handleDetail(record)">详情</a>
</a-menu-item>
<a-menu-item>
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
</a-popconfirm>
</a-menu-item>
</a-menu>
</a-dropdown>
</span>
</a-table>
</div>
<ims-produce-order-ready-modal ref="modalForm" @ok="modalFormOk"></ims-produce-order-ready-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsProduceOrderReadyModal from './modules/ImsProduceOrderReadyModal'
export default {
name: 'ImsProduceOrderReadyList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsProduceOrderReadyModal
},
data () {
return {
description: '工单备料管理页面',
// 表头
columns: [
{
title: '#',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'唯一序号',
align:"center",
dataIndex: 'queueId'
},
{
title:'交易时间',
align:"center",
dataIndex: 'trxDate',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
{
title:'操作人编码',
align:"center",
dataIndex: 'userCode'
},
{
title:'组织代码',
align:"center",
dataIndex: 'orgId'
},
{
title:'仓库编码',
align:"center",
dataIndex: 'storeCode'
},
{
title:'工单编码',
align:"center",
dataIndex: 'moCode'
},
{
title:'erp工单行号',
align:"center",
dataIndex: 'erpSeq'
},
{
title:'erp行内码',
align:"center",
dataIndex: 'erpSic'
},
{
title:'物料编码',
align:"center",
dataIndex: 'mtrlCode'
},
{
title:'是否外协',
align:"center",
dataIndex: 'isOuts'
},
{
title:'数量',
align:"center",
dataIndex: 'quantity'
},
{
title:'备注',
align:"center",
dataIndex: 'remark'
},
{
title:'fid',
align:"center",
dataIndex: 'fid'
},
{
title:'单据编码',
align:"center",
dataIndex: 'fbillNo'
},
{
title:'单据体内码-分录',
align:"center",
dataIndex: 'fentryId'
},
{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' }
}
],
url: {
list: "/org.jeecg.modules.iost.ims.entity/imsProduceOrderReady/list",
delete: "/ras/imsProduceOrderReady/delete",
deleteBatch: "/ras/imsProduceOrderReady/deleteBatch",
exportXlsUrl: "/ras/imsProduceOrderReady/exportXls",
importExcelUrl: "ras/imsProduceOrderReady/importExcel",
},
dictOptions:{},
}
},
created() {
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
},
},
methods: {
initDictConfig(){
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>
\ No newline at end of file
<template>
<a-spin :spinning="confirmLoading">
<j-form-container :disabled="formDisabled">
<a-form :form="form" slot="detail">
<a-row>
<a-col :span="24">
<a-form-item label="唯一序号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['queueId']" placeholder="请输入唯一序号"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="交易时间" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-date placeholder="请选择交易时间" v-decorator="['trxDate']" :trigger-change="true" style="width: 100%"/>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="操作人编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['userCode']" placeholder="请输入操作人编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="组织代码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['orgId']" placeholder="请输入组织代码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="仓库编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['storeCode']" placeholder="请输入仓库编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="物料编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['mtrlCode']" placeholder="请输入物料编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="数量" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input-number v-decorator="['quantity']" placeholder="请输入数量" style="width: 100%"/>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="出库申请单编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['pmnCode']" placeholder="请输入出库申请单编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="行号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input-number v-decorator="['thirdRwn']" placeholder="请输入行号" style="width: 100%"/>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['remark']" placeholder="请输入备注"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="fid" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['fid']" placeholder="请输入fid"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="单据编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['fbillNo']" placeholder="请输入单据编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="单据体内码-分录" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['fentryId']" placeholder="请输入单据体内码-分录"></a-input>
</a-form-item>
</a-col>
<a-col v-if="showFlowSubmitButton" :span="24" style="text-align: center">
<a-button @click="submitForm">提 交</a-button>
</a-col>
</a-row>
</a-form>
</j-form-container>
</a-spin>
</template>
<script>
import { httpAction, getAction } from '@/api/manage'
import pick from 'lodash.pick'
import { validateDuplicateValue } from '@/utils/util'
import JFormContainer from '@/components/jeecg/JFormContainer'
import JDate from '@/components/jeecg/JDate'
export default {
name: 'ImsMaintainPickingForm',
components: {
JFormContainer,
JDate,
},
props: {
//流程表单data
formData: {
type: Object,
default: ()=>{},
required: false
},
//表单模式:true流程表单 false普通表单
formBpm: {
type: Boolean,
default: false,
required: false
},
//表单禁用
disabled: {
type: Boolean,
default: false,
required: false
}
},
data () {
return {
form: this.$form.createForm(this),
model: {},
labelCol: {
xs: { span: 24 },
sm: { span: 5 },
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 },
},
confirmLoading: false,
validatorRules: {
},
url: {
add: "/ras/imsMaintainPicking/add",
edit: "/ras/imsMaintainPicking/edit",
queryById: "/ras/imsMaintainPicking/queryById"
}
}
},
computed: {
formDisabled(){
if(this.formBpm===true){
if(this.formData.disabled===false){
return false
}
return true
}
return this.disabled
},
showFlowSubmitButton(){
if(this.formBpm===true){
if(this.formData.disabled===false){
return true
}
}
return false
}
},
created () {
//如果是流程中表单,则需要加载流程表单data
this.showFlowData();
},
methods: {
add () {
this.edit({});
},
edit (record) {
this.form.resetFields();
this.model = Object.assign({}, record);
this.visible = true;
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.model,'queueId','trxDate','userCode','orgId','storeCode','mtrlCode','quantity','pmnCode','thirdRwn','remark','fid','fbillNo','fentryId'))
})
},
//渲染流程表单数据
showFlowData(){
if(this.formBpm === true){
let params = {id:this.formData.dataId};
getAction(this.url.queryById,params).then((res)=>{
if(res.success){
this.edit (res.result);
}
});
}
},
submitForm () {
const that = this;
// 触发表单验证
this.form.validateFields((err, values) => {
if (!err) {
that.confirmLoading = true;
let httpurl = '';
let method = '';
if(!this.model.id){
httpurl+=this.url.add;
method = 'post';
}else{
httpurl+=this.url.edit;
method = 'put';
}
let formData = Object.assign(this.model, values);
console.log("表单提交数据",formData)
httpAction(httpurl,formData,method).then((res)=>{
if(res.success){
that.$message.success(res.message);
that.$emit('ok');
}else{
that.$message.warning(res.message);
}
}).finally(() => {
that.confirmLoading = false;
})
}
})
},
popupCallback(row){
this.form.setFieldsValue(pick(row,'queueId','trxDate','userCode','orgId','storeCode','mtrlCode','quantity','pmnCode','thirdRwn','remark','fid','fbillNo','fentryId'))
},
}
}
</script>
\ No newline at end of file
<template>
<j-modal
:title="title"
:width="width"
:visible="visible"
switchFullscreen
@ok="handleOk"
:okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
@cancel="handleCancel"
cancelText="关闭">
<ims-maintain-picking-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></ims-maintain-picking-form>
</j-modal>
</template>
<script>
import ImsMaintainPickingForm from './ImsMaintainPickingForm'
export default {
name: 'ImsMaintainPickingModal',
components: {
ImsMaintainPickingForm
},
data () {
return {
title:'',
width:800,
visible: false,
disableSubmit: false
}
},
methods: {
add () {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.add();
})
},
edit (record) {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.edit(record);
})
},
close () {
this.$emit('close');
this.visible = false;
},
handleOk () {
this.$refs.realForm.submitForm();
},
submitCallback(){
this.$emit('ok');
this.visible = false;
},
handleCancel () {
this.close()
}
}
}
</script>
\ No newline at end of file
<template>
<a-drawer
:title="title"
:width="width"
placement="right"
:closable="false"
@close="close"
:visible="visible">
<ims-maintain-picking-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></ims-maintain-picking-form>
<div class="drawer-footer">
<a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button>
<a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button>
</div>
</a-drawer>
</template>
<script>
import ImsMaintainPickingForm from './ImsMaintainPickingForm'
export default {
name: 'ImsMaintainPickingModal',
components: {
ImsMaintainPickingForm
},
data () {
return {
title:"操作",
width:800,
visible: false,
disableSubmit: false
}
},
methods: {
add () {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.add();
})
},
edit (record) {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.edit(record);
});
},
close () {
this.$emit('close');
this.visible = false;
},
submitCallback(){
this.$emit('ok');
this.visible = false;
},
handleOk () {
this.$refs.realForm.submitForm();
},
handleCancel () {
this.close()
}
}
}
</script>
<style lang="less" scoped>
/** Button按钮间距 */
.ant-btn {
margin-left: 30px;
margin-bottom: 30px;
float: right;
}
.drawer-footer{
position: absolute;
bottom: -8px;
width: 100%;
border-top: 1px solid #e8e8e8;
padding: 10px 16px;
text-align: right;
left: 0;
background: #fff;
border-radius: 0 0 2px 2px;
}
</style>
\ No newline at end of file
<template>
<a-spin :spinning="confirmLoading">
<j-form-container :disabled="formDisabled">
<a-form :form="form" slot="detail">
<a-row>
<a-col :span="24">
<a-form-item label="唯一序号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['queueId']" placeholder="请输入唯一序号"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="交易时间" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-date placeholder="请选择交易时间" v-decorator="['trxDate']" :trigger-change="true" style="width: 100%"/>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="操作人编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['userCode']" placeholder="请输入操作人编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="组织代码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['orgId']" placeholder="请输入组织代码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="工单编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['moCode']" placeholder="请输入工单编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="物料编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['mtrlCode']" placeholder="请输入物料编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="数量" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['quantity']" placeholder="请输入数量"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['remark']" placeholder="请输入备注"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="fid" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['fid']" placeholder="请输入fid"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="单据编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['fbillNo']" placeholder="请输入单据编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="单据体内码-分录" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['fentryId']" placeholder="请输入单据体内码-分录"></a-input>
</a-form-item>
</a-col>
<a-col v-if="showFlowSubmitButton" :span="24" style="text-align: center">
<a-button @click="submitForm">提 交</a-button>
</a-col>
</a-row>
</a-form>
</j-form-container>
</a-spin>
</template>
<script>
import { httpAction, getAction } from '@/api/manage'
import pick from 'lodash.pick'
import { validateDuplicateValue } from '@/utils/util'
import JFormContainer from '@/components/jeecg/JFormContainer'
import JDate from '@/components/jeecg/JDate'
export default {
name: 'ImsProduceOrderCloseForm',
components: {
JFormContainer,
JDate,
},
props: {
//流程表单data
formData: {
type: Object,
default: ()=>{},
required: false
},
//表单模式:true流程表单 false普通表单
formBpm: {
type: Boolean,
default: false,
required: false
},
//表单禁用
disabled: {
type: Boolean,
default: false,
required: false
}
},
data () {
return {
form: this.$form.createForm(this),
model: {},
labelCol: {
xs: { span: 24 },
sm: { span: 5 },
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 },
},
confirmLoading: false,
validatorRules: {
},
url: {
add: "/ras/imsProduceOrderClose/add",
edit: "/ras/imsProduceOrderClose/edit",
queryById: "/ras/imsProduceOrderClose/queryById"
}
}
},
computed: {
formDisabled(){
if(this.formBpm===true){
if(this.formData.disabled===false){
return false
}
return true
}
return this.disabled
},
showFlowSubmitButton(){
if(this.formBpm===true){
if(this.formData.disabled===false){
return true
}
}
return false
}
},
created () {
//如果是流程中表单,则需要加载流程表单data
this.showFlowData();
},
methods: {
add () {
this.edit({});
},
edit (record) {
this.form.resetFields();
this.model = Object.assign({}, record);
this.visible = true;
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.model,'queueId','trxDate','userCode','orgId','moCode','mtrlCode','quantity','remark','fid','fbillNo','fentryId'))
})
},
//渲染流程表单数据
showFlowData(){
if(this.formBpm === true){
let params = {id:this.formData.dataId};
getAction(this.url.queryById,params).then((res)=>{
if(res.success){
this.edit (res.result);
}
});
}
},
submitForm () {
const that = this;
// 触发表单验证
this.form.validateFields((err, values) => {
if (!err) {
that.confirmLoading = true;
let httpurl = '';
let method = '';
if(!this.model.id){
httpurl+=this.url.add;
method = 'post';
}else{
httpurl+=this.url.edit;
method = 'put';
}
let formData = Object.assign(this.model, values);
console.log("表单提交数据",formData)
httpAction(httpurl,formData,method).then((res)=>{
if(res.success){
that.$message.success(res.message);
that.$emit('ok');
}else{
that.$message.warning(res.message);
}
}).finally(() => {
that.confirmLoading = false;
})
}
})
},
popupCallback(row){
this.form.setFieldsValue(pick(row,'queueId','trxDate','userCode','orgId','moCode','mtrlCode','quantity','remark','fid','fbillNo','fentryId'))
},
}
}
</script>
\ No newline at end of file
<template>
<j-modal
:title="title"
:width="width"
:visible="visible"
switchFullscreen
@ok="handleOk"
:okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
@cancel="handleCancel"
cancelText="关闭">
<ims-produce-order-close-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></ims-produce-order-close-form>
</j-modal>
</template>
<script>
import ImsProduceOrderCloseForm from './ImsProduceOrderCloseForm'
export default {
name: 'ImsProduceOrderCloseModal',
components: {
ImsProduceOrderCloseForm
},
data () {
return {
title:'',
width:800,
visible: false,
disableSubmit: false
}
},
methods: {
add () {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.add();
})
},
edit (record) {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.edit(record);
})
},
close () {
this.$emit('close');
this.visible = false;
},
handleOk () {
this.$refs.realForm.submitForm();
},
submitCallback(){
this.$emit('ok');
this.visible = false;
},
handleCancel () {
this.close()
}
}
}
</script>
\ No newline at end of file
<template>
<a-drawer
:title="title"
:width="width"
placement="right"
:closable="false"
@close="close"
:visible="visible">
<ims-produce-order-close-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></ims-produce-order-close-form>
<div class="drawer-footer">
<a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button>
<a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button>
</div>
</a-drawer>
</template>
<script>
import ImsProduceOrderCloseForm from './ImsProduceOrderCloseForm'
export default {
name: 'ImsProduceOrderCloseModal',
components: {
ImsProduceOrderCloseForm
},
data () {
return {
title:"操作",
width:800,
visible: false,
disableSubmit: false
}
},
methods: {
add () {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.add();
})
},
edit (record) {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.edit(record);
});
},
close () {
this.$emit('close');
this.visible = false;
},
submitCallback(){
this.$emit('ok');
this.visible = false;
},
handleOk () {
this.$refs.realForm.submitForm();
},
handleCancel () {
this.close()
}
}
}
</script>
<style lang="less" scoped>
/** Button按钮间距 */
.ant-btn {
margin-left: 30px;
margin-bottom: 30px;
float: right;
}
.drawer-footer{
position: absolute;
bottom: -8px;
width: 100%;
border-top: 1px solid #e8e8e8;
padding: 10px 16px;
text-align: right;
left: 0;
background: #fff;
border-radius: 0 0 2px 2px;
}
</style>
\ No newline at end of file
<template>
<a-spin :spinning="confirmLoading">
<j-form-container :disabled="formDisabled">
<a-form :form="form" slot="detail">
<a-row>
<a-col :span="24">
<a-form-item label="唯一序号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['queueId']" placeholder="请输入唯一序号"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="交易时间" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-date placeholder="请选择交易时间" v-decorator="['trxDate']" :trigger-change="true" style="width: 100%"/>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="操作人编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['userCode']" placeholder="请输入操作人编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="组织代码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['orgId']" placeholder="请输入组织代码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="仓库编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['storeCode']" placeholder="请输入仓库编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="工单编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['moCode']" placeholder="请输入工单编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="erp工单行号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['erpSeq']" placeholder="请输入erp工单行号"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="erp行内码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['erpSic']" placeholder="请输入erp行内码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="物料编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['mtrlCode']" placeholder="请输入物料编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="是否外协" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['isOuts']" placeholder="请输入是否外协"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="数量" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['quantity']" placeholder="请输入数量"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['remark']" placeholder="请输入备注"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="fid" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['fid']" placeholder="请输入fid"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="单据编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['fbillNo']" placeholder="请输入单据编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="单据体内码-分录" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['fentryId']" placeholder="请输入单据体内码-分录"></a-input>
</a-form-item>
</a-col>
<a-col v-if="showFlowSubmitButton" :span="24" style="text-align: center">
<a-button @click="submitForm">提 交</a-button>
</a-col>
</a-row>
</a-form>
</j-form-container>
</a-spin>
</template>
<script>
import { httpAction, getAction } from '@/api/manage'
import pick from 'lodash.pick'
import { validateDuplicateValue } from '@/utils/util'
import JFormContainer from '@/components/jeecg/JFormContainer'
import JDate from '@/components/jeecg/JDate'
export default {
name: 'ImsProduceOrderReadyForm',
components: {
JFormContainer,
JDate,
},
props: {
//流程表单data
formData: {
type: Object,
default: ()=>{},
required: false
},
//表单模式:true流程表单 false普通表单
formBpm: {
type: Boolean,
default: false,
required: false
},
//表单禁用
disabled: {
type: Boolean,
default: false,
required: false
}
},
data () {
return {
form: this.$form.createForm(this),
model: {},
labelCol: {
xs: { span: 24 },
sm: { span: 5 },
},
wrapperCol: {
xs: { span: 24 },
sm: { span: 16 },
},
confirmLoading: false,
validatorRules: {
},
url: {
add: "/ras/imsProduceOrderReady/add",
edit: "/ras/imsProduceOrderReady/edit",
queryById: "/ras/imsProduceOrderReady/queryById"
}
}
},
computed: {
formDisabled(){
if(this.formBpm===true){
if(this.formData.disabled===false){
return false
}
return true
}
return this.disabled
},
showFlowSubmitButton(){
if(this.formBpm===true){
if(this.formData.disabled===false){
return true
}
}
return false
}
},
created () {
//如果是流程中表单,则需要加载流程表单data
this.showFlowData();
},
methods: {
add () {
this.edit({});
},
edit (record) {
this.form.resetFields();
this.model = Object.assign({}, record);
this.visible = true;
this.$nextTick(() => {
this.form.setFieldsValue(pick(this.model,'queueId','trxDate','userCode','orgId','storeCode','moCode','erpSeq','erpSic','mtrlCode','isOuts','quantity','remark','fid','fbillNo','fentryId'))
})
},
//渲染流程表单数据
showFlowData(){
if(this.formBpm === true){
let params = {id:this.formData.dataId};
getAction(this.url.queryById,params).then((res)=>{
if(res.success){
this.edit (res.result);
}
});
}
},
submitForm () {
const that = this;
// 触发表单验证
this.form.validateFields((err, values) => {
if (!err) {
that.confirmLoading = true;
let httpurl = '';
let method = '';
if(!this.model.id){
httpurl+=this.url.add;
method = 'post';
}else{
httpurl+=this.url.edit;
method = 'put';
}
let formData = Object.assign(this.model, values);
console.log("表单提交数据",formData)
httpAction(httpurl,formData,method).then((res)=>{
if(res.success){
that.$message.success(res.message);
that.$emit('ok');
}else{
that.$message.warning(res.message);
}
}).finally(() => {
that.confirmLoading = false;
})
}
})
},
popupCallback(row){
this.form.setFieldsValue(pick(row,'queueId','trxDate','userCode','orgId','storeCode','moCode','erpSeq','erpSic','mtrlCode','isOuts','quantity','remark','fid','fbillNo','fentryId'))
},
}
}
</script>
\ No newline at end of file
<template>
<j-modal
:title="title"
:width="width"
:visible="visible"
switchFullscreen
@ok="handleOk"
:okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
@cancel="handleCancel"
cancelText="关闭">
<ims-produce-order-ready-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></ims-produce-order-ready-form>
</j-modal>
</template>
<script>
import ImsProduceOrderReadyForm from './ImsProduceOrderReadyForm'
export default {
name: 'ImsProduceOrderReadyModal',
components: {
ImsProduceOrderReadyForm
},
data () {
return {
title:'',
width:800,
visible: false,
disableSubmit: false
}
},
methods: {
add () {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.add();
})
},
edit (record) {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.edit(record);
})
},
close () {
this.$emit('close');
this.visible = false;
},
handleOk () {
this.$refs.realForm.submitForm();
},
submitCallback(){
this.$emit('ok');
this.visible = false;
},
handleCancel () {
this.close()
}
}
}
</script>
\ No newline at end of file
<template>
<a-drawer
:title="title"
:width="width"
placement="right"
:closable="false"
@close="close"
:visible="visible">
<ims-produce-order-ready-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></ims-produce-order-ready-form>
<div class="drawer-footer">
<a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button>
<a-button v-if="!disableSubmit" @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button>
</div>
</a-drawer>
</template>
<script>
import ImsProduceOrderReadyForm from './ImsProduceOrderReadyForm'
export default {
name: 'ImsProduceOrderReadyModal',
components: {
ImsProduceOrderReadyForm
},
data () {
return {
title:"操作",
width:800,
visible: false,
disableSubmit: false
}
},
methods: {
add () {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.add();
})
},
edit (record) {
this.visible=true
this.$nextTick(()=>{
this.$refs.realForm.edit(record);
});
},
close () {
this.$emit('close');
this.visible = false;
},
submitCallback(){
this.$emit('ok');
this.visible = false;
},
handleOk () {
this.$refs.realForm.submitForm();
},
handleCancel () {
this.close()
}
}
}
</script>
<style lang="less" scoped>
/** Button按钮间距 */
.ant-btn {
margin-left: 30px;
margin-bottom: 30px;
float: right;
}
.drawer-footer{
position: absolute;
bottom: -8px;
width: 100%;
border-top: 1px solid #e8e8e8;
padding: 10px 16px;
text-align: right;
left: 0;
background: #fff;
border-radius: 0 0 2px 2px;
}
</style>
\ No newline at end of file
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论