Browse Source

Merge remote-tracking branch 'origin/dev' into dev

dev
kilo 2 years ago
parent
commit
b472eea200
  1. 2
      src/components/layouts/TabLayout.vue
  2. 412
      src/views/accessrecords/LndustrialExplosiveCome.vue
  3. 395
      src/views/accessrecords/LndustrialExplosiveEnter.vue
  4. 401
      src/views/accessrecords/ProcessMaterialWarehousingRecord.vue
  5. 415
      src/views/accessrecords/ProcessMaterialsDeliveryRecord.vue
  6. 13
      src/views/accessrecords/flowchart/LndustrialExplosiveComeFlowChart.vue
  7. 13
      src/views/accessrecords/flowchart/LndustrialExplosiveEnterFlowChart.vue
  8. 210
      src/views/accessrecords/flowchart/ProcessMaterialWarehousingFlowChart.vue
  9. 386
      src/views/accessrecords/flowchart/ProcessMaterialsDeliveryFlowChart.vue
  10. 402
      src/views/accessrecords/modules/LndustrialExplosiveComeDetail.vue
  11. 458
      src/views/accessrecords/modules/LndustrialExplosiveEnterDetail.vue
  12. 473
      src/views/accessrecords/modules/ProcessMaterialWarehousingDetail.vue
  13. 446
      src/views/accessrecords/modules/ProcessMaterialsDeliveryDetail.vue
  14. 97
      src/views/accessrecords/plan/LndustrialExplosiveComePlan.vue
  15. 97
      src/views/accessrecords/plan/LndustrialExplosiveEnterPlan.vue
  16. 97
      src/views/accessrecords/plan/ProcessMaterialWarehousingPlan.vue
  17. 97
      src/views/accessrecords/plan/ProcessMaterialsDeliveryPlan.vue
  18. 15
      src/views/accessrecords/statement/LndustrialExplosiveComeStatement.vue
  19. 15
      src/views/accessrecords/statement/LndustrialExplosiveEnterStatement.vue
  20. 15
      src/views/accessrecords/statement/ProcessMaterialWarehousingStatement.vue
  21. 15
      src/views/accessrecords/statement/ProcessMaterialsDeliveryStatement.vue
  22. 37
      src/views/suppliesstronger/ProcessSuppliesStrongerList.vue
  23. 84
      src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue
  24. 13
      src/views/wastematerials/ProcessWasteMaterialsList.vue
  25. 14
      src/views/wastematerials/ProcessWasteMaterialsLists.vue

2
src/components/layouts/TabLayout.vue

@ -16,7 +16,7 @@
@edit="editPage">
<a-tab-pane :id="page.fullPath" :key="page.fullPath" v-for="page in pageList" :closable="!(page.meta.title=='首页')">
<span slot="tab" :pagekey="page.fullPath">{{ page.meta.title }}</span>
<span slot="tab" :pagekey="page.fullPath" v-if="page.params" >{{page.params.merchandiseName}}</span>
<span slot="tab" :pagekey="page.fullPath" v-if="page.query" >{{page.query.merchandiseName}}</span>
</a-tab-pane>
</a-tabs>
<div style="margin: 12px 12px 0;">

412
src/views/accessrecords/LndustrialExplosiveCome.vue

@ -0,0 +1,412 @@
<template>
<a-card :bordered="false" style="height: 830px">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :span="4">
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" v-model="queryParam.materialType" dictCode="material_type"
placeholder="请选择物资类型" />
</a-form-item>
</a-col>
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator">
<a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</a-button>
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
<!-- <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>-->
<!-- &lt;!&ndash; 高级查询区域 &ndash;&gt;-->
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
</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"
bordered
rowKey="id"
class="j-table-force-nowrap"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:customRow="clickThenSelect"
@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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
<!-- <a>删除</a>-->
<!-- </a-popconfirm>-->
<!-- </a-menu-item>-->
<!-- </a-menu>-->
<!-- </a-dropdown>-->
</span>
</a-table>
</div>
<!-- <a-tabs defaultActiveKey="1">-->
<!-- <a-tab-pane tab="物资出库流程出库清单" key="1" >-->
<!-- <ProcessMaterialsDeliveryListList :mainId="selectedMainId" />-->
<!-- </a-tab-pane>-->
<!-- </a-tabs>-->
<!-- <processMaterialsDelivery-modal ref="modalForm" @ok="modalFormOk"></processMaterialsDelivery-modal>-->
</a-card>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessMaterialsDeliveryModal from '@/views/processmaterials/modules/ProcessMaterialsDeliveryModal'
import { getAction } from '@/api/manage'
import ProcessMaterialsDeliveryListList from '@/views/processmaterials/ProcessMaterialsDeliveryListList'
import '@/assets/less/TableExpand.less'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { initDictOptions } from '@comp/dict/JDictSelectUtil'
export default {
name: "LndustrialExplosiveCome",
mixins:[JeecgListMixin],
components: {
ProcessMaterialsDeliveryListList,
ProcessMaterialsDeliveryModal,
JSuperQuery
},
data () {
return {
labelCol: {
xs: { span: 4 },
sm: { span: 4 },
},
wrapperCol: {
xs: { span: 20 },
sm: { span: 20 },
},
description: '物资出库流程管理页面',
//
// columns: [
// {
// title: '#',
// dataIndex: '',
// key:'rowIndex',
// width:60,
// align:"center",
// customRender:function (t,r,index) {
// return parseInt(index)+1;
// }
// },
// {
// title:'',
// align:"center",
// dataIndex: 'equipment',
// },
// {
// title:'WBS',
// align:"center",
// dataIndex: 'wbs_dictText',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialName',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialUnit',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'pleaseSendNumber'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'actualSendNumber'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'supplier',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialPrice'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialAmount'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'purpose',
// fixed:"right",
// },
// {
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }
//
// /*{
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }*/
// ],
// url: {
// list: "/hy/processMaterialsDelivery/list",
// // list: "/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId",
// delete: "/hy/processMaterialsDelivery/deleteProcessMaterialsDeliveryList",
// deleteBatch: "/hy/processMaterialsDelivery/deleteBatchProcessMaterialsDeliveryList",
// exportXlsUrl: "/hy/processMaterialsDelivery/exportProcessMaterialsDeliveryList",
// importUrl: "/hy/processMaterialsDelivery/importProcessMaterialsDeliveryList",
// },
columns: [
{
title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'流程发起公司',
align:"center",
dataIndex: 'company_dictText',
},
{
title:'流程发起时间',
align:"center",
dataIndex: 'createTime'
},
{
title:'流程发起部门',
align:"center",
dataIndex: 'sysOrgCode_dictText',
},
{
title:'流程发起人',
align:"center",
dataIndex: 'createBy'
},
{
title:'物资类型',
align:"center",
dataIndex: 'materialType_dictText',
},
{
title:'出库时间',
align:"center",
dataIndex: 'deliveryTime',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
// {
// title:'id',
// align:"center",
// dataIndex: 'fileId',
// scopedSlots: {customRender: 'fileSlot'}
// },
{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' },
}
],
url: {
list: "/hy/processMaterialsDelivery/listStockRemoval",
delete: "/hy/processMaterialsDelivery/delete",
deleteBatch: "/hy/processMaterialsDelivery/deleteBatch",
exportXlsUrl: "/hy/processMaterialsDelivery/exportXls",
importExcelUrl: "hy/processMaterialsDelivery/importExcel",
},
dictOptions:{
company:[],
sysOrgCode:[],
materialType:[],
},
/* 分页参数 */
ipagination:{
current: 1,
pageSize: 5,
pageSizeOptions: ['5', '10', '50'],
showTotal: (total, range) => {
return range[0] + "-" + range[1] + " 共" + total + "条"
},
showQuickJumper: true,
showSizeChanger: true,
total: 0
},
selectedMainId:'',
superFieldList:[],
}
},
created() {
this.getSuperFieldList();
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
},
methods: {
searchQuery() {
this.loadData(1);
},
handleEnterDetail(records){
console.log(records)
// this.$router.push({
// name:'src-views-accessrecords-plan-ProcessMaterialsDeliveryPlan',
// params:{
// item: records.id,
// merchandiseName: " - "+records.materialType_dictText,
// }})
this.$router.push({
path:'/access_records/come',
query:{
item: records.id,
merchandiseName: " - "+records.materialType_dictText,
}
})
},
initDictConfig(){
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'company', res.result)
}
})
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'sysOrgCode', res.result)
}
})
initDictOptions('').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'materialType', res.result)
}
})
},
clickThenSelect(record) {
return {
on: {
click: () => {
this.onSelectChange(record.id.split(","), [record]);
}
}
}
},
onClearSelected() {
this.selectedRowKeys = [];
this.selectionRows = [];
this.selectedMainId=''
},
onSelectChange(selectedRowKeys, selectionRows) {
this.selectedMainId=selectedRowKeys[0]
this.selectedRowKeys = selectedRowKeys;
this.selectionRows = selectionRows;
},
loadData(arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.onClearSelected()
var params = this.getQueryParams();//
this.loading = true;
getAction(this.url.list, params).then((res) => {
if (res.success) {
this.dataSource = res.result.records;
this.ipagination.total = res.result.total;
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'})
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'})
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'})
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'})
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''})
fieldList.push({type:'date',value:'deliveryTime',text:'出库时间'})
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>

395
src/views/accessrecords/LndustrialExplosiveEnter.vue

@ -0,0 +1,395 @@
<template>
<a-card :bordered="false" style="height: 830px">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :span="4">
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" v-model="queryParam.materialType" dictCode="material_type"
placeholder="请选择物资类型" />
</a-form-item>
</a-col>
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="供应商">-->
<!-- <a-input placeholder="请输入供应商信息" v-model="queryParam.supplier"></a-input>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="物料组">-->
<!-- <a-input placeholder="请输入物料组" v-model="queryParam.descriptionId"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" >-->
<!-- <a-form-item label="物料号">-->
<!-- <a-input placeholder="请输入物料" v-model="queryParam.materialsNumber" disabled="disabled"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="物料名称">-->
<!-- <a-input placeholder="请输入物料名称" v-model="queryParam.merchandiseName"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="仓储地点">-->
<!-- <a-input placeholder="请选择仓储地点" v-model="queryParam.unitWasteWarehouseCodeId"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!--&lt;!&ndash; </a-row>&ndash;&gt;-->
<!--&lt;!&ndash; <a-row :gutter="24">&ndash;&gt;-->
<!--&lt;!&ndash; <a-col :xl="5" :lg="7" :md="8" :sm="16">&ndash;&gt;-->
<!--&lt;!&ndash; <a-form-item label="入库批次">&ndash;&gt;-->
<!--&lt;!&ndash; <a-input placeholder="请选择批次" v-model="queryParam.supplierBatch"/>&ndash;&gt;-->
<!--&lt;!&ndash; </a-form-item>&ndash;&gt;-->
<!--&lt;!&ndash; </a-col>&ndash;&gt;-->
<!--&lt;!&ndash; <a-col :xl="5" :lg="7" :md="8" :sm="16">&ndash;&gt;-->
<!--&lt;!&ndash; <a-form-item label="保质期">&ndash;&gt;-->
<!--&lt;!&ndash; <a-input placeholder="请选择保质期" v-model="queryParam.expirationDate"/>&ndash;&gt;-->
<!--&lt;!&ndash; </a-form-item>&ndash;&gt;-->
<!--&lt;!&ndash; </a-col>&ndash;&gt;-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="入库人">-->
<!-- <a-input placeholder="请选择入库人" v-model="queryParam.librarySign"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
<!-- <a-range-picker-->
<!-- style="width: 180px"-->
<!-- format="YYYY-MM-DD"-->
<!-- :placeholder="['开始时间', '结束时间']"-->
<!-- @change="onDateChangestorageTime"-->
<!-- />-->
<!-- </a-form-item>-->
<!-- </a-col>-->
</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-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</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>-->
<!-- 高级查询区域 -->
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
</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"
bordered
rowKey="id"
class="j-table-force-nowrap"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:customRow="clickThenSelect"
@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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
<!-- <a>删除</a>-->
<!-- </a-popconfirm>-->
<!-- </a-menu-item>-->
<!-- </a-menu>-->
<!-- </a-dropdown>-->
</span>
</a-table>
</div>
<!-- <a-tabs defaultActiveKey="1">-->
<!-- <a-tab-pane tab="物资入库流程清单表" key="1" >-->
<!-- <ProcessMaterialWarehousingListList :mainId="selectedMainId" />-->
<!-- </a-tab-pane>-->
<!-- </a-tabs>-->
<!-- <processMaterialWarehousing-modal ref="modalForm" @ok="modalFormOk"></processMaterialWarehousing-modal>-->
</a-card>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessMaterialWarehousingModal from '@/views/processmaterials/modules/ProcessMaterialWarehousingModal'
import { getAction } from '@/api/manage'
import ProcessMaterialWarehousingListList from '@/views/processmaterials/ProcessMaterialWarehousingListList'
import '@/assets/less/TableExpand.less'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { initDictOptions } from '@comp/dict/JDictSelectUtil'
export default {
name: "LndustrialExplosiveEnter",
mixins:[JeecgListMixin],
components: {
ProcessMaterialWarehousingListList,
ProcessMaterialWarehousingModal,
JSuperQuery
},
data () {
return {
labelCol: {
xs: { span: 4 },
sm: { span: 4 },
},
wrapperCol: {
xs: { span: 20 },
sm: { span: 20 },
},
description: '物资入库流程管理页面',
//
columns: [
{
title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'流程发起公司',
align:"center",
dataIndex: 'company_dictText',
},
{
title:'流程发起时间',
align:"center",
dataIndex: 'createTime'
},
{
title:'流程发起部门',
align:"center",
dataIndex: 'sysOrgCode_dictText',
},
{
title:'流程发起人',
align:"center",
dataIndex: 'createBy'
},
// {
// title:'',
// align:"center",
// dataIndex: 'processUdgetPlanId'
// },
{
title:'物资类型',
align:"center",
dataIndex: 'materialType_dictText'
},
{
title:'批次',
align:"center",
dataIndex: 'targetLibrary'
},
{
title:'入库总批次',
align:"center",
dataIndex: 'warehousingBatch'
},
// {
// title:'id',
// align:"center",
// dataIndex: 'fileId',
// scopedSlots: {customRender: 'fileSlot'}
// },
{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' },
}
],
url: {
list: "/hy/processMaterialWarehousing/listRecords",
delete: "/hy/processMaterialWarehousing/delete",
deleteBatch: "/hy/processMaterialWarehousing/deleteBatch",
exportXlsUrl: "/hy/processMaterialWarehousing/exportXls",
importExcelUrl: "hy/processMaterialWarehousing/importExcel",
},
dictOptions:{
company:[],
sysOrgCode:[],
},
/* 分页参数 */
ipagination:{
current: 1,
pageSize: 5,
pageSizeOptions: ['5', '10', '50'],
showTotal: (total, range) => {
return range[0] + "-" + range[1] + " 共" + total + "条"
},
showQuickJumper: true,
showSizeChanger: true,
total: 0
},
selectedMainId:'',
superFieldList:[],
}
},
created() {
this.getSuperFieldList();
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
},
methods: {
searchQuery() {
this.loadData(1);
},
handleEnterDetail(records){
console.log(records)
this.$router.push({
path:'/access_records/enter',
query:{
item: records.id,
merchandiseName: " - "+records.materialType_dictText,
}
})
// this.$router.push({
// name:'src-views-accessrecords-plan-ProcessMaterialWarehousingPlan',
// params:{
// item: records.id,
// merchandiseName: " - "+records.materialType_dictText,
// }})
},
onDateChange: function (value, dateString) {
this.queryParam.productDateBegin=dateString[0];
this.queryParam.productDateEnd=dateString[1];
console.log()
},
onDateChangestorageTime: function (value, dateString) {
this.queryParam.inboundDateBegin=dateString[0];
this.queryParam.inboundDateEnd=dateString[1];
},
initDictConfig(){
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'company', res.result)
}
})
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'sysOrgCode', res.result)
}
})
},
clickThenSelect(record) {
return {
on: {
click: () => {
this.onSelectChange(record.id.split(","), [record]);
}
}
}
},
onClearSelected() {
this.selectedRowKeys = [];
this.selectionRows = [];
this.selectedMainId=''
},
onSelectChange(selectedRowKeys, selectionRows) {
this.selectedMainId=selectedRowKeys[0]
this.selectedRowKeys = selectedRowKeys;
this.selectionRows = selectionRows;
},
loadData(arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.onClearSelected()
var params = this.getQueryParams();//
console.log("====================>",params)
this.loading = true;
getAction(this.url.list, params).then((res) => {
if (res.success) {
this.dataSource = res.result.records;
this.ipagination.total = res.result.total;
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'})
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'})
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'})
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'})
fieldList.push({type:'string',value:'processUdgetPlanId',text:'关联预算流程',dictCode:''})
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''})
fieldList.push({type:'int',value:'targetLibrary',text:'入库目标库',dictCode:''})
fieldList.push({type:'int',value:'warehousingBatch',text:'入库总批次',dictCode:''})
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>

401
src/views/accessrecords/ProcessMaterialWarehousingRecord.vue

@ -0,0 +1,401 @@
<template>
<a-card :bordered="false" style="height: 830px">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :span="4">
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" v-model="queryParam.materialType" dictCode="material_type"
placeholder="请选择物资类型" />
</a-form-item>
</a-col>
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="供应商">-->
<!-- <a-input placeholder="请输入供应商信息" v-model="queryParam.supplier"></a-input>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="物料组">-->
<!-- <a-input placeholder="请输入物料组" v-model="queryParam.descriptionId"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" >-->
<!-- <a-form-item label="物料号">-->
<!-- <a-input placeholder="请输入物料" v-model="queryParam.materialsNumber" disabled="disabled"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="物料名称">-->
<!-- <a-input placeholder="请输入物料名称" v-model="queryParam.merchandiseName"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="仓储地点">-->
<!-- <a-input placeholder="请选择仓储地点" v-model="queryParam.unitWasteWarehouseCodeId"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!--&lt;!&ndash; </a-row>&ndash;&gt;-->
<!--&lt;!&ndash; <a-row :gutter="24">&ndash;&gt;-->
<!--&lt;!&ndash; <a-col :xl="5" :lg="7" :md="8" :sm="16">&ndash;&gt;-->
<!--&lt;!&ndash; <a-form-item label="入库批次">&ndash;&gt;-->
<!--&lt;!&ndash; <a-input placeholder="请选择批次" v-model="queryParam.supplierBatch"/>&ndash;&gt;-->
<!--&lt;!&ndash; </a-form-item>&ndash;&gt;-->
<!--&lt;!&ndash; </a-col>&ndash;&gt;-->
<!--&lt;!&ndash; <a-col :xl="5" :lg="7" :md="8" :sm="16">&ndash;&gt;-->
<!--&lt;!&ndash; <a-form-item label="保质期">&ndash;&gt;-->
<!--&lt;!&ndash; <a-input placeholder="请选择保质期" v-model="queryParam.expirationDate"/>&ndash;&gt;-->
<!--&lt;!&ndash; </a-form-item>&ndash;&gt;-->
<!--&lt;!&ndash; </a-col>&ndash;&gt;-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="入库人">-->
<!-- <a-input placeholder="请选择入库人" v-model="queryParam.librarySign"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
<!-- <a-range-picker-->
<!-- style="width: 180px"-->
<!-- format="YYYY-MM-DD"-->
<!-- :placeholder="['开始时间', '结束时间']"-->
<!-- @change="onDateChangestorageTime"-->
<!-- />-->
<!-- </a-form-item>-->
<!-- </a-col>-->
</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-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</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>-->
<!-- 高级查询区域 -->
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
</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"
bordered
rowKey="id"
class="j-table-force-nowrap"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:customRow="clickThenSelect"
@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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
<!-- <a>删除</a>-->
<!-- </a-popconfirm>-->
<!-- </a-menu-item>-->
<!-- </a-menu>-->
<!-- </a-dropdown>-->
</span>
</a-table>
</div>
<!-- <a-tabs defaultActiveKey="1">-->
<!-- <a-tab-pane tab="物资入库流程清单表" key="1" >-->
<!-- <ProcessMaterialWarehousingListList :mainId="selectedMainId" />-->
<!-- </a-tab-pane>-->
<!-- </a-tabs>-->
<!-- <processMaterialWarehousing-modal ref="modalForm" @ok="modalFormOk"></processMaterialWarehousing-modal>-->
</a-card>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessMaterialWarehousingModal from '@/views/processmaterials/modules/ProcessMaterialWarehousingModal'
import { getAction } from '@/api/manage'
import ProcessMaterialWarehousingListList from '@/views/processmaterials/ProcessMaterialWarehousingListList'
import '@/assets/less/TableExpand.less'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { initDictOptions } from '@comp/dict/JDictSelectUtil'
export default {
name: "ProcessMaterialWarehousingRecord",
mixins:[JeecgListMixin],
components: {
ProcessMaterialWarehousingListList,
ProcessMaterialWarehousingModal,
JSuperQuery
},
data () {
return {
labelCol: {
xs: { span: 4 },
sm: { span: 4 },
},
wrapperCol: {
xs: { span: 20 },
sm: { span: 20 },
},
description: '物资入库流程管理页面',
//
columns: [
{
title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'流程发起公司',
align:"center",
dataIndex: 'company_dictText',
},
{
title:'流程发起时间',
align:"center",
dataIndex: 'createTime'
},
{
title:'流程发起部门',
align:"center",
dataIndex: 'sysOrgCode_dictText',
},
{
title:'流程发起人',
align:"center",
dataIndex: 'createBy'
},
// {
// title:'',
// align:"center",
// dataIndex: 'processUdgetPlanId'
// },
{
title:'物资类型',
align:"center",
dataIndex: 'materialType_dictText'
},
{
title:'批次',
align:"center",
dataIndex: 'targetLibrary'
},
{
title:'入库总批次',
align:"center",
dataIndex: 'warehousingBatch'
},
// {
// title:'id',
// align:"center",
// dataIndex: 'fileId',
// scopedSlots: {customRender: 'fileSlot'}
// },
{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' },
}
],
url: {
list: "/hy/processMaterialWarehousing/listRecords",
delete: "/hy/processMaterialWarehousing/delete",
deleteBatch: "/hy/processMaterialWarehousing/deleteBatch",
exportXlsUrl: "/hy/processMaterialWarehousing/exportXls",
importExcelUrl: "hy/processMaterialWarehousing/importExcel",
},
dictOptions:{
company:[],
sysOrgCode:[],
},
/* 分页参数 */
ipagination:{
current: 1,
pageSize: 10,
pageSizeOptions: ['10', '30', '50'],
showTotal: (total, range) => {
return range[0] + "-" + range[1] + " 共" + total + "条"
},
showQuickJumper: true,
showSizeChanger: true,
total: 0
},
selectedMainId:'',
superFieldList:[],
}
},
created() {
this.getSuperFieldList();
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
},
methods: {
searchQuery() {
this.loadData(1);
},
handleEnterDetail(records){
console.log(records)
this.$router.push({
path:'/access_records/matwarlan',
query:{
item: records.id,
merchandiseName: " - "+records.materialType_dictText,
}
})
// this.$router.push({
// name:'src-views-accessrecords-plan-ProcessMaterialWarehousingPlan',
// params:{
// item: records.id,
// merchandiseName: " - "+records.materialType_dictText,
// }})
},
onDateChange: function (value, dateString) {
this.queryParam.productDateBegin=dateString[0];
this.queryParam.productDateEnd=dateString[1];
console.log()
},
onDateChangestorageTime: function (value, dateString) {
this.queryParam.inboundDateBegin=dateString[0];
this.queryParam.inboundDateEnd=dateString[1];
},
initDictConfig(){
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'company', res.result)
}
})
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'sysOrgCode', res.result)
}
})
},
clickThenSelect(record) {
return {
on: {
click: () => {
this.onSelectChange(record.id.split(","), [record]);
}
}
}
},
onClearSelected() {
this.selectedRowKeys = [];
this.selectionRows = [];
this.selectedMainId=''
},
onSelectChange(selectedRowKeys, selectionRows) {
this.selectedMainId=selectedRowKeys[0]
this.selectedRowKeys = selectedRowKeys;
this.selectionRows = selectionRows;
},
loadData(arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.onClearSelected()
console.log("部门ID===》", sessionStorage.getItem('USER_INFORMATION'))
let ue= sessionStorage.getItem('USER_INFORMATION');
let res=JSON.parse(ue);
this.queryParam.sysOrgCode = res.departIds;
console.log(res.departIds);
var params = this.getQueryParams();//
// console.log("Id"+sessionStorage.getItem('PUWWC_Id') )//id
console.log("====================>",params)
this.loading = true;
getAction(this.url.list, params).then((res) => {
if (res.success) {
this.dataSource = res.result.records;
this.ipagination.total = res.result.total;
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'})
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'})
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'})
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'})
fieldList.push({type:'string',value:'processUdgetPlanId',text:'关联预算流程',dictCode:''})
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''})
fieldList.push({type:'int',value:'targetLibrary',text:'入库目标库',dictCode:''})
fieldList.push({type:'int',value:'warehousingBatch',text:'入库总批次',dictCode:''})
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>

415
src/views/accessrecords/ProcessMaterialsDeliveryRecord.vue

@ -0,0 +1,415 @@
<template>
<a-card :bordered="false" style="height: 830px">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :span="4">
<a-form-item label="物资类型" :labelCol="labelCol" :wrapperCol="wrapperCol">
<j-dict-select-tag type="list" v-model="queryParam.materialType" dictCode="material_type"
placeholder="请选择物资类型" />
</a-form-item>
</a-col>
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator">
<a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</a-button>
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
<!-- <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>-->
<!-- &lt;!&ndash; 高级查询区域 &ndash;&gt;-->
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
</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"
bordered
rowKey="id"
class="j-table-force-nowrap"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:customRow="clickThenSelect"
@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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
<!-- <a>删除</a>-->
<!-- </a-popconfirm>-->
<!-- </a-menu-item>-->
<!-- </a-menu>-->
<!-- </a-dropdown>-->
</span>
</a-table>
</div>
<!-- <a-tabs defaultActiveKey="1">-->
<!-- <a-tab-pane tab="物资出库流程出库清单" key="1" >-->
<!-- <ProcessMaterialsDeliveryListList :mainId="selectedMainId" />-->
<!-- </a-tab-pane>-->
<!-- </a-tabs>-->
<!-- <processMaterialsDelivery-modal ref="modalForm" @ok="modalFormOk"></processMaterialsDelivery-modal>-->
</a-card>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessMaterialsDeliveryModal from '@/views/processmaterials/modules/ProcessMaterialsDeliveryModal'
import { getAction } from '@/api/manage'
import ProcessMaterialsDeliveryListList from '@/views/processmaterials/ProcessMaterialsDeliveryListList'
import '@/assets/less/TableExpand.less'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { initDictOptions } from '@comp/dict/JDictSelectUtil'
export default {
name: "ProcessMaterialsDeliveryRecord",
mixins:[JeecgListMixin],
components: {
ProcessMaterialsDeliveryListList,
ProcessMaterialsDeliveryModal,
JSuperQuery
},
data () {
return {
labelCol: {
xs: { span: 4 },
sm: { span: 4 },
},
wrapperCol: {
xs: { span: 20 },
sm: { span: 20 },
},
description: '物资出库流程管理页面',
//
// columns: [
// {
// title: '#',
// dataIndex: '',
// key:'rowIndex',
// width:60,
// align:"center",
// customRender:function (t,r,index) {
// return parseInt(index)+1;
// }
// },
// {
// title:'',
// align:"center",
// dataIndex: 'equipment',
// },
// {
// title:'WBS',
// align:"center",
// dataIndex: 'wbs_dictText',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialName',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialUnit',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'pleaseSendNumber'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'actualSendNumber'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'supplier',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialPrice'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialAmount'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'purpose',
// fixed:"right",
// },
// {
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }
//
// /*{
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }*/
// ],
// url: {
// list: "/hy/processMaterialsDelivery/list",
// // list: "/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId",
// delete: "/hy/processMaterialsDelivery/deleteProcessMaterialsDeliveryList",
// deleteBatch: "/hy/processMaterialsDelivery/deleteBatchProcessMaterialsDeliveryList",
// exportXlsUrl: "/hy/processMaterialsDelivery/exportProcessMaterialsDeliveryList",
// importUrl: "/hy/processMaterialsDelivery/importProcessMaterialsDeliveryList",
// },
columns: [
{
title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'流程发起公司',
align:"center",
dataIndex: 'company_dictText',
},
{
title:'流程发起时间',
align:"center",
dataIndex: 'createTime'
},
{
title:'流程发起部门',
align:"center",
dataIndex: 'sysOrgCode_dictText',
},
{
title:'流程发起人',
align:"center",
dataIndex: 'createBy'
},
{
title:'物资类型',
align:"center",
dataIndex: 'materialType_dictText',
},
{
title:'出库时间',
align:"center",
dataIndex: 'deliveryTime',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
// {
// title:'id',
// align:"center",
// dataIndex: 'fileId',
// scopedSlots: {customRender: 'fileSlot'}
// },
{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' },
}
],
url: {
list: "/hy/processMaterialsDelivery/listStockRemoval",
delete: "/hy/processMaterialsDelivery/delete",
deleteBatch: "/hy/processMaterialsDelivery/deleteBatch",
exportXlsUrl: "/hy/processMaterialsDelivery/exportXls",
importExcelUrl: "hy/processMaterialsDelivery/importExcel",
},
dictOptions:{
company:[],
sysOrgCode:[],
materialType:[],
},
/* 分页参数 */
ipagination:{
current: 1,
pageSize: 10,
pageSizeOptions: ['10', '30', '50'],
showTotal: (total, range) => {
return range[0] + "-" + range[1] + " 共" + total + "条"
},
showQuickJumper: true,
showSizeChanger: true,
total: 0
},
selectedMainId:'',
superFieldList:[],
}
},
created() {
this.getSuperFieldList();
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
},
methods: {
searchQuery() {
this.loadData(1);
},
handleEnterDetail(records){
console.log(records)
// this.$router.push({
// name:'src-views-accessrecords-plan-ProcessMaterialsDeliveryPlan',
// params:{
// item: records.id,
// merchandiseName: " - "+records.materialType_dictText,
// }})
this.$router.push({
path:'/access_records/deplan',
query:{
item: records.id,
merchandiseName: " - "+records.materialType_dictText,
}
})
},
initDictConfig(){
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'company', res.result)
}
})
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'sysOrgCode', res.result)
}
})
initDictOptions('').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'materialType', res.result)
}
})
},
clickThenSelect(record) {
return {
on: {
click: () => {
this.onSelectChange(record.id.split(","), [record]);
}
}
}
},
onClearSelected() {
this.selectedRowKeys = [];
this.selectionRows = [];
this.selectedMainId=''
},
onSelectChange(selectedRowKeys, selectionRows) {
this.selectedMainId=selectedRowKeys[0]
this.selectedRowKeys = selectedRowKeys;
this.selectionRows = selectionRows;
},
loadData(arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.onClearSelected()
let ue= sessionStorage.getItem('USER_INFORMATION');
let res=JSON.parse(ue);
this.queryParam.sysOrgCode = res.departIds;
var params = this.getQueryParams();//
this.loading = true;
getAction(this.url.list, params).then((res) => {
if (res.success) {
this.dataSource = res.result.records;
this.ipagination.total = res.result.total;
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'})
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'})
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'})
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'})
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''})
fieldList.push({type:'date',value:'deliveryTime',text:'出库时间'})
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>

13
src/views/accessrecords/flowchart/LndustrialExplosiveComeFlowChart.vue

@ -0,0 +1,13 @@
<template>
</template>
<script>
export default {
name: 'LndustrialExplosiveComeFlowChart'
}
</script>
<style scoped>
</style>

13
src/views/accessrecords/flowchart/LndustrialExplosiveEnterFlowChart.vue

@ -0,0 +1,13 @@
<template>
</template>
<script>
export default {
name: "LndustrialExplosiveEnterFlowChart"
}
</script>
<style scoped>
</style>

210
src/views/accessrecords/flowchart/ProcessMaterialWarehousingFlowChart.vue

@ -0,0 +1,210 @@
<template>
<div class="search">
<!--<a-card style="margin-bottom:10px;">
<p slot="title">
<span>流程审批进度历史</span>
</p>
<a-row style="position:relative">
<a-table :loading="loading" rowKey="id"
:dataSource="data"
:pagination="false"
ref="table">
<a-table-column title="#" width="50">
<template slot-scope="t,r,i" >
<span> {{i+1}} </span>
</template>
</a-table-column>
<a-table-column title="任务名称" dataIndex="name" width="150" align="center">
<template slot-scope="t">
<span> {{t}} </span>
</template>
</a-table-column>
<a-table-column title="处理人" dataIndex="assignees" width="150" align="center">
<template slot-scope="t">
<div v-if="t">
<span v-for="item in t">
<span v-if="item.isExecutor" style="color: #00DB00;">{{item.username}} </span>
<span v-else style="color: #999;">{{item.username}} </span>
</span>
</div>
</template>
</a-table-column>
<a-table-column title="审批操作" dataIndex="deleteReason" width="150" align="center">
<template slot-scope="t">
<span v-if="t.toString().indexOf('通过')>-1" style="color: #00DB00">{{t}}</span>
<span v-else-if="t.toString().indexOf('驳回')>-1" style="color: red;">{{t}}</span>
<span v-else>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="审批意见" dataIndex="comment" width="150" align="center">
<template slot-scope="t">
<span>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="耗时" dataIndex="duration" width="150" align="center">
<template slot-scope="t">
<span>{{millsToTime(t)}}</span>
</template>
</a-table-column>
<a-table-column title="创建时间" dataIndex="createTime" width="150" align="center">
<template slot-scope="t">
<span>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="完成时间" dataIndex="endTime" width="150" align="center">
<template slot-scope="t">
<span>{{t}}</span>
</template>
</a-table-column>
<a-table-column title="状态" dataIndex="endTime" key="aaa" width="150" align="center">
<template slot-scope="t">
<span v-if="t" style="color: blue;">已办理</span>
<span v-else style="color: #999999">待处理</span>
</template>
</a-table-column>
</a-table>
</a-row>
</a-card>-->
<!-- <a-tabs type="card" @change="callback">-->
<!-- <a-tab-pane key="1" tab="实时流程图">-->
<!--<p slot="title">
<span>实时流程图</span>
</p>-->
<a-row style="position:relative">
<img :src="imgUrl" />
<a-spin size="large" fix v-if="loadingImg"></a-spin>
</a-row>
<!-- </a-tab-pane>-->
<!-- <a-tab-pane key="2" tab="表单数据" v-if="lcModa">
<a-card>
&lt;!&ndash;流程表单&ndash;&gt;
<component :disabled="lcModa.disabled" :is="lcModa.formComponent"
:processData="lcModa.processData" :isNew="lcModa.isNew" :task="lcModa.isTask"
@afterSubmit="afterSub"
@passTask="pass(lcModa.processData)"
@backTask="back(lcModa.processData)"
@close="lcModa.visible=false,lcModa.disabled = false"></component>
</a-card>
</a-tab-pane>-->
<!--</a-tabs>-->
</div>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import { activitiMixin } from '@/views/activiti/mixins/activitiMixin'
export default {
name: "ProcessMaterialWarehousingFlowChart",
mixins:[activitiMixin,JeecgListMixin],
props: {
/**/
procInstId: {
type: String,
default: '',
required: true
},
pictureId: {
type: String,
default: '',
required: true
},
lcModa: {
type: Object,
required: false
}
},
data() {
return {
url:{
historicFlow:'/actTask/historicFlow/',
getHighlightImg:`${window._CONFIG['domianURL']}/activiti/models/getHighlightImg/`,
getNormalImg:`${window._CONFIG['domianURL']}/activiti/models/getNormalImg/`
},
type: 0,
loading: false, //
loadingImg: false,
data: [],
id: "",
imgUrl: "",
backRoute: ""
};
},
created() {
console.log(this.procInstId,'1111111111')
if (this.pictureId){
this.initNormal();
}else {
this.init();
}
// if (!this.pictrueId){
//
//
// }else {
//
//
// }
},
watch: {
procInstId:function(newval ,oldName) {
this.init();
},
pictureId:function() {
}
},
methods: {
loadData(){
},
init() {
this.id = this.procInstId;
this.imgUrl =this.url.getHighlightImg + this.id + "?time=" + new Date();
this.getDataList();
},
initNormal() {
this.id = this.pictureId;
this.imgUrl =this.url.getNormalImg + this.id + "?time=" + new Date();
},
getDataList() {
this.loading = true;
this.getAction(this.url.historicFlow+this.id).then(res => {
this.loading = false;
if (res.success) {
this.data = res.result;
if (!res.result || res.result.length == 0) {
this.$message.info( "未找到该记录审批历史数据,历史数据可能已被删除");
}
}else {
this.$message.error( res.message);
}
});
},
handleTableChange(pagination, filters, sorter) {
//
//TODO
if (Object.keys(sorter).length > 0) {
this.isorter.column = sorter.field;
this.isorter.order = "ascend" == sorter.order ? "asc" : "desc"
}
this.ipagination = pagination;
// this.loadData();
},
callback(key){
},
afterSub(){
},
pass(v){
this.$emit('passTask',v)
},
back(v){
this.$emit('backTask',v)
}
},
};
</script>

386
src/views/accessrecords/flowchart/ProcessMaterialsDeliveryFlowChart.vue

@ -0,0 +1,386 @@
<template>
<a-card :bordered="false" style="height: 830px">
<!-- 查询区域 -->
<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>-->
<!-- &lt;!&ndash; 高级查询区域 &ndash;&gt;-->
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
</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"
bordered
rowKey="id"
class="j-table-force-nowrap"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:customRow="clickThenSelect"
@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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
<!-- <a>删除</a>-->
<!-- </a-popconfirm>-->
<!-- </a-menu-item>-->
<!-- </a-menu>-->
<!-- </a-dropdown>-->
</span>
</a-table>
</div>
<!-- <a-tabs defaultActiveKey="1">-->
<!-- <a-tab-pane tab="物资出库流程出库清单" key="1" >-->
<!-- <ProcessMaterialsDeliveryListList :mainId="selectedMainId" />-->
<!-- </a-tab-pane>-->
<!-- </a-tabs>-->
<!-- <processMaterialsDelivery-modal ref="modalForm" @ok="modalFormOk"></processMaterialsDelivery-modal>-->
</a-card>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessMaterialsDeliveryModal from '@/views/processmaterials/modules/ProcessMaterialsDeliveryModal'
import { getAction } from '@/api/manage'
import ProcessMaterialsDeliveryListList from '@/views/processmaterials/ProcessMaterialsDeliveryListList'
import '@/assets/less/TableExpand.less'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { initDictOptions } from '@comp/dict/JDictSelectUtil'
export default {
name: "ProcessMaterialsDeliveryList",
mixins:[JeecgListMixin],
components: {
ProcessMaterialsDeliveryListList,
ProcessMaterialsDeliveryModal,
JSuperQuery
},
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: 'equipment',
// },
// {
// title:'WBS',
// align:"center",
// dataIndex: 'wbs_dictText',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialName',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialUnit',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'pleaseSendNumber'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'actualSendNumber'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'supplier',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialPrice'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialAmount'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'purpose',
// fixed:"right",
// },
// {
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }
//
// /*{
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }*/
// ],
// url: {
// list: "/hy/processMaterialsDelivery/list",
// // list: "/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId",
// delete: "/hy/processMaterialsDelivery/deleteProcessMaterialsDeliveryList",
// deleteBatch: "/hy/processMaterialsDelivery/deleteBatchProcessMaterialsDeliveryList",
// exportXlsUrl: "/hy/processMaterialsDelivery/exportProcessMaterialsDeliveryList",
// importUrl: "/hy/processMaterialsDelivery/importProcessMaterialsDeliveryList",
// },
columns: [
{
title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'流程发起公司',
align:"center",
dataIndex: 'company_dictText',
},
{
title:'流程发起时间',
align:"center",
dataIndex: 'createTime'
},
{
title:'流程发起部门',
align:"center",
dataIndex: 'sysOrgCode_dictText',
},
{
title:'流程发起人',
align:"center",
dataIndex: 'createBy'
},
{
title:'物资类型',
align:"center",
dataIndex: 'materialType_dictText',
},
{
title:'出库时间',
align:"center",
dataIndex: 'deliveryTime',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
// {
// title:'id',
// align:"center",
// dataIndex: 'fileId',
// scopedSlots: {customRender: 'fileSlot'}
// },
{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' },
}
],
url: {
list: "/hy/processMaterialsDelivery/listStockRemoval",
delete: "/hy/processMaterialsDelivery/delete",
deleteBatch: "/hy/processMaterialsDelivery/deleteBatch",
exportXlsUrl: "/hy/processMaterialsDelivery/exportXls",
importExcelUrl: "hy/processMaterialsDelivery/importExcel",
},
dictOptions:{
company:[],
sysOrgCode:[],
materialType:[],
},
/* 分页参数 */
ipagination:{
current: 1,
pageSize: 5,
pageSizeOptions: ['5', '10', '50'],
showTotal: (total, range) => {
return range[0] + "-" + range[1] + " 共" + total + "条"
},
showQuickJumper: true,
showSizeChanger: true,
total: 0
},
selectedMainId:'',
superFieldList:[],
}
},
created() {
this.getSuperFieldList();
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
},
methods: {
handleEnterDetail(records){
console.log(records)
this.$router.push({
name:'src-views-accessrecords-plan-ProcessMaterialWarehousingPlan',
params:{
item: records.id,
merchandiseName: " - "+records.materialType_dictText,
}})
},
initDictConfig(){
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'company', res.result)
}
})
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'sysOrgCode', res.result)
}
})
initDictOptions('').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'materialType', res.result)
}
})
},
clickThenSelect(record) {
return {
on: {
click: () => {
this.onSelectChange(record.id.split(","), [record]);
}
}
}
},
onClearSelected() {
this.selectedRowKeys = [];
this.selectionRows = [];
this.selectedMainId=''
},
onSelectChange(selectedRowKeys, selectionRows) {
this.selectedMainId=selectedRowKeys[0]
this.selectedRowKeys = selectedRowKeys;
this.selectionRows = selectionRows;
},
loadData(arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.onClearSelected()
var params = this.getQueryParams();//
this.loading = true;
getAction(this.url.list, params).then((res) => {
if (res.success) {
this.dataSource = res.result.records;
this.ipagination.total = res.result.total;
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'})
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'})
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'})
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'})
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''})
fieldList.push({type:'date',value:'deliveryTime',text:'出库时间'})
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less'
</style>

402
src/views/accessrecords/modules/LndustrialExplosiveComeDetail.vue

@ -0,0 +1,402 @@
<template>
<a-card :bordered="false" style="height: 830px">
<!-- 查询区域 -->
<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>-->
<!-- &lt;!&ndash; 高级查询区域 &ndash;&gt;-->
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
</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"
bordered
rowKey="id"
class="j-table-force-nowrap"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:customRow="clickThenSelect"
@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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
<!-- <a>删除</a>-->
<!-- </a-popconfirm>-->
<!-- </a-menu-item>-->
<!-- </a-menu>-->
<!-- </a-dropdown>-->
</span>
</a-table>
</div>
<!-- <a-tabs defaultActiveKey="1">-->
<!-- <a-tab-pane tab="物资出库流程出库清单" key="1" >-->
<!-- <ProcessMaterialsDeliveryListList :mainId="selectedMainId" />-->
<!-- </a-tab-pane>-->
<!-- </a-tabs>-->
<!-- <processMaterialsDelivery-modal ref="modalForm" @ok="modalFormOk"></processMaterialsDelivery-modal>-->
</a-card>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessMaterialsDeliveryModal from '@/views/processmaterials/modules/ProcessMaterialsDeliveryModal'
import { getAction } from '@/api/manage'
import ProcessMaterialsDeliveryListList from '@/views/processmaterials/ProcessMaterialsDeliveryListList'
import '@/assets/less/TableExpand.less'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { initDictOptions } from '@comp/dict/JDictSelectUtil'
export default {
name: "LndustrialExplosiveComeDetail",
mixins:[JeecgListMixin],
components: {
ProcessMaterialsDeliveryListList,
ProcessMaterialsDeliveryModal,
JSuperQuery
},
props:{
deliveryDetailId:{
type:String,
},
},
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: 'materialGroup',
},
{
title:'物料号',
align:"center",
dataIndex: 'materialsNumber',
},
{
title:'物料名称',
align:"center",
dataIndex: 'materialName',
},
{
title:'规格',
align:"center",
dataIndex: 'materialName1',
},
{
title:'型号',
align:"center",
dataIndex: 'materialName2',
},
{
title:'单位',
align:"center",
dataIndex: 'materialUnit',
},
{
title:'请发数',
align:"center",
dataIndex: 'pleaseSendNumber'
},
{
title:'实发数',
align:"center",
dataIndex: 'actualSendNumber'
},
{
title:'供货商',
align:"center",
dataIndex: 'supplier',
},
{
title:'单价',
align:"center",
dataIndex: 'materialPrice'
},
{
title:'金额',
align:"center",
dataIndex: 'materialAmount'
},
{
title:'用途',
align:"center",
dataIndex: 'purpose',
},
{
title:'出库时间',
align:"center",
dataIndex: 'createTime',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
// {
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }
/*{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' },
}*/
],
url: {
list: "/hy/processMaterialsDelivery/stockRemovalDetails",
// list: "/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId",
delete: "/hy/processMaterialsDelivery/deleteProcessMaterialsDeliveryList",
deleteBatch: "/hy/processMaterialsDelivery/deleteBatchProcessMaterialsDeliveryList",
exportXlsUrl: "/hy/processMaterialsDelivery/exportProcessMaterialsDeliveryList",
importUrl: "/hy/processMaterialsDelivery/importProcessMaterialsDeliveryList",
},
// columns: [
// {
// title: '',
// dataIndex: '',
// key:'rowIndex',
// width:60,
// align:"center",
// customRender:function (t,r,index) {
// return parseInt(index)+1;
// }
// },
// {
// title:'',
// align:"center",
// dataIndex: 'company_dictText',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'createTime'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'sysOrgCode_dictText',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'createBy'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialType_dictText',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'deliveryTime',
// customRender:function (text) {
// return !text?"":(text.length>10?text.substr(0,10):text)
// }
// },
// // {
// // title:'id',
// // align:"center",
// // dataIndex: 'fileId',
// // scopedSlots: {customRender: 'fileSlot'}
// // },
// {
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }
// ],
// url: {
// list: "/hy/processMaterialsDelivery/listStockRemoval",
// delete: "/hy/processMaterialsDelivery/delete",
// deleteBatch: "/hy/processMaterialsDelivery/deleteBatch",
// exportXlsUrl: "/hy/processMaterialsDelivery/exportXls",
// importExcelUrl: "hy/processMaterialsDelivery/importExcel",
// },
dictOptions:{
company:[],
sysOrgCode:[],
materialType:[],
},
/* 分页参数 */
ipagination:{
current: 1,
pageSize: 5,
pageSizeOptions: ['5', '10', '50'],
showTotal: (total, range) => {
return range[0] + "-" + range[1] + " 共" + total + "条"
},
showQuickJumper: true,
showSizeChanger: true,
total: 0
},
selectedMainId:'',
superFieldList:[],
}
},
created() {
console.log("=============",this.deliveryDetailId);
this.getSuperFieldList();
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
},
methods: {
initDictConfig(){
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'company', res.result)
}
})
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'sysOrgCode', res.result)
}
})
initDictOptions('').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'materialType', res.result)
}
})
},
clickThenSelect(record) {
return {
on: {
click: () => {
this.onSelectChange(record.id.split(","), [record]);
}
}
}
},
onClearSelected() {
this.selectedRowKeys = [];
this.selectionRows = [];
this.selectedMainId=''
},
onSelectChange(selectedRowKeys, selectionRows) {
this.selectedMainId=selectedRowKeys[0]
this.selectedRowKeys = selectedRowKeys;
this.selectionRows = selectionRows;
},
loadData(arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.onClearSelected()
this.queryParam.processMaterialsDeliveryId = this.deliveryDetailId;
var params = this.getQueryParams();//
this.loading = true;
console.log("qqqqqqqqqqqqqqqqqqqqq",params)
getAction(this.url.list, params).then((res) => {
console.log(res);
if (res.success) {
this.dataSource = res.result.records;
this.ipagination.total = res.result.total;
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'})
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'})
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'})
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'})
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''})
fieldList.push({type:'date',value:'deliveryTime',text:'出库时间'})
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>

458
src/views/accessrecords/modules/LndustrialExplosiveEnterDetail.vue

@ -0,0 +1,458 @@
<template>
<a-card :bordered="false" style="height: 730px">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<!-- <a-row :gutter="24">-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="供应商">-->
<!-- <a-input placeholder="请输入供应商信息" v-model="queryParam.supplier"></a-input>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="物料组">-->
<!-- <a-input placeholder="请输入物料组" v-model="queryParam.descriptionId"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" >-->
<!-- <a-form-item label="物料号">-->
<!-- <a-input placeholder="请输入物料" v-model="queryParam.materialsNumber" disabled="disabled"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="物料名称">-->
<!-- <a-input placeholder="请输入物料名称" v-model="queryParam.merchandiseName"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="仓储地点">-->
<!-- <a-input placeholder="请选择仓储地点" v-model="queryParam.unitWasteWarehouseCodeId"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!--&lt;!&ndash; </a-row>&ndash;&gt;-->
<!--&lt;!&ndash; <a-row :gutter="24">&ndash;&gt;-->
<!--&lt;!&ndash; <a-col :xl="5" :lg="7" :md="8" :sm="16">&ndash;&gt;-->
<!--&lt;!&ndash; <a-form-item label="入库批次">&ndash;&gt;-->
<!--&lt;!&ndash; <a-input placeholder="请选择批次" v-model="queryParam.supplierBatch"/>&ndash;&gt;-->
<!--&lt;!&ndash; </a-form-item>&ndash;&gt;-->
<!--&lt;!&ndash; </a-col>&ndash;&gt;-->
<!--&lt;!&ndash; <a-col :xl="5" :lg="7" :md="8" :sm="16">&ndash;&gt;-->
<!--&lt;!&ndash; <a-form-item label="保质期">&ndash;&gt;-->
<!--&lt;!&ndash; <a-input placeholder="请选择保质期" v-model="queryParam.expirationDate"/>&ndash;&gt;-->
<!--&lt;!&ndash; </a-form-item>&ndash;&gt;-->
<!--&lt;!&ndash; </a-col>&ndash;&gt;-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="入库人">-->
<!-- <a-input placeholder="请选择入库人" v-model="queryParam.librarySign"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
<!-- <a-range-picker-->
<!-- style="width: 180px"-->
<!-- format="YYYY-MM-DD"-->
<!-- :placeholder="['开始时间', '结束时间']"-->
<!-- @change="onDateChangestorageTime"-->
<!-- />-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- </a-row>-->
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator" style="float: left">
<!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>-->
<!-- <a-button type="primary" icon="download" @click="handleExportXls('物资入库流程')">导出</a-button>-->
<!-- <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>-->
<!-- <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</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>-->
<!-- 高级查询区域 -->
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
</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"
bordered
rowKey="id"
class="j-table-force-nowrap"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:customRow="clickThenSelect"
@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>-->
<!--&lt;!&ndash; <a-divider type="vertical" />&ndash;&gt;-->
<!--&lt;!&ndash; <a-dropdown>&ndash;&gt;-->
<!--&lt;!&ndash; <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>&ndash;&gt;-->
<!--&lt;!&ndash; <a-menu slot="overlay">&ndash;&gt;-->
<!--&lt;!&ndash; <a-menu-item>&ndash;&gt;-->
<!--&lt;!&ndash; <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">&ndash;&gt;-->
<!--&lt;!&ndash; <a>删除</a>&ndash;&gt;-->
<!--&lt;!&ndash; </a-popconfirm>&ndash;&gt;-->
<!--&lt;!&ndash; </a-menu-item>&ndash;&gt;-->
<!--&lt;!&ndash; </a-menu>&ndash;&gt;-->
<!--&lt;!&ndash; </a-dropdown>&ndash;&gt;-->
<!-- </span>-->
</a-table>
</div>
<!-- <a-tabs defaultActiveKey="1">-->
<!-- <a-tab-pane tab="物资入库流程清单表" key="1" >-->
<!-- <ProcessMaterialWarehousingListList :mainId="selectedMainId" />-->
<!-- </a-tab-pane>-->
<!-- </a-tabs>-->
<!-- <processMaterialWarehousing-modal ref="modalForm" @ok="modalFormOk"></processMaterialWarehousing-modal>-->
</a-card>
</template>
<script>
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessMaterialWarehousingModal from '@/views/processmaterials/modules/ProcessMaterialWarehousingModal'
import { getAction } from '@/api/manage'
import ProcessMaterialWarehousingListList from '@/views/processmaterials/ProcessMaterialWarehousingListList'
import '@/assets/less/TableExpand.less'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { initDictOptions } from '@comp/dict/JDictSelectUtil'
export default {
name: "LndustrialExplosiveEnterDetail",
mixins:[JeecgListMixin,mixinDevice],
components: {
ProcessMaterialWarehousingListList,
ProcessMaterialWarehousingModal,
JSuperQuery
},
props:{
materWared:{
type:String,
},
},
data () {
return {
labelCol: {
xs: { span: 4 },
sm: { span: 4 },
},
wrapperCol: {
xs: { span: 20 },
sm: { span: 20 },
},
description: '物资入库流程管理页面',
processMatlWarehouId: '',
//
columns: [
{
title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'物料组',
align:"center",
dataIndex: 'materialGroup',
},
{
title:'物料号',
align:"center",
dataIndex: 'materialNumber',
},
{
title:'物料名称',
align:"center",
dataIndex: 'materialDescription'
},
{
title:'规格型号',
align:"center",
dataIndex: 'materialName',
},
{
title:'仓储地点',
align:"center",
dataIndex: 'unitWasteWarehouseCodeId',
},
// {
// title:'',
// align:"center",
// dataIndex: 'productionTime',
// customRender:function (text) {
// return !text?"":(text.length>10?text.substr(0,10):text)
// }
// },
// {
// title:'',
// align:"center",
// dataIndex: 'expirationDate',
// customRender:function (text) {
// return !text?"":(text.length>10?text.substr(0,10):text)
// }
// },
// {
// title:'',
// align:"center",
// dataIndex: 'equipment_dictText',
// },
{
title:'单位',
align:"center",
dataIndex: 'materialUnit',
},
{
title:'单价',
align:"center",
dataIndex: 'materialPrice'
},
{
title:'金额',
align:"center",
dataIndex: 'materialAmount'
},
{
title:'供应商',
align:"center",
dataIndex: 'supplierId'
},
{
title:'批次',
align:"center",
dataIndex: 'supplierBatch'
},
{
title:'入库时间',
align:"center",
dataIndex: 'storageTime',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
{
title:'入库人',
align:"center",
dataIndex: 'librarySign',
},
{
title:'核算属性',
align:"center",
dataIndex: 'accountingAttributes_dictText',
},
// {
// title:'',
// align:"center",
// dataIndex: 'warehousingTime',
// customRender:function (text) {
// return !text?"":(text.length>10?text.substr(0,10):text)
// }
// },
// {
// title:'',
// align:"center",
// dataIndex: 'purpose'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'defFlag'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'delTime',
// customRender:function (text) {
// return !text?"":(text.length>10?text.substr(0,10):text)
// }
// },
// {
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }
],
url: {
// list: "/hy/processMaterialWarehousing/listProcessMaterialWarehousingListByMainId",
list: "/hy/processMaterialWarehousing/queryByIdWarehousingList",
delete: "/hy/processMaterialWarehousing/deleteProcessMaterialWarehousingList",
deleteBatch: "/hy/processMaterialWarehousing/deleteBatchProcessMaterialWarehousingList",
exportXlsUrl: "/hy/processMaterialWarehousing/exportProcessMaterialWarehousingList",
importUrl: "/hy/processMaterialWarehousing/importProcessMaterialWarehousingList",
},
// url: {
// list: "/hy/processMaterialWarehousing/list",
// delete: "/hy/processMaterialWarehousing/delete",
// deleteBatch: "/hy/processMaterialWarehousing/deleteBatch",
// exportXlsUrl: "/hy/processMaterialWarehousing/exportXls",
// importExcelUrl: "hy/processMaterialWarehousing/importExcel",
// },
dictOptions:{
company:[],
sysOrgCode:[],
},
/* 分页参数 */
// pagination:{
// current: 1,
// pageSize: 5,
// pageSizeOptions: ['5', '10', '50'],
// showTotal: (total, range) => {
// return range[0] + "-" + range[1] + " " + total + ""
// },
// showQuickJumper: true,
// showSizeChanger: true,
// total: 0
// },
selectedMainId:'',
superFieldList:[],
}
},
created() {
// console.log("========================"+this.processMaterialWarehousingId);
this.getSuperFieldList();
this.processMatlWarehouId = this.$route.params.processMaterialWarehousingId;
this.loadData();
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
},
methods: {
onDateChange: function (value, dateString) {
this.queryParam.productDateBegin=dateString[0];
this.queryParam.productDateEnd=dateString[1];
console.log()
},
onDateChangestorageTime: function (value, dateString) {
this.queryParam.inboundDateBegin=dateString[0];
this.queryParam.inboundDateEnd=dateString[1];
},
initDictConfig(){
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'company', res.result)
}
})
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'sysOrgCode', res.result)
}
})
},
clickThenSelect(record) {
return {
on: {
click: () => {
this.onSelectChange(record.id.split(","), [record]);
}
}
}
},
onClearSelected() {
this.selectedRowKeys = [];
this.selectionRows = [];
this.selectedMainId=''
},
onSelectChange(selectedRowKeys, selectionRows) {
this.selectedMainId=selectedRowKeys[0]
this.selectedRowKeys = selectedRowKeys;
this.selectionRows = selectionRows;
},
loadData(arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.onClearSelected()
this.queryParam.processMaterialWarehousingId = this.materWared;
var params = this.getQueryParams();//
this.loading = true;
console.log("1233333333333333",params);
getAction(this.url.list, params).then((res) => {
console.log(res);
if (res.success) {
this.dataSource = res.result.records;
this.ipagination.total = res.result.total;
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'})
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'})
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'})
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'})
fieldList.push({type:'string',value:'processUdgetPlanId',text:'关联预算流程',dictCode:''})
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''})
fieldList.push({type:'int',value:'targetLibrary',text:'入库目标库',dictCode:''})
fieldList.push({type:'int',value:'warehousingBatch',text:'入库总批次',dictCode:''})
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>

473
src/views/accessrecords/modules/ProcessMaterialWarehousingDetail.vue

@ -0,0 +1,473 @@
<template>
<a-card :bordered="false" style="height: 730px">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :xl="4" :lg="7" :md="8" :sm="16">
<a-form-item label="供应商">
<a-input placeholder="请输入供应商信息" v-model="queryParam.supplierId"></a-input>
</a-form-item>
</a-col>
<a-col :xl="4" :lg="7" :md="8" :sm="16">
<a-form-item label="物料组">
<a-input placeholder="请输入物料组" v-model="queryParam.materialGroup"/>
</a-form-item>
</a-col>
<a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" >
<a-form-item label="物料号">
<a-input placeholder="请输入物料" v-model="queryParam.materialNumber" disabled="disabled"/>
</a-form-item>
</a-col>
<a-col :xl="4" :lg="7" :md="8" :sm="16">
<a-form-item label="物料名称">
<a-input placeholder="请输入物料名称" v-model="queryParam.merchandiseName"/>
</a-form-item>
</a-col>
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="仓储地点">-->
<!-- <a-input placeholder="请选择仓储地点" v-model="queryParam.unitWasteWarehouseCodeId"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- </a-row>-->
<!-- <a-row :gutter="24">-->
<!-- <a-col :xl="5" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="入库批次">-->
<!-- <a-input placeholder="请选择批次" v-model="queryParam.supplierBatch"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="5" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="保质期">-->
<!-- <a-input placeholder="请选择保质期" v-model="queryParam.expirationDate"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<a-col :xl="4" :lg="7" :md="8" :sm="16">
<a-form-item label="入库人">
<a-input placeholder="请选择入库人" v-model="queryParam.librarySign"/>
</a-form-item>
</a-col>
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
<!-- <a-range-picker-->
<!-- style="width: 180px"-->
<!-- format="YYYY-MM-DD"-->
<!-- :placeholder="['开始时间', '结束时间']"-->
<!-- @change="onDateChangestorageTime"-->
<!-- />-->
<!-- </a-form-item>-->
<!-- </a-col>-->
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator" style="width: 18%">
<!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>-->
<a-button type="primary" icon="download" @click="handleExportXls('物资入库流程')">导出</a-button>
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</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>-->
<!-- 高级查询区域 -->
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
</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"
bordered
rowKey="id"
class="j-table-force-nowrap"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:customRow="clickThenSelect"
@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>-->
<!--&lt;!&ndash; <a-divider type="vertical" />&ndash;&gt;-->
<!--&lt;!&ndash; <a-dropdown>&ndash;&gt;-->
<!--&lt;!&ndash; <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>&ndash;&gt;-->
<!--&lt;!&ndash; <a-menu slot="overlay">&ndash;&gt;-->
<!--&lt;!&ndash; <a-menu-item>&ndash;&gt;-->
<!--&lt;!&ndash; <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">&ndash;&gt;-->
<!--&lt;!&ndash; <a>删除</a>&ndash;&gt;-->
<!--&lt;!&ndash; </a-popconfirm>&ndash;&gt;-->
<!--&lt;!&ndash; </a-menu-item>&ndash;&gt;-->
<!--&lt;!&ndash; </a-menu>&ndash;&gt;-->
<!--&lt;!&ndash; </a-dropdown>&ndash;&gt;-->
<!-- </span>-->
</a-table>
</div>
<!-- <a-tabs defaultActiveKey="1">-->
<!-- <a-tab-pane tab="物资入库流程清单表" key="1" >-->
<!-- <ProcessMaterialWarehousingListList :mainId="selectedMainId" />-->
<!-- </a-tab-pane>-->
<!-- </a-tabs>-->
<!-- <processMaterialWarehousing-modal ref="modalForm" @ok="modalFormOk"></processMaterialWarehousing-modal>-->
</a-card>
</template>
<script>
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessMaterialWarehousingModal from '@/views/processmaterials/modules/ProcessMaterialWarehousingModal'
import { getAction } from '@/api/manage'
import ProcessMaterialWarehousingListList from '@/views/processmaterials/ProcessMaterialWarehousingListList'
import '@/assets/less/TableExpand.less'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { initDictOptions } from '@comp/dict/JDictSelectUtil'
export default {
name: "ProcessMaterialWarehousingList",
mixins:[JeecgListMixin,mixinDevice],
components: {
ProcessMaterialWarehousingListList,
ProcessMaterialWarehousingModal,
JSuperQuery
},
props:{
materWared:{
type:String,
},
},
data () {
return {
labelCol: {
xs: { span: 4 },
sm: { span: 4 },
},
wrapperCol: {
xs: { span: 20 },
sm: { span: 20 },
},
description: '物资入库流程管理页面',
processMatlWarehouId: '',
//
columns: [
{
title: '序号',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},
{
title:'物料组',
align:"center",
dataIndex: 'materialGroup',
},
{
title:'物料号',
align:"center",
dataIndex: 'materialNumber',
},
{
title:'物料名称',
align:"center",
dataIndex: 'materialDescription'
},
{
title:'规格',
align:"center",
dataIndex: 'materialName'
},
{
title:'型号',
align:"center",
dataIndex: 'type'
},
{
title:'仓储地点',
align:"center",
dataIndex: 'unitWasteWarehouseCodeId',
},
// {
// title:'',
// align:"center",
// dataIndex: 'productionTime',
// customRender:function (text) {
// return !text?"":(text.length>10?text.substr(0,10):text)
// }
// },
// {
// title:'',
// align:"center",
// dataIndex: 'expirationDate',
// customRender:function (text) {
// return !text?"":(text.length>10?text.substr(0,10):text)
// }
// },
// {
// title:'',
// align:"center",
// dataIndex: 'equipment_dictText',
// },
{
title:'单位',
align:"center",
dataIndex: 'materialUnit',
},
{
title:'单价',
align:"center",
dataIndex: 'materialPrice'
},
{
title:'金额',
align:"center",
dataIndex: 'materialAmount'
},
{
title:'供应商',
align:"center",
dataIndex: 'supplierId'
},
{
title:'批次',
align:"center",
dataIndex: 'supplierBatch'
},
{
title:'入库时间',
align:"center",
dataIndex: 'storageTime',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
{
title:'入库人',
align:"center",
dataIndex: 'librarySign',
},
{
title:'核算属性',
align:"center",
dataIndex: 'accountingAttributes_dictText',
},
// {
// title:'',
// align:"center",
// dataIndex: 'warehousingTime',
// customRender:function (text) {
// return !text?"":(text.length>10?text.substr(0,10):text)
// }
// },
// {
// title:'',
// align:"center",
// dataIndex: 'purpose'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'defFlag'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'delTime',
// customRender:function (text) {
// return !text?"":(text.length>10?text.substr(0,10):text)
// }
// },
// {
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }
],
url: {
// list: "/hy/processMaterialWarehousing/listProcessMaterialWarehousingListByMainId",
list: "/hy/processMaterialWarehousing/queryByIdWarehousingList",
delete: "/hy/processMaterialWarehousing/deleteProcessMaterialWarehousingList",
deleteBatch: "/hy/processMaterialWarehousing/deleteBatchProcessMaterialWarehousingList",
exportXlsUrl: "/hy/processMaterialWarehousing/exportProcessMaterialWarehousingList",
importUrl: "/hy/processMaterialWarehousing/importProcessMaterialWarehousingList",
},
// url: {
// list: "/hy/processMaterialWarehousing/list",
// delete: "/hy/processMaterialWarehousing/delete",
// deleteBatch: "/hy/processMaterialWarehousing/deleteBatch",
// exportXlsUrl: "/hy/processMaterialWarehousing/exportXls",
// importExcelUrl: "hy/processMaterialWarehousing/importExcel",
// },
dictOptions:{
company:[],
sysOrgCode:[],
},
/* 分页参数 */
// pagination:{
// current: 1,
// pageSize: 5,
// pageSizeOptions: ['5', '10', '50'],
// showTotal: (total, range) => {
// return range[0] + "-" + range[1] + " " + total + ""
// },
// showQuickJumper: true,
// showSizeChanger: true,
// total: 0
// },
selectedMainId:'',
superFieldList:[],
}
},
created() {
// console.log("========================"+this.processMaterialWarehousingId);
this.getSuperFieldList();
this.processMatlWarehouId = this.$route.params.processMaterialWarehousingId;
this.loadData();
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
},
methods: {
searchQuery() {
console.log("asdfasd")
this.loadData(1);
},
onDateChange: function (value, dateString) {
this.queryParam.productDateBegin=dateString[0];
this.queryParam.productDateEnd=dateString[1];
console.log()
},
onDateChangestorageTime: function (value, dateString) {
this.queryParam.inboundDateBegin=dateString[0];
this.queryParam.inboundDateEnd=dateString[1];
},
initDictConfig(){
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'company', res.result)
}
})
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'sysOrgCode', res.result)
}
})
},
clickThenSelect(record) {
return {
on: {
click: () => {
this.onSelectChange(record.id.split(","), [record]);
}
}
}
},
onClearSelected() {
this.selectedRowKeys = [];
this.selectionRows = [];
this.selectedMainId=''
},
onSelectChange(selectedRowKeys, selectionRows) {
this.selectedMainId=selectedRowKeys[0]
this.selectedRowKeys = selectedRowKeys;
this.selectionRows = selectionRows;
},
loadData(arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.onClearSelected()
this.queryParam.processMaterialWarehousingId = this.materWared;
var params = this.getQueryParams();//
this.loading = true;
console.log("1233333333333333",params);
getAction(this.url.list, params).then((res) => {
console.log(res);
if (res.success) {
this.dataSource = res.result.records;
this.ipagination.total = res.result.total;
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'})
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'})
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'})
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'})
fieldList.push({type:'string',value:'processUdgetPlanId',text:'关联预算流程',dictCode:''})
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''})
fieldList.push({type:'int',value:'targetLibrary',text:'入库目标库',dictCode:''})
fieldList.push({type:'int',value:'warehousingBatch',text:'入库总批次',dictCode:''})
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>

446
src/views/accessrecords/modules/ProcessMaterialsDeliveryDetail.vue

@ -0,0 +1,446 @@
<template>
<a-card :bordered="false" style="height: 830px">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
<a-form layout="inline" @keyup.enter.native="searchQuery">
<a-row :gutter="24">
<a-col :xl="4" :lg="7" :md="8" :sm="16">
<a-form-item label="供应商">
<a-input placeholder="请输入供应商信息" v-model="queryParam.supplierId"></a-input>
</a-form-item>
</a-col>
<a-col :xl="4" :lg="7" :md="8" :sm="16">
<a-form-item label="物料组">
<a-input placeholder="请输入物料组" v-model="queryParam.materialGroup"/>
</a-form-item>
</a-col>
<a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" >
<a-form-item label="物料号">
<a-input placeholder="请输入物料" v-model="queryParam.materialNumber" disabled="disabled"/>
</a-form-item>
</a-col>
<a-col :xl="4" :lg="7" :md="8" :sm="16">
<a-form-item label="物料名称">
<a-input placeholder="请输入物料名称" v-model="queryParam.materialName"/>
</a-form-item>
</a-col>
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="出库人">-->
<!-- <a-input placeholder="请选择出库人" v-model="queryParam.librarySign"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="入库时间" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
<!-- <a-range-picker-->
<!-- style="width: 180px"-->
<!-- format="YYYY-MM-DD"-->
<!-- :placeholder="['开始时间', '结束时间']"-->
<!-- @change="onDateChangestorageTime"-->
<!-- />-->
<!-- </a-form-item>-->
<!-- </a-col>-->
</a-row>
</a-form>
</div>
<!-- 查询区域-END -->
<!-- 操作按钮区域 -->
<div class="table-operator" style="width: 18%">
<!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>-->
<a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</a-button>
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</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>-->
<!-- &lt;!&ndash; 高级查询区域 &ndash;&gt;-->
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
</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"
bordered
rowKey="id"
class="j-table-force-nowrap"
:scroll="{x:true}"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:customRow="clickThenSelect"
@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="handleEnterDetail(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-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">-->
<!-- <a>删除</a>-->
<!-- </a-popconfirm>-->
<!-- </a-menu-item>-->
<!-- </a-menu>-->
<!-- </a-dropdown>-->
</span>
</a-table>
</div>
<!-- <a-tabs defaultActiveKey="1">-->
<!-- <a-tab-pane tab="物资出库流程出库清单" key="1" >-->
<!-- <ProcessMaterialsDeliveryListList :mainId="selectedMainId" />-->
<!-- </a-tab-pane>-->
<!-- </a-tabs>-->
<!-- <processMaterialsDelivery-modal ref="modalForm" @ok="modalFormOk"></processMaterialsDelivery-modal>-->
</a-card>
</template>
<script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import ProcessMaterialsDeliveryModal from '@/views/processmaterials/modules/ProcessMaterialsDeliveryModal'
import { getAction } from '@/api/manage'
import ProcessMaterialsDeliveryListList from '@/views/processmaterials/ProcessMaterialsDeliveryListList'
import '@/assets/less/TableExpand.less'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import { initDictOptions } from '@comp/dict/JDictSelectUtil'
export default {
name: "ProcessMaterialsDeliveryDetail",
mixins:[JeecgListMixin],
components: {
ProcessMaterialsDeliveryListList,
ProcessMaterialsDeliveryModal,
JSuperQuery
},
props:{
deliveryDetailId:{
type:String,
},
},
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: 'materialGroup',
},
{
title:'物料号',
align:"center",
dataIndex: 'materialsNumber',
},
{
title:'物料名称',
align:"center",
dataIndex: 'materialName',
},
{
title:'规格',
align:"center",
dataIndex: 'materialName1',
},
{
title:'型号',
align:"center",
dataIndex: 'materialName2',
},
{
title:'单位',
align:"center",
dataIndex: 'materialUnit',
},
{
title:'请发数',
align:"center",
dataIndex: 'pleaseSendNumber'
},
{
title:'实发数',
align:"center",
dataIndex: 'actualSendNumber'
},
{
title:'供货商',
align:"center",
dataIndex: 'supplier',
},
{
title:'单价',
align:"center",
dataIndex: 'materialPrice'
},
{
title:'金额',
align:"center",
dataIndex: 'materialAmount'
},
{
title:'用途',
align:"center",
dataIndex: 'purpose',
},
{
title:'出库时间',
align:"center",
dataIndex: 'createTime',
customRender:function (text) {
return !text?"":(text.length>10?text.substr(0,10):text)
}
},
// {
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }
/*{
title: '操作',
dataIndex: 'action',
align:"center",
fixed:"right",
width:147,
scopedSlots: { customRender: 'action' },
}*/
],
url: {
list: "/hy/processMaterialsDelivery/stockRemovalDetails",
// list: "/hy/processMaterialsDelivery/queryProcessMaterialsDeliveryListByMainId",
delete: "/hy/processMaterialsDelivery/deleteProcessMaterialsDeliveryList",
deleteBatch: "/hy/processMaterialsDelivery/deleteBatchProcessMaterialsDeliveryList",
exportXlsUrl: "/hy/processMaterialsDelivery/exportProcessMaterialsDeliveryList",
importUrl: "/hy/processMaterialsDelivery/importProcessMaterialsDeliveryList",
},
// columns: [
// {
// title: '',
// dataIndex: '',
// key:'rowIndex',
// width:60,
// align:"center",
// customRender:function (t,r,index) {
// return parseInt(index)+1;
// }
// },
// {
// title:'',
// align:"center",
// dataIndex: 'company_dictText',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'createTime'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'sysOrgCode_dictText',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'createBy'
// },
// {
// title:'',
// align:"center",
// dataIndex: 'materialType_dictText',
// },
// {
// title:'',
// align:"center",
// dataIndex: 'deliveryTime',
// customRender:function (text) {
// return !text?"":(text.length>10?text.substr(0,10):text)
// }
// },
// // {
// // title:'id',
// // align:"center",
// // dataIndex: 'fileId',
// // scopedSlots: {customRender: 'fileSlot'}
// // },
// {
// title: '',
// dataIndex: 'action',
// align:"center",
// fixed:"right",
// width:147,
// scopedSlots: { customRender: 'action' },
// }
// ],
// url: {
// list: "/hy/processMaterialsDelivery/listStockRemoval",
// delete: "/hy/processMaterialsDelivery/delete",
// deleteBatch: "/hy/processMaterialsDelivery/deleteBatch",
// exportXlsUrl: "/hy/processMaterialsDelivery/exportXls",
// importExcelUrl: "hy/processMaterialsDelivery/importExcel",
// },
dictOptions:{
company:[],
sysOrgCode:[],
materialType:[],
},
/* 分页参数 */
ipagination:{
current: 1,
pageSize: 5,
pageSizeOptions: ['5', '10', '50'],
showTotal: (total, range) => {
return range[0] + "-" + range[1] + " 共" + total + "条"
},
showQuickJumper: true,
showSizeChanger: true,
total: 0
},
selectedMainId:'',
superFieldList:[],
}
},
created() {
console.log("=============",this.deliveryDetailId);
this.getSuperFieldList();
},
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
},
methods: {
searchQuery() {
this.loadData(1);
},
initDictConfig(){
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'company', res.result)
}
})
initDictOptions('sys_depart,depart_name,id').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'sysOrgCode', res.result)
}
})
initDictOptions('').then((res) => {
if (res.success) {
this.$set(this.dictOptions, 'materialType', res.result)
}
})
},
clickThenSelect(record) {
return {
on: {
click: () => {
this.onSelectChange(record.id.split(","), [record]);
}
}
}
},
onClearSelected() {
this.selectedRowKeys = [];
this.selectionRows = [];
this.selectedMainId=''
},
onSelectChange(selectedRowKeys, selectionRows) {
this.selectedMainId=selectedRowKeys[0]
this.selectedRowKeys = selectedRowKeys;
this.selectionRows = selectionRows;
},
loadData(arg) {
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.onClearSelected()
this.queryParam.processMaterialsDeliveryId = this.deliveryDetailId;
var params = this.getQueryParams();//
this.loading = true;
console.log("=====>",params)
getAction(this.url.list, params).then((res) => {
console.log(res);
if (res.success) {
this.dataSource = res.result.records;
this.ipagination.total = res.result.total;
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
})
},
getSuperFieldList(){
let fieldList=[];
fieldList.push({type:'sel_depart',value:'company',text:'流程发起公司'})
fieldList.push({type:'datetime',value:'createTime',text:'流程发起时间'})
fieldList.push({type:'sel_depart',value:'sysOrgCode',text:'流程发起部门'})
fieldList.push({type:'sel_user',value:'createBy',text:'流程发起人'})
fieldList.push({type:'int',value:'materialType',text:'物资类型',dictCode:''})
fieldList.push({type:'date',value:'deliveryTime',text:'出库时间'})
fieldList.push({type:'string',value:'fileId',text:'文件id',dictCode:''})
this.superFieldList = fieldList
}
}
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>

97
src/views/accessrecords/plan/LndustrialExplosiveComePlan.vue

@ -0,0 +1,97 @@
<template>
<a-card :bordered="false" >
<a-tabs style="text-align: center">
<a-tab-pane tab="物资明细" key="1" forceRender>
<LndustrialExplosiveComeDetail :delivery-detail-id="this.$route.query.item" />
</a-tab-pane>
<a-tab-pane tab="流程节点图" key="2" forceRender>
<!-- <process-material-warehousing-flow-chart />-->
</a-tab-pane>
<a-tab-pane tab="数据报表" key="3" forceRender>
<LndustrialExplosiveComeStatement />
</a-tab-pane>
</a-tabs>
</a-card>
</template>
<script>
import LndustrialExplosiveComeDetail from '@views/accessrecords/modules/LndustrialExplosiveComeDetail'
import LndustrialExplosiveComeFlowChart from '@views/accessrecords/flowchart/LndustrialExplosiveComeFlowChart'
import LndustrialExplosiveComeStatement from '@views/accessrecords/statement/LndustrialExplosiveComeStatement'
export default {
name: 'LndustrialExplosiveComePlan',
components: {
LndustrialExplosiveComeDetail,
LndustrialExplosiveComeFlowChart,
LndustrialExplosiveComeStatement
},
data() {
return {
isNew:'',
pictrueId:'',
procInstId:'',
proMaterListId: this.$route.query.item,
url:{
list:"",
},
}
},
props: {
/*流程数据*/
processData:{
type:Object,
default:()=>{return {}},
required:false
},
item: {
type:String,
},
},
// props: {
// /**/
// processData:{
// type:Object,
// default:()=>{return {}},
// required:false
// },
// /**/
// isNew: {type: Boolean, default: false, required: false},
// /**/
// task: {type: Boolean, default: false, required: false},
// //data
// formData: {
// type: Object,
// default: () => {
// },
// required: false
// },
// //false true
// formBpm: {
// type: Boolean,
// default: false,
// required: false
// },
// //
// disabled: {
// type: Boolean,
// default: false,
// required: false
// }
// },
created(){
console.log(this.proMaterListId);
},
methods: {
},
}
</script>
<style scoped>
</style>

97
src/views/accessrecords/plan/LndustrialExplosiveEnterPlan.vue

@ -0,0 +1,97 @@
<template>
<a-card :bordered="false" >
<a-tabs style="text-align: center">
<a-tab-pane tab="物资明细" key="1" forceRender>
<LndustrialExplosiveEnterDetail :materWared="this.$route.query.item" />
</a-tab-pane>
<a-tab-pane tab="流程节点图" key="2" forceRender>
<!-- <process-material-warehousing-flow-chart />-->
</a-tab-pane>
<a-tab-pane tab="数据报表" key="3" forceRender>
<LndustrialExplosiveEnterStatement />
</a-tab-pane>
</a-tabs>
</a-card>
</template>
<script>
import LndustrialExplosiveEnterDetail from '@views/accessrecords/modules/LndustrialExplosiveEnterDetail'
import LndustrialExplosiveEnterFlowChart from '@views/accessrecords/flowchart/LndustrialExplosiveEnterFlowChart'
import LndustrialExplosiveEnterStatement from '@views/accessrecords/statement/LndustrialExplosiveEnterStatement'
export default {
name: 'LndustrialExplosiveEnterPlan',
components: {
LndustrialExplosiveEnterDetail,
LndustrialExplosiveEnterFlowChart,
LndustrialExplosiveEnterStatement
},
data() {
return {
isNew:'',
pictrueId:'',
procInstId:'',
proMaterListId: this.$route.query.item,
url:{
list:"",
},
}
},
props: {
/*流程数据*/
processData:{
type:Object,
default:()=>{return {}},
required:false
},
item: {
type:String,
},
},
// props: {
// /**/
// processData:{
// type:Object,
// default:()=>{return {}},
// required:false
// },
// /**/
// isNew: {type: Boolean, default: false, required: false},
// /**/
// task: {type: Boolean, default: false, required: false},
// //data
// formData: {
// type: Object,
// default: () => {
// },
// required: false
// },
// //false true
// formBpm: {
// type: Boolean,
// default: false,
// required: false
// },
// //
// disabled: {
// type: Boolean,
// default: false,
// required: false
// }
// },
created(){
console.log(this.proMaterListId);
},
methods: {
},
}
</script>
<style scoped>
</style>

97
src/views/accessrecords/plan/ProcessMaterialWarehousingPlan.vue

@ -0,0 +1,97 @@
<template>
<a-card :bordered="false" >
<a-tabs style="text-align: center">
<a-tab-pane tab="物资明细" key="1" forceRender>
<process-material-warehousing-detail :materWared="this.$route.query.item" />
</a-tab-pane>
<a-tab-pane tab="流程节点图" key="2" forceRender>
<!-- <process-material-warehousing-flow-chart />-->
</a-tab-pane>
<a-tab-pane tab="数据报表" key="3" forceRender>
<process-material-warehousing-statement />
</a-tab-pane>
</a-tabs>
</a-card>
</template>
<script>
import ProcessMaterialWarehousingDetail from '../modules/ProcessMaterialWarehousingDetail'
import ProcessMaterialWarehousingFlowChart from '@views/accessrecords/flowchart/ProcessMaterialWarehousingFlowChart'
import ProcessMaterialWarehousingStatement from '@views/accessrecords/statement/ProcessMaterialWarehousingStatement'
export default {
name: 'ProcessMaterialWarehousingPlan',
components: {
ProcessMaterialWarehousingDetail,
ProcessMaterialWarehousingFlowChart,
ProcessMaterialWarehousingStatement
},
data() {
return {
isNew:'',
pictrueId:'',
procInstId:'',
proMaterListId: this.$route.query.item,
url:{
list:"",
},
}
},
props: {
/*流程数据*/
processData:{
type:Object,
default:()=>{return {}},
required:false
},
item: {
type:String,
},
},
// props: {
// /**/
// processData:{
// type:Object,
// default:()=>{return {}},
// required:false
// },
// /**/
// isNew: {type: Boolean, default: false, required: false},
// /**/
// task: {type: Boolean, default: false, required: false},
// //data
// formData: {
// type: Object,
// default: () => {
// },
// required: false
// },
// //false true
// formBpm: {
// type: Boolean,
// default: false,
// required: false
// },
// //
// disabled: {
// type: Boolean,
// default: false,
// required: false
// }
// },
created(){
console.log(this.proMaterListId);
},
methods: {
},
}
</script>
<style scoped>
</style>

97
src/views/accessrecords/plan/ProcessMaterialsDeliveryPlan.vue

@ -0,0 +1,97 @@
<template>
<a-card :bordered="false" >
<a-tabs style="text-align: center">
<a-tab-pane tab="物资明细" key="1" forceRender>
<ProcessMaterialsDeliveryDetail :delivery-detail-id="this.$route.query.item" />
</a-tab-pane>
<a-tab-pane tab="流程节点图" key="2" forceRender>
<!-- <process-material-warehousing-flow-chart />-->
</a-tab-pane>
<a-tab-pane tab="数据报表" key="3" forceRender>
<ProcessMaterialsDeliveryStatement />
</a-tab-pane>
</a-tabs>
</a-card>
</template>
<script>
import ProcessMaterialsDeliveryDetail from '@views/accessrecords/modules/ProcessMaterialsDeliveryDetail'
import ProcessMaterialsDeliveryFlowChart from '@views/accessrecords/flowchart/ProcessMaterialsDeliveryFlowChart'
import ProcessMaterialsDeliveryStatement from '@views/accessrecords/statement/ProcessMaterialsDeliveryStatement'
export default {
name: 'ProcessMaterialsDeliveryPlan',
components: {
ProcessMaterialsDeliveryDetail,
ProcessMaterialsDeliveryFlowChart,
ProcessMaterialsDeliveryStatement
},
data() {
return {
isNew:'',
pictrueId:'',
procInstId:'',
proMaterListId: this.$route.query.item,
url:{
list:"",
},
}
},
props: {
/*流程数据*/
processData:{
type:Object,
default:()=>{return {}},
required:false
},
item: {
type:String,
},
},
// props: {
// /**/
// processData:{
// type:Object,
// default:()=>{return {}},
// required:false
// },
// /**/
// isNew: {type: Boolean, default: false, required: false},
// /**/
// task: {type: Boolean, default: false, required: false},
// //data
// formData: {
// type: Object,
// default: () => {
// },
// required: false
// },
// //false true
// formBpm: {
// type: Boolean,
// default: false,
// required: false
// },
// //
// disabled: {
// type: Boolean,
// default: false,
// required: false
// }
// },
created(){
console.log(this.proMaterListId);
},
methods: {
},
}
</script>
<style scoped>
</style>

15
src/views/accessrecords/statement/LndustrialExplosiveComeStatement.vue

@ -0,0 +1,15 @@
<template>
<div>
出爆报表
</div>
</template>
<script>
export default {
name: "LndustrialExplosiveComeStatement"
}
</script>
<style scoped>
</style>

15
src/views/accessrecords/statement/LndustrialExplosiveEnterStatement.vue

@ -0,0 +1,15 @@
<template>
<div>
入爆报表
</div>
</template>
<script>
export default {
name: 'LndustrialExplosiveEnterStatement'
}
</script>
<style scoped>
</style>

15
src/views/accessrecords/statement/ProcessMaterialWarehousingStatement.vue

@ -0,0 +1,15 @@
<template>
<div>
入报表
</div>
</template>
<script>
export default {
name: "ProcessMaterialWarehousingStatement"
}
</script>
<style scoped>
</style>

15
src/views/accessrecords/statement/ProcessMaterialsDeliveryStatement.vue

@ -0,0 +1,15 @@
<template>
<div>
出报表
</div>
</template>
<script>
export default {
name: "ProcessMaterialsDeliveryStatement"
}
</script>
<style scoped>
</style>

37
src/views/suppliesstronger/ProcessSuppliesStrongerList.vue

@ -156,12 +156,12 @@
{
title:'规格',
align:"center",
dataIndex: 'merchandiseName1'
dataIndex: 'specification'
},
{
title:'型号',
align:"center",
dataIndex: 'merchandiseName2'
dataIndex: 'type'
},
{
@ -172,12 +172,15 @@
{
title:'总库数量',
align:"center",
dataIndex: 'materialQuantity'
dataIndex: 'materialQuantity1',
customRender:function (t,r,index) {
return 0;
}
},
{
title:'项目部数量',
align:"center",
dataIndex: 'materialQuantity1'
dataIndex: 'materialQuantity'
},
{
title:'核算属性',
@ -215,24 +218,16 @@
methods: {
handleDetaills(record){
console.log(record);
// var temomen = {
// name: 'src-views-suppliesstronger-ProcessSuppliesStrongerLists',
// hidden: true,
// meta: {
// title: 'title',
// keepAlive: true,
// hiddenHeaderContent: true,
// }
// }
// this.$router.push(temomen);
// console.log(record)
// console.log("",record.merchandiseName.substring(record.merchandiseName.lastIndexOf(" ")))
this.$router.push({
name:'src-views-suppliesstronger-ProcessSuppliesStrongerLists',
params:{
item: record.merchandiseNewsId,
merchandiseName : ' - '+record.merchandiseName.substring(0,record.merchandiseName.lastIndexOf(" "))
// name:'src-views-suppliesstronger-ProcessSuppliesStrongerLists',
// params:{
// item: record.merchandiseNewsId,
// merchandiseName : ' - '+record.merchandiseName.substring(0,record.merchandiseName.lastIndexOf(" "))
// }
path:'/materials/suppliesstronger_detail',
query:{
item: record.merchandiseNewsId,
merchandiseName : ' - '+record.merchandiseName.substring(0,record.merchandiseName.lastIndexOf(" "))
}
})
},

84
src/views/suppliesstronger/ProcessSuppliesStrongerLists.vue

@ -36,6 +36,7 @@
format="YYYY-MM-DD"
:placeholder="['开始时间', '结束时间']"
@change="onDateChange"
v-model="productLicenseDate"
/>
</a-form-item>
</a-col>
@ -70,41 +71,6 @@
</a-row>
<a-row :gutter="24">
<!-- <a-col :xl="5" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="供应商">-->
<!-- <a-input placeholder="请输入供应商信息" v-model="queryParam.supplier"></a-input>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="5" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="物料组">-->
<!-- <a-input placeholder="请输入物料组" v-model="queryParam.descriptionId"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="5" :lg="7" :md="8" :sm="16" hidden="hidden" >-->
<!-- <a-form-item label="物料号">-->
<!-- <a-input placeholder="请输入物料" v-model="queryParam.materialsNumber" disabled="disabled"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="5" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="物料描述">-->
<!-- <a-input placeholder="请输入物料描述" v-model="queryParam.merchandiseName"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="仓储地点">-->
<!-- <a-input placeholder="请选择仓储地点" v-model="queryParam.unitWasteWarehouseCodeId"/>-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<!-- <a-col :xl="5" :lg="7" :md="8" :sm="16">-->
<!-- <a-form-item label="生产日期" :labelCol="labelCol" :wrapperCol="wrapperCol">-->
<!-- <a-range-picker-->
<!-- style="width: 240px"-->
<!-- format="YYYY-MM-DD"-->
<!-- :placeholder="['开始时间', '结束时间']"-->
<!-- @change="onDateChange"-->
<!-- />-->
<!-- </a-form-item>-->
<!-- </a-col>-->
<a-col :xl="5" :lg="7" :md="8" :sm="16">
<a-form-item label="入库批次">
<a-input placeholder="请选择批次" v-model="queryParam.supplierBatch"/>
@ -112,7 +78,13 @@
</a-col>
<a-col :xl="5" :lg="7" :md="8" :sm="16">
<a-form-item label="保质期">
<a-input placeholder="请选择保质期" v-model="queryParam.expirationDate"/>
<a-date-picker
style="width: 240px"
format="YYYY-MM-DD"
placeholder="请输入创建开始时间"
v-model="queryParam.expirationDate"
/>
<!-- <a-input placeholder="请选择保质期" v-model="queryParam.expirationDate"/>-->
</a-form-item>
</a-col>
<a-col :xl="5" :lg="7" :md="8" :sm="16">
@ -122,6 +94,7 @@
format="YYYY-MM-DD"
:placeholder="['开始时间', '结束时间']"
@change="onDateChangestorageTime"
v-model="inboundLicenseDate"
/>
</a-form-item>
</a-col>
@ -224,10 +197,12 @@
},
data () {
return {
productLicenseDate:[],
inboundLicenseDate:[],
queryParam: {
supplier: null,
itemGroup: null,
merchandiseNewsId: this.$route.params.item,
merchandiseNewsId: this.$route.query.item,
itemDescription: null,
unitWasteWarehouseCodeId: null,
freightSpace: null,
@ -237,7 +212,7 @@
storageTime: null,
librarySign: null,
},
merchandiseNewsId: this.$route.params.item,
merchandiseNewsId: this.$route.query.item,
description: '物资总库管理详情页面',
columns: [
{
@ -276,10 +251,20 @@
dataIndex: 'materialsNumber'
},
{
title:'物料描述',
title:'物料名称',
align:"center",
dataIndex: 'merchandiseName'
},
{
title:'规格',
align:"center",
dataIndex: 'specification'
},
{
title:'型号',
align:"center",
dataIndex: 'type'
},
{
title:'计量单位',
align:"center",
@ -305,11 +290,11 @@
align:"center",
dataIndex: 'unitWasteWarehouseCodeId'
},
{
title:'存储仓位',
align:"center",
dataIndex: 'freightSpace'
},
// {
// title:'',
// align:"center",
// dataIndex: 'freightSpace'
// },
{
title:'生产时间',
align:"center",
@ -381,7 +366,7 @@
},
watch: {
$route() {
this.queryParam.merchandiseNewsId = this.$route.params.item
this.queryParam.merchandiseNewsId = this.$route.query.item
this.loadData()
}
},
@ -392,19 +377,22 @@
},
methods: {
onDateChange: function (value, dateString) {
this.productLicenseDate = value;
this.queryParam.productDateBegin=dateString[0];
this.queryParam.productDateEnd=dateString[1];
console.log()
},
onDateChangestorageTime: function (value, dateString) {
this.inboundLicenseDate = value;
this.queryParam.inboundDateBegin=dateString[0];
this.queryParam.inboundDateEnd=dateString[1];
},
searchReset(){
this.productLicenseDate=[];
this.inboundLicenseDate=[];
this.queryParam = {
supplier: null,
itemGroup: null,
item: this.$route.params.item,
merchandiseNewsId: this.$route.query.item,
itemDescription: null,
unitWasteWarehouseCodeId: null,
freightSpace: null,
@ -423,7 +411,7 @@
});
},
judgeRouterParam(){
if (this.$route.params.item == null){
if (this.$route.query.item == null){
this.$router.go(-1);
}
},

13
src/views/wastematerials/ProcessWasteMaterialsList.vue

@ -199,10 +199,17 @@
methods: {
handleDetail(record){
console.log(record);
this.$router.push({name:'src-views-wastematerials-ProcessWasteMaterialsLists',
params:{
this.$router.push({
// name:'src-views-wastematerials-ProcessWasteMaterialsLists',
// params:{
// merchandiseNewsId: record.merchandiseNewsId,
// materialStorageId : record.materialStorageId
// }
path:'/materials/wastematerials_detail',
query:{
merchandiseNewsId: record.merchandiseNewsId,
materialStorageId : record.materialStorageId
materialStorageId : record.materialStorageId,
merchandiseName : ' - '+record.materialDescription.substring(0,record.materialDescription.lastIndexOf(" "))
}
})
},

14
src/views/wastematerials/ProcessWasteMaterialsLists.vue

@ -148,7 +148,7 @@
},
data () {
return {
descriptionId: this.$route.params.materialStorageId,
descriptionId: this.$route.query.materialStorageId,
queryParam:{
supplier: null,
supplierDescription: null,
@ -160,8 +160,8 @@
expirationDate: null,
storageTime: null,
materialsState: null,
merchandiseNewsId: this.$route.params.merchandiseNewsId,
materialStorageId: this.$route.params.materialStorageId,
merchandiseNewsId: this.$route.query.merchandiseNewsId,
materialStorageId: this.$route.query.materialStorageId,
descriptionId: null,
del_flag: 0
},
@ -294,8 +294,8 @@
},
watch: {
$route() {
this.queryParam.merchandiseNewsId = this.$route.params.merchandiseNewsId;
this.queryParam.materialStorageId = this.$route.params.materialStorageId;
this.queryParam.merchandiseNewsId = this.$route.query.merchandiseNewsId;
this.queryParam.materialStorageId = this.$route.query.materialStorageId;
this.loadData()
}
},
@ -316,7 +316,7 @@
this.queryParam.inboundDateEnd=dateString[1];
},
judgeRouterParam(){
if (this.$route.params.merchandiseNewsId == null){
if (this.$route.query.merchandiseNewsId == null){
this.$router.go(-1);
}
},
@ -336,7 +336,7 @@
this.createProductTime = [],
this.createInnerTime = [],
this.queryParam = {
descriptionId: this.$route.params.descriptionId,
descriptionId: this.$route.query.descriptionId,
del_flag: 0
},
getAction(this.url.list,this.queryParam).then((res)=>{

Loading…
Cancel
Save