Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz企业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz企业套件
iBiz企业中心
提交
1650d316
提交
1650d316
编写于
7月 09, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
xignzi006 发布系统代码
上级
93a0530f
变更
6
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
89 行增加
和
7 行删除
+89
-7
data-dictionary.json
app_CRM/public/assets/json/data-dictionary.json
+27
-0
codelist_en_US.ts
app_CRM/src/locale/lanres/codelist/codelist_en_US.ts
+5
-0
codelist_zh_CN.ts
app_CRM/src/locale/lanres/codelist/codelist_zh_CN.ts
+5
-0
codelist.ts
app_CRM/src/mock/codelist/codelist.ts
+27
-0
multi-pick-data-acgrid.html
...s/base/multi-pick-data-acgrid/multi-pick-data-acgrid.html
+3
-0
lead-ui-service-base.ts
app_CRM/src/uiservice/lead/lead-ui-service-base.ts
+22
-7
未找到文件。
app_CRM/public/assets/json/data-dictionary.json
浏览文件 @
1650d316
...
...
@@ -4807,6 +4807,33 @@
}
]
},
{
"srfkey"
:
"PickDataType_AC"
,
"emptytext"
:
"未定义"
,
"codelisttype"
:
"static"
,
"items"
:
[
{
"id"
:
"ACCOUNT"
,
"label"
:
"客户"
,
"text"
:
"客户"
,
"data"
:
""
,
"codename"
:
"Account"
,
"value"
:
"ACCOUNT"
,
"disabled"
:
false
}
,
{
"id"
:
"CONTACT"
,
"label"
:
"联系人"
,
"text"
:
"联系人"
,
"data"
:
""
,
"codename"
:
"Contact"
,
"value"
:
"CONTACT"
,
"disabled"
:
false
}
]
},
{
"srfkey"
:
"Activitypointer__PriorityCode"
,
"emptytext"
:
"未定义"
,
...
...
app_CRM/src/locale/lanres/codelist/codelist_en_US.ts
浏览文件 @
1650d316
...
...
@@ -597,6 +597,11 @@ export default {
"1"
:
"无控制"
,
"empty"
:
""
},
PickDataType_AC
:
{
"ACCOUNT"
:
"客户"
,
"CONTACT"
:
"联系人"
,
"empty"
:
""
},
Activitypointer__PriorityCode
:
{
"0"
:
"低"
,
"1"
:
"正常"
,
...
...
app_CRM/src/locale/lanres/codelist/codelist_zh_CN.ts
浏览文件 @
1650d316
...
...
@@ -597,6 +597,11 @@ export default {
"1"
:
"无控制"
,
"empty"
:
""
,
},
PickDataType_AC
:
{
"ACCOUNT"
:
"客户"
,
"CONTACT"
:
"联系人"
,
"empty"
:
""
,
},
Activitypointer__PriorityCode
:
{
"0"
:
"低"
,
"1"
:
"正常"
,
...
...
app_CRM/src/mock/codelist/codelist.ts
浏览文件 @
1650d316
...
...
@@ -4815,6 +4815,33 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => {
},
]
},
{
srfkey
:
"PickDataType_AC"
,
emptytext
:
"未定义"
,
"codelisttype"
:
"static"
,
items
:
[
{
id
:
"ACCOUNT"
,
label
:
"客户"
,
text
:
"客户"
,
"data"
:
""
,
"codename"
:
"Account"
,
value
:
"ACCOUNT"
,
disabled
:
false
,
},
{
id
:
"CONTACT"
,
label
:
"联系人"
,
text
:
"联系人"
,
"data"
:
""
,
"codename"
:
"Contact"
,
value
:
"CONTACT"
,
disabled
:
false
,
},
]
},
{
srfkey
:
"Activitypointer__PriorityCode"
,
emptytext
:
"未定义"
,
...
...
app_CRM/src/pages/base/multi-pick-data-acgrid/multi-pick-data-acgrid.html
浏览文件 @
1650d316
<studio-view-style2
viewName=
"multipickdataacgrid"
viewTitle=
"客户、联系人"
class=
'depickupgridview multi-pick-data-acgrid'
>
<template
slot=
"quickGroupSearch"
>
<app-quick-group
:items=
"quickGroupModel"
@
valuechange=
"quickGroupValueChange($event)"
></app-quick-group>
</template>
<template
slot=
"searchForm"
>
<view
_searchform
:viewState=
"viewState"
...
...
app_CRM/src/uiservice/lead/lead-ui-service-base.ts
浏览文件 @
1650d316
...
...
@@ -289,14 +289,29 @@ export default class LeadUIServiceBase extends UIService {
}
const
parameters
:
any
[]
=
[
{
pathName
:
'leads'
,
parameterName
:
'lead'
},
{
pathName
:
'edit_datapanelview'
,
parameterName
:
'edit_datapanelview'
},
];
const
openIndexViewTab
=
(
data
:
any
)
=>
{
const
routePath
=
actionContext
.
$viewTool
.
buildUpRoutePath
(
actionContext
.
$route
,
context
,
deResParameters
,
parameters
,
_args
,
data
);
actionContext
.
$router
.
push
(
routePath
);
return
null
;
const
openPopOver
=
(
view
:
any
,
data
:
any
)
=>
{
let
container
:
Subject
<
any
>
=
actionContext
.
$apppopover
.
openPop
(
$event
,
view
,
context
,
data
);
container
.
subscribe
((
result
:
any
)
=>
{
if
(
!
result
||
!
Object
.
is
(
result
.
ret
,
'OK'
))
{
return
;
}
openIndexViewTab
(
data
);
const
_this
:
any
=
actionContext
;
if
(
window
.
opener
){
window
.
opener
.
postMessage
({
status
:
'OK'
,
identification
:
'WF'
},
Environment
.
uniteAddress
);
window
.
close
();
}
return
result
.
datas
;
});
}
const
view
:
any
=
{
viewname
:
'lead-edit-data-panel-view'
,
height
:
300
,
width
:
300
,
title
:
actionContext
.
$t
(
'entities.lead.views.edit_datapanelview.title'
),
placement
:
'POPOVER'
,
};
openPopOver
(
view
,
data
);
}
/**
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录