|
|
|
import createRoute, { createPage, createButton } from "./utils.js";
|
|
|
|
|
|
|
|
function createJieSuanShuJu(path, business, client, title = "结算数据") {
|
|
|
|
return {
|
|
|
|
...createPage(path, `title=${title}&businessType=${business}&client=${client}`),
|
|
|
|
component: "/input/jie-suan",
|
|
|
|
children: [
|
|
|
|
createButton("query", "title=查询&isTop=true"),
|
|
|
|
createButton("import", "title=导入&isTop=true"),
|
|
|
|
createButton("export", "title=导出&pattern=row&key=billNum"),
|
|
|
|
createButton("delete", "title=删除&isTop=true"),
|
|
|
|
],
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default [
|
|
|
|
{
|
|
|
|
...createPage("input/jie-suan/detail", "title=结算数据明细&isHidden=true"),
|
|
|
|
children: [createButton("query", "title=查询&isTop=true")],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
...createRoute("jis-bbac", "title=JIS-BBAC"),
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
...createRoute("input", "title=数据输入"),
|
|
|
|
children: [
|
|
|
|
createJieSuanShuJu("bbac_sa_service", "JisBBAC", "bbac"),
|
|
|
|
{
|
|
|
|
path: "bbac_se_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "JIS发运数据",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动同步",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_se_edi_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "EDI数据",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动同步",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "contrast",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据对比",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "bbac_sa_detail_jobservice",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "EDI与发运数据对比",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "compare",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成对比",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "delete",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "删除",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "下载",
|
|
|
|
icon: "file",
|
|
|
|
pattern: "file",
|
|
|
|
disabled: "o=>o.stateName!='Succeeded'",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "first_bbac_sa_detail_jobservice",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "EDI、发运与结算比对",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "compare",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成对比",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "delete",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "删除",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "update-data",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "更新结算数据状态",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "下载",
|
|
|
|
icon: "file",
|
|
|
|
pattern: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "settlement",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "结算开票",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "bbac_can_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "invoice",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成发票数据",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_can_sa_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "BBAC发票分组号明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_not_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "不可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "settlement",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成可结算单",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_ba_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
disabled: "(rows,query)=>true",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "received ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "客户已收票",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reopen",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "重开",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_ba_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审核明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_pd_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_pd_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "jis-hbpo",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "JIS-HBPO",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "input",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据输入",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
createJieSuanShuJu("hbpo_sa_service", "JisHBPO", "hbpo"),
|
|
|
|
{
|
|
|
|
path: "hbpo_se_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "JIS发运数据",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动同步",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_se_edi_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "EDI数据",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动同步",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "contrast",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据对比",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "hbpo_sa_detail_jobservice",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "EDI与发运数据对比",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "compare",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成对比",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "delete",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "删除",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "下载",
|
|
|
|
icon: "file",
|
|
|
|
pattern: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "first_hbpo_sa_detail_jobservice",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "EDI、发运与结算比对",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "compare",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成对比",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "delete",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "删除",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "update-data",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "更新结算数据状态",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "下载",
|
|
|
|
icon: "file",
|
|
|
|
pattern: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "settlement",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "结算开票",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "hbpo_can_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generateInvoice",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成发票数据",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_can_sa_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "HBPO可结算单明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_not_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "不可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "settlement",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成可结算单",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_ba_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "received ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "客户已收票",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reopen",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "重开",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_ba_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_pd_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_pd_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "jit",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "直供件",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "jit-bbac",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "BBAC",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "input",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据输入",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
createJieSuanShuJu("bbac_jit_pub_sa_service", "ZhiGongJianBBAC", "bbac"),
|
|
|
|
{
|
|
|
|
path: "bbac_jit_pub_se_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "BBAC发运数据",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动同步",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "contrast",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据对比",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "bbac_jit_pub_sa_detail_jobservice",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "BBAC发运与结算比对",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "compare",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成对比",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "delete",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "删除",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "update-data",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "更新结算数据状态",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "下载",
|
|
|
|
icon: "file",
|
|
|
|
pattern: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "settlement",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "结算开票",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "bbac_jit_pub_can_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generateInvoice",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成发票数据",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_jit_pub_can_sa_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "可结算单明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_jit_pub_not_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "不可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generateSettlementOrder",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成可结算单",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_jit_pub_ba_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "received ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "客户已收票",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reopen",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "重开",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_jit_pub_ba_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_jit_pub_pd_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bbac_jit_pub_pd_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "jit-hbpo",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "HBPO",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "input",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据输入",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
createJieSuanShuJu("hbpo_jit_pub_sa_service", "ZhiGongJianHBPO", "hbpo"),
|
|
|
|
{
|
|
|
|
path: "hbpo_jit_pub_se_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "HBPO发运数据",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动同步",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "contrast",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据对比",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "hbpo_jit_pub_sa_detail_jobservice",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "HBPO发运与结算比对",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "compare",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成对比",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "delete",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "删除",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "update-data",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "更新结算数据状态",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "下载",
|
|
|
|
icon: "file",
|
|
|
|
pattern: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "settlement",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "结算开票",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "hbpo_jit_pub_can_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generateInvoice",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成发票数据",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_jit_pub_can_sa_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "可结算单明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_jit_pub_not_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "不可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generateSettlementOrder",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成可结算单",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_jit_pub_ba_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "received ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "客户已收票",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reopen",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "重开",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_jit_pub_ba_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_jit_pub_pd_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_jit_pub_pd_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "md",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "买单件",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "md-bbac",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "BBAC",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "input",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据输入",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
createJieSuanShuJu("bbac_md_pub_sa_service", "MaiDanJianBBAC", "bbac"),
|
|
|
|
{
|
|
|
|
path: "bbac_md_pub_se_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "发运数据",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动同步",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "contrast",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据对比",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "bbac_md_pub_sa_detail_jobservice",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "发运与结算比对",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "compare",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成对比",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "delete",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "删除",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "update-data",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "更新结算数据状态",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "下载",
|
|
|
|
icon: "file",
|
|
|
|
pattern: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "md-hbpo",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "HBPO",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "input",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据输入",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
createJieSuanShuJu("hbpo_md_pub_sa_service", "MaiDanJianHBPO", "hbpo"),
|
|
|
|
{
|
|
|
|
path: "hbpo_md_pub_se_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "发运数据",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动同步",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "contrast",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据对比",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "hbpo_md_pub_sa_detail_jobservice",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "发运与结算比对",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "compare",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成对比",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "delete",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "删除",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "update-data",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "更新结算数据状态",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "下载",
|
|
|
|
icon: "file",
|
|
|
|
pattern: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "settlement",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "结算开票",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "hbpo_md_pub_can_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generateInvoice",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成发票数据",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_md_pub_can_sa_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "可结算单明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_md_pub_not_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "不可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generateSettlementOrder",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成可结算单",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_md_pub_ba_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "received ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "客户已收票",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reopen",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "重开",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_md_pub_ba_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_md_pub_pd_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "hbpo_md_pub_pd_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bj",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "备件",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "input",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据输入",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
createJieSuanShuJu("bj_pub_sa_service", "BeiJian", "bbac"),
|
|
|
|
{
|
|
|
|
path: "bj_pub_se_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "发运数据",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动同步",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "contrast",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据对比",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "bj_pub_sa_detail_jobservice",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "发运与结算比对",
|
|
|
|
icon: "file",
|
|
|
|
// businessType: "BeiJian",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "compare",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成对比",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "delete",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "删除",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "update-data",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "更新结算数据状态",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "下载",
|
|
|
|
icon: "file",
|
|
|
|
pattern: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "settlement",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "结算开票",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "bj_pub_can_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generateInvoice",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成发票数据",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bj_pub_not_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "不可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bj_generateSettlementOrder",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成可结算单",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bj_pub_ba_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "received ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "客户已收票",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reopen",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "重开",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bj_pub_ba_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bj_pub_pd_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "bj_pub_pd_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "in",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "印度件",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "input",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据输入",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
createJieSuanShuJu("in_pub_sa_service", "YinDuJian", "bbac"),
|
|
|
|
{
|
|
|
|
path: "in_pub_se_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "发运数据",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动同步",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "contrast",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "数据对比",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "in_pub_sa_detail_jobservice",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "发运与结算比对",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "compare",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成对比",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "delete",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "删除",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "update-data",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "更新结算数据状态",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "下载",
|
|
|
|
icon: "file",
|
|
|
|
pattern: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "settlement",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "结算开票",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "in_pub_can_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generateInvoice",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成发票数据",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "in_pub_not_sa_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "不可结算单",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generateSettlementOrder",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成可结算单",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "in_pub_ba_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "received ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "客户已收票",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reopen",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "重开",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "in_pub_ba_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "商务审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "in_pub_pd_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "in_pub_pd_detail_service",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库库存扣减审批明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "invoice",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "财务审核",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "invoice_map_group",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "财务审核",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "reject",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "退回",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "importInvocie",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导入发票号",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "check ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "审核通过",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "sync_qad ",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "同步寄售库至QAD",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "invoice_wait_detail",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "待开票明细",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "invoice_grp",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "发票分组",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "invoice_not_settle",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "不可开票明细清单",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "cost",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "实际采购成本",
|
|
|
|
icon: "folder",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "cost",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "实际采购成本",
|
|
|
|
icon: "file",
|
|
|
|
isHidden: true,
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "generate",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "生成",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "inventory",
|
|
|
|
meta: {
|
|
|
|
type: "group",
|
|
|
|
title: "寄售库",
|
|
|
|
icon: "folder",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "balance",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "库存余额查询",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "log",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "库存事务查询",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "dataExport",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "补货数据导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "backup",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "时点库存余额查询",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "export",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导出",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
pattern: "paged",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "invoke",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "手动备份",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "adjust",
|
|
|
|
meta: {
|
|
|
|
type: "page",
|
|
|
|
title: "寄售库存调整",
|
|
|
|
icon: "file",
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "query",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "查询",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "create",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "新建",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "import",
|
|
|
|
meta: {
|
|
|
|
type: "button",
|
|
|
|
title: "导入",
|
|
|
|
icon: "file",
|
|
|
|
isTop: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
];
|