提交 056b0dbc authored 作者: Ras's avatar Ras

新增表单

上级 b0fbcc72
<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('ASN收料确认')">导出</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-asn-receive-confirm-modal ref="modalForm" @ok="modalFormOk"></ims-asn-receive-confirm-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsAsnReceiveConfirmModal from './modules/ImsAsnReceiveConfirmModal'
export default {
name: 'ImsAsnReceiveConfirmList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsAsnReceiveConfirmModal
},
data () {
return {
description: 'ASN收料确认管理页面',
// 表头
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: 'supCode'
},
{
title:'采购单号',
align:"center",
dataIndex: 'poCode'
},
{
title:'采购单行号',
align:"center",
dataIndex: 'poSeq'
},
{
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: "/ras/imsAsnReceiveConfirm/list",
delete: "/ras/imsAsnReceiveConfirm/delete",
deleteBatch: "/ras/imsAsnReceiveConfirm/deleteBatch",
exportXlsUrl: "/ras/imsAsnReceiveConfirm/exportXls",
importExcelUrl: "ras/imsAsnReceiveConfirm/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('ASN收料')">导出</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-asn-receive-modal ref="modalForm" @ok="modalFormOk"></ims-asn-receive-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsAsnReceiveModal from './modules/ImsAsnReceiveModal'
export default {
name: 'ImsAsnReceiveList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsAsnReceiveModal
},
data () {
return {
description: 'ASN收料管理页面',
// 表头
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: 'supCode'
},
{
title:'采购单号',
align:"center",
dataIndex: 'poCode'
},
{
title:'采购单行号',
align:"center",
dataIndex: 'poSeq'
},
{
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: "/ras/imsAsnReceive/list",
delete: "/ras/imsAsnReceive/delete",
deleteBatch: "/ras/imsAsnReceive/deleteBatch",
exportXlsUrl: "/ras/imsAsnReceive/exportXls",
importExcelUrl: "ras/imsAsnReceive/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('客退品ASN收料确认')">导出</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-customer-asn-receive-confirm-modal ref="modalForm" @ok="modalFormOk"></ims-customer-asn-receive-confirm-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsCustomerAsnReceiveConfirmModal from './modules/ImsCustomerAsnReceiveConfirmModal'
export default {
name: 'ImsCustomerAsnReceiveConfirmList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsCustomerAsnReceiveConfirmModal
},
data () {
return {
description: '客退品ASN收料确认管理页面',
// 表头
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: 'supCode'
},
{
title:'采购单号',
align:"center",
dataIndex: 'poCode'
},
{
title:'采购单行号',
align:"center",
dataIndex: 'poSeq'
},
{
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: "/ras/imsCustomerAsnReceiveConfirm/list",
delete: "/ras/imsCustomerAsnReceiveConfirm/delete",
deleteBatch: "/ras/imsCustomerAsnReceiveConfirm/deleteBatch",
exportXlsUrl: "/ras/imsCustomerAsnReceiveConfirm/exportXls",
importExcelUrl: "ras/imsCustomerAsnReceiveConfirm/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-customer-no-purchase-order-confirm-modal ref="modalForm" @ok="modalFormOk"></ims-customer-no-purchase-order-confirm-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsCustomerNoPurchaseOrderConfirmModal from './modules/ImsCustomerNoPurchaseOrderConfirmModal'
export default {
name: 'ImsCustomerNoPurchaseOrderConfirmList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsCustomerNoPurchaseOrderConfirmModal
},
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: 'supCode'
},
{
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: "/ras/imsCustomerNoPurchaseOrderConfirm/list",
delete: "/ras/imsCustomerNoPurchaseOrderConfirm/delete",
deleteBatch: "/ras/imsCustomerNoPurchaseOrderConfirm/deleteBatch",
exportXlsUrl: "/ras/imsCustomerNoPurchaseOrderConfirm/exportXls",
importExcelUrl: "ras/imsCustomerNoPurchaseOrderConfirm/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-customer-purchase-order-confirm-modal ref="modalForm" @ok="modalFormOk"></ims-customer-purchase-order-confirm-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsCustomerPurchaseOrderConfirmModal from './modules/ImsCustomerPurchaseOrderConfirmModal'
export default {
name: 'ImsCustomerPurchaseOrderConfirmList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsCustomerPurchaseOrderConfirmModal
},
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: 'supCode'
},
{
title:'物料编码',
align:"center",
dataIndex: 'mtrlCode'
},
{
title:'数量',
align:"center",
dataIndex: 'quantity'
},
{
title:'备注',
align:"center",
dataIndex: 'remark'
},
{
title:'ERP退货通知单单号',
align:"center",
dataIndex: 'poCode'
},
{
title:'ERP行号',
align:"center",
dataIndex: 'poSeq'
},
{
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: "/ras/imsCustomerPurchaseOrderConfirm/list",
delete: "/ras/imsCustomerPurchaseOrderConfirm/delete",
deleteBatch: "/ras/imsCustomerPurchaseOrderConfirm/deleteBatch",
exportXlsUrl: "/ras/imsCustomerPurchaseOrderConfirm/exportXls",
importExcelUrl: "ras/imsCustomerPurchaseOrderConfirm/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-customer-supply-confirm-modal ref="modalForm" @ok="modalFormOk"></ims-customer-supply-confirm-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsCustomerSupplyConfirmModal from './modules/ImsCustomerSupplyConfirmModal'
export default {
name: 'ImsCustomerSupplyConfirmList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsCustomerSupplyConfirmModal
},
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: 'supCode'
},
{
title:'客户编码',
align:"center",
dataIndex: 'custCode'
},
{
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: "/ras/imsCustomerSupplyConfirm/list",
delete: "/ras/imsCustomerSupplyConfirm/delete",
deleteBatch: "/ras/imsCustomerSupplyConfirm/deleteBatch",
exportXlsUrl: "/ras/imsCustomerSupplyConfirm/exportXls",
importExcelUrl: "ras/imsCustomerSupplyConfirm/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-no-purchase-order-confirm-modal ref="modalForm" @ok="modalFormOk"></ims-no-purchase-order-confirm-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsNoPurchaseOrderConfirmModal from './modules/ImsNoPurchaseOrderConfirmModal'
export default {
name: 'ImsNoPurchaseOrderConfirmList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsNoPurchaseOrderConfirmModal
},
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: 'supCode'
},
{
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: "/ras/imsNoPurchaseOrderConfirm/list",
delete: "/ras/imsNoPurchaseOrderConfirm/delete",
deleteBatch: "/ras/imsNoPurchaseOrderConfirm/deleteBatch",
exportXlsUrl: "/ras/imsNoPurchaseOrderConfirm/exportXls",
importExcelUrl: "ras/imsNoPurchaseOrderConfirm/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-other-receive-confirm-modal ref="modalForm" @ok="modalFormOk"></ims-other-receive-confirm-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsOtherReceiveConfirmModal from './modules/ImsOtherReceiveConfirmModal'
export default {
name: 'ImsOtherReceiveConfirmList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsOtherReceiveConfirmModal
},
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: 'supCode'
},
{
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: "/ras/imsOtherReceiveConfirm/list",
delete: "/ras/imsOtherReceiveConfirm/delete",
deleteBatch: "/ras/imsOtherReceiveConfirm/deleteBatch",
exportXlsUrl: "/ras/imsOtherReceiveConfirm/exportXls",
importExcelUrl: "ras/imsOtherReceiveConfirm/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-purchase-order-confirm-modal ref="modalForm" @ok="modalFormOk"></ims-purchase-order-confirm-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsPurchaseOrderConfirmModal from './modules/ImsPurchaseOrderConfirmModal'
export default {
name: 'ImsPurchaseOrderConfirmList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsPurchaseOrderConfirmModal
},
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: 'supCode'
},
{
title:'采购单号',
align:"center",
dataIndex: 'poCode'
},
{
title:'采购单行号',
align:"center",
dataIndex: 'poSeq'
},
{
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: "/ras/imsPurchaseOrderConfirm/list",
delete: "/ras/imsPurchaseOrderConfirm/delete",
deleteBatch: "/ras/imsPurchaseOrderConfirm/deleteBatch",
exportXlsUrl: "/ras/imsPurchaseOrderConfirm/exportXls",
importExcelUrl: "ras/imsPurchaseOrderConfirm/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-purchase-order-modal ref="modalForm" @ok="modalFormOk"></ims-purchase-order-modal>
</a-card>
</template>
<script>
import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ImsPurchaseOrderModal from './modules/ImsPurchaseOrderModal'
export default {
name: 'ImsPurchaseOrderList',
mixins:[JeecgListMixin, mixinDevice],
components: {
ImsPurchaseOrderModal
},
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: 'supCode'
},
{
title:'采购单号',
align:"center",
dataIndex: 'poCode'
},
{
title:'采购单行号',
align:"center",
dataIndex: 'poSeq'
},
{
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: "/ras/imsPurchaseOrder/list",
delete: "/ras/imsPurchaseOrder/delete",
deleteBatch: "/ras/imsPurchaseOrder/deleteBatch",
exportXlsUrl: "/ras/imsPurchaseOrder/exportXls",
importExcelUrl: "ras/imsPurchaseOrder/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="['supCode']" placeholder="请输入供应商编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="采购单号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['poCode']" placeholder="请输入采购单号"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="采购单行号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['poSeq']" 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: 'ImsAsnReceiveConfirmForm',
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/imsAsnReceiveConfirm/add",
edit: "/ras/imsAsnReceiveConfirm/edit",
queryById: "/ras/imsAsnReceiveConfirm/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','supCode','poCode','poSeq','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','storeCode','supCode','poCode','poSeq','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-asn-receive-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></ims-asn-receive-confirm-form>
</j-modal>
</template>
<script>
import ImsAsnReceiveConfirmForm from './ImsAsnReceiveConfirmForm'
export default {
name: 'ImsAsnReceiveConfirmModal',
components: {
ImsAsnReceiveConfirmForm
},
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-asn-receive-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></ims-asn-receive-confirm-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 ImsAsnReceiveConfirmForm from './ImsAsnReceiveConfirmForm'
export default {
name: 'ImsAsnReceiveConfirmModal',
components: {
ImsAsnReceiveConfirmForm
},
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="['supCode']" placeholder="请输入供应商编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="采购单号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['poCode']" placeholder="请输入采购单号"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="采购单行号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['poSeq']" 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: 'ImsAsnReceiveForm',
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/imsAsnReceive/add",
edit: "/ras/imsAsnReceive/edit",
queryById: "/ras/imsAsnReceive/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','supCode','poCode','poSeq','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','storeCode','supCode','poCode','poSeq','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-asn-receive-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></ims-asn-receive-form>
</j-modal>
</template>
<script>
import ImsAsnReceiveForm from './ImsAsnReceiveForm'
export default {
name: 'ImsAsnReceiveModal',
components: {
ImsAsnReceiveForm
},
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-asn-receive-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></ims-asn-receive-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 ImsAsnReceiveForm from './ImsAsnReceiveForm'
export default {
name: 'ImsAsnReceiveModal',
components: {
ImsAsnReceiveForm
},
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="['supCode']" placeholder="请输入供应商编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="采购单号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['poCode']" placeholder="请输入采购单号"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="采购单行号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['poSeq']" 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: 'ImsCustomerAsnReceiveConfirmForm',
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/imsCustomerAsnReceiveConfirm/add",
edit: "/ras/imsCustomerAsnReceiveConfirm/edit",
queryById: "/ras/imsCustomerAsnReceiveConfirm/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','supCode','poCode','poSeq','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','storeCode','supCode','poCode','poSeq','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-customer-asn-receive-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></ims-customer-asn-receive-confirm-form>
</j-modal>
</template>
<script>
import ImsCustomerAsnReceiveConfirmForm from './ImsCustomerAsnReceiveConfirmForm'
export default {
name: 'ImsCustomerAsnReceiveConfirmModal',
components: {
ImsCustomerAsnReceiveConfirmForm
},
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-customer-asn-receive-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></ims-customer-asn-receive-confirm-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 ImsCustomerAsnReceiveConfirmForm from './ImsCustomerAsnReceiveConfirmForm'
export default {
name: 'ImsCustomerAsnReceiveConfirmModal',
components: {
ImsCustomerAsnReceiveConfirmForm
},
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="['supCode']" 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: 'ImsCustomerNoPurchaseOrderConfirmForm',
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/imsCustomerNoPurchaseOrderConfirm/add",
edit: "/ras/imsCustomerNoPurchaseOrderConfirm/edit",
queryById: "/ras/imsCustomerNoPurchaseOrderConfirm/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','supCode','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','storeCode','supCode','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-customer-no-purchase-order-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></ims-customer-no-purchase-order-confirm-form>
</j-modal>
</template>
<script>
import ImsCustomerNoPurchaseOrderConfirmForm from './ImsCustomerNoPurchaseOrderConfirmForm'
export default {
name: 'ImsCustomerNoPurchaseOrderConfirmModal',
components: {
ImsCustomerNoPurchaseOrderConfirmForm
},
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-customer-no-purchase-order-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></ims-customer-no-purchase-order-confirm-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 ImsCustomerNoPurchaseOrderConfirmForm from './ImsCustomerNoPurchaseOrderConfirmForm'
export default {
name: 'ImsCustomerNoPurchaseOrderConfirmModal',
components: {
ImsCustomerNoPurchaseOrderConfirmForm
},
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="['supCode']" 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="ERP退货通知单单号" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['poCode']" 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="['poSeq']" placeholder="请输入ERP行号"></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: 'ImsCustomerPurchaseOrderConfirmForm',
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/imsCustomerPurchaseOrderConfirm/add",
edit: "/ras/imsCustomerPurchaseOrderConfirm/edit",
queryById: "/ras/imsCustomerPurchaseOrderConfirm/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','supCode','mtrlCode','quantity','remark','poCode','poSeq','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','supCode','mtrlCode','quantity','remark','poCode','poSeq','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-customer-purchase-order-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></ims-customer-purchase-order-confirm-form>
</j-modal>
</template>
<script>
import ImsCustomerPurchaseOrderConfirmForm from './ImsCustomerPurchaseOrderConfirmForm'
export default {
name: 'ImsCustomerPurchaseOrderConfirmModal',
components: {
ImsCustomerPurchaseOrderConfirmForm
},
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-customer-purchase-order-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></ims-customer-purchase-order-confirm-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 ImsCustomerPurchaseOrderConfirmForm from './ImsCustomerPurchaseOrderConfirmForm'
export default {
name: 'ImsCustomerPurchaseOrderConfirmModal',
components: {
ImsCustomerPurchaseOrderConfirmForm
},
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="['supCode']" placeholder="请输入供应商编码"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="客户编码" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-input v-decorator="['custCode']" 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: 'ImsCustomerSupplyConfirmForm',
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/imsCustomerSupplyConfirm/add",
edit: "/ras/imsCustomerSupplyConfirm/edit",
queryById: "/ras/imsCustomerSupplyConfirm/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','supCode','custCode','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','storeCode','supCode','custCode','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-customer-supply-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></ims-customer-supply-confirm-form>
</j-modal>
</template>
<script>
import ImsCustomerSupplyConfirmForm from './ImsCustomerSupplyConfirmForm'
export default {
name: 'ImsCustomerSupplyConfirmModal',
components: {
ImsCustomerSupplyConfirmForm
},
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-customer-supply-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></ims-customer-supply-confirm-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 ImsCustomerSupplyConfirmForm from './ImsCustomerSupplyConfirmForm'
export default {
name: 'ImsCustomerSupplyConfirmModal',
components: {
ImsCustomerSupplyConfirmForm
},
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="['supCode']" 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: 'ImsNoPurchaseOrderConfirmForm',
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/imsNoPurchaseOrderConfirm/add",
edit: "/ras/imsNoPurchaseOrderConfirm/edit",
queryById: "/ras/imsNoPurchaseOrderConfirm/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','supCode','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','storeCode','supCode','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-no-purchase-order-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></ims-no-purchase-order-confirm-form>
</j-modal>
</template>
<script>
import ImsNoPurchaseOrderConfirmForm from './ImsNoPurchaseOrderConfirmForm'
export default {
name: 'ImsNoPurchaseOrderConfirmModal',
components: {
ImsNoPurchaseOrderConfirmForm
},
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-no-purchase-order-confirm-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></ims-no-purchase-order-confirm-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 ImsNoPurchaseOrderConfirmForm from './ImsNoPurchaseOrderConfirmForm'
export default {
name: 'ImsNoPurchaseOrderConfirmModal',
components: {
ImsNoPurchaseOrderConfirmForm
},
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="['supCode']" 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: 'ImsOtherReceiveConfirmForm',
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/imsOtherReceiveConfirm/add",
edit: "/ras/imsOtherReceiveConfirm/edit",
queryById: "/ras/imsOtherReceiveConfirm/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','supCode','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','storeCode','supCode','mtrlCode','quantity','remark','fid','fbillNo','fentryId'))
},
}
}
</script>
\ No newline at end of file
差异被折叠。
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论