Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
iBiz企业中心
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz企业套件
iBiz企业中心
提交
118080de
提交
118080de
编写于
7月 08, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
xignzi006 发布系统代码
上级
1eecd764
变更
11
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
860 行增加
和
346 行删除
+860
-346
contact-info-base.tsx
app_CRM/src/pages/base/contact-info/contact-info-base.tsx
+1
-0
contact-info.html
app_CRM/src/pages/base/contact-info/contact-info.html
+12
-0
contact-info.vue
app_CRM/src/pages/base/contact-info/contact-info.vue
+2
-0
opportunity-service-base.ts
app_CRM/src/service/opportunity/opportunity-service-base.ts
+291
-291
product-service-base.ts
app_CRM/src/service/product/product-service-base.ts
+47
-47
quick-summary-panel-base.tsx
.../contact/quick-summary-panel/quick-summary-panel-base.tsx
+394
-0
quick-summary-panel-model.ts
.../contact/quick-summary-panel/quick-summary-panel-model.ts
+31
-0
quick-summary-panel-service.ts
...ontact/quick-summary-panel/quick-summary-panel-service.ts
+11
-0
quick-summary-panel.html
...gets/contact/quick-summary-panel/quick-summary-panel.html
+41
-0
quick-summary-panel.vue
...dgets/contact/quick-summary-panel/quick-summary-panel.vue
+22
-0
h2_table.xml
...esscentral-core/src/main/resources/liquibase/h2_table.xml
+8
-8
未找到文件。
app_CRM/src/pages/base/contact-info/contact-info-base.tsx
浏览文件 @
118080de
...
...
@@ -79,6 +79,7 @@ export class ContactInfoBase extends TabExpViewBase {
* @memberof ContactInfoBase
*/
protected
containerModel
:
any
=
{
view_datapanel
:
{
name
:
'datapanel'
,
type
:
'PANEL'
},
view_toolbar
:
{
name
:
'toolbar'
,
type
:
'TOOLBAR'
},
view_tabexppanel
:
{
name
:
'tabexppanel'
,
type
:
'TABEXPPANEL'
},
};
...
...
app_CRM/src/pages/base/contact-info/contact-info.html
浏览文件 @
118080de
...
...
@@ -2,6 +2,18 @@
<template
slot=
'title'
>
<span
class=
'caption-info'
>
{{$t(model.srfTitle)}}
</span>
</template>
<template
slot=
"dataPanel"
>
<layout
_datapanel
:viewState=
"viewState"
:viewparams=
"viewparams"
:context=
"context"
:parentRef=
"thisRef"
:inputData=
"inputData"
@
panelDataChange=
"($event)=>{onPanelDataChange(item,$event)}"
name=
"datapanel"
ref=
'datapanel'
>
</layout
_datapanel
>
</template>
<template
slot=
"toolbar"
>
<view-toolbar
mode=
"STYLE2"
:model=
"toolBarModels"
@
item-click=
"toolbar_click($event)"
/>
</template>
<view
_tabexppanel
...
...
app_CRM/src/pages/base/contact-info/contact-info.vue
浏览文件 @
118080de
...
...
@@ -3,6 +3,7 @@
import
{ Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { ContactInfoBase } from './contact-info-base';
import view_datapanel from '@widgets/contact/quick-summary-panel/quick-summary-panel.vue';
import view_tabexppanel from '@widgets/contact/infotabexppanel-tabexppanel/infotabexppanel-tabexppanel.vue';
/**
...
...
@@ -14,6 +15,7 @@ import view_tabexppanel from '@widgets/contact/infotabexppanel-tabexppanel/infot
*/
@Component({
components: {
view_datapanel,
view_tabexppanel,
}
})
...
...
app_CRM/src/service/opportunity/opportunity-service-base.ts
浏览文件 @
118080de
此差异已折叠。
点击以展开。
app_CRM/src/service/product/product-service-base.ts
浏览文件 @
118080de
此差异已折叠。
点击以展开。
app_CRM/src/widgets/contact/quick-summary-panel/quick-summary-panel-base.tsx
0 → 100644
浏览文件 @
118080de
此差异已折叠。
点击以展开。
app_CRM/src/widgets/contact/quick-summary-panel/quick-summary-panel-model.ts
0 → 100644
浏览文件 @
118080de
/**
* QuickSummary 部件模型
*
* @export
* @class QuickSummaryModel
*/
export
default
class
QuickSummaryModel
{
/**
* 获取数据项集合
*
* @returns {any[]}
* @memberof QuickSummaryModel
*/
public
getDataItems
():
any
[]
{
return
[
{
name
:
'customersizecode'
,
prop
:
'customersizecode'
},
{
name
:
'statuscode'
,
prop
:
'statuscode'
},
{
name
:
'owneridyominame'
,
prop
:
'owneridyominame'
}
]
}
}
\ No newline at end of file
app_CRM/src/widgets/contact/quick-summary-panel/quick-summary-panel-service.ts
0 → 100644
浏览文件 @
118080de
import
{
Http
}
from
'@/utils'
;
import
ControlService
from
'@/widgets/control-service'
;
/**
* QuickSummary 部件服务对象
*
* @export
* @class QuickSummaryService
*/
export
default
class
QuickSummaryService
extends
ControlService
{
}
\ No newline at end of file
app_CRM/src/widgets/contact/quick-summary-panel/quick-summary-panel.html
0 → 100644
浏览文件 @
118080de
<div
class=
'panel-container'
style=
""
>
<row
class=
"app-layoutpanel"
style=
"height:100%;"
>
<div
v-show=
"detailsModel.container1.visible"
class=
"app-layoutpanel-container"
style=
""
>
<div
style=
"height:100%;display: flex;"
>
<div
v-show=
"detailsModel.customersizecode.visible"
style=
""
class=
"app-layoutpanel-field "
>
<div
class=
"item-field"
>
<div
class=
"item-field-content"
>
<span>
{{data.customersizecode}}
</span>
</div>
</div>
</div>
<div
v-show=
"detailsModel.statuscode.visible"
style=
""
class=
"app-layoutpanel-field "
>
<div
class=
"item-field"
>
<div
class=
"item-field-content"
>
<span>
{{data.statuscode}}
</span>
</div>
</div>
</div>
<div
v-show=
"detailsModel.owneridyominame.visible"
style=
""
class=
"app-layoutpanel-field "
>
<div
class=
"item-field"
>
<div
class=
"item-field-content"
>
<span>
{{data.owneridyominame}}
</span>
</div>
</div>
</div>
</div>
</div>
</row>
</div>
\ No newline at end of file
app_CRM/src/widgets/contact/quick-summary-panel/quick-summary-panel.vue
0 → 100644
浏览文件 @
118080de
<
template
src=
"./quick-summary-panel.html"
/>
<script
lang=
'tsx'
>
import
{ Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { QuickSummaryPanelBase } from './quick-summary-panel-base';
/**
* datapanel部件
*
* @export
* @class QuickSummaryPanel
* @extends {QuickSummaryPanelBase}
*/
@Component({
components: {
}
})
@VueLifeCycleProcessing()
export default class QuickSummaryPanel extends QuickSummaryPanelBase { }
</script>
businesscentral-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
118080de
...
...
@@ -2760,7 +2760,7 @@
<!--输出实体[CONTACT]数据结构 -->
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"tab-contact-30
4
-37"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"tab-contact-30
5
-37"
>
<createTable
tableName=
"CONTACT"
>
<column
name=
"ADDRESS1_FREIGHTTERMSCODE"
remarks=
""
type=
"VARCHAR(30)"
>
</column>
...
...
@@ -11174,25 +11174,25 @@
<addForeignKeyConstraint
baseColumnNames=
"BUSINESSUNITID"
baseTableName=
"CONSTRAINTBASEDGROUP"
constraintName=
"DER1N_CONSTRAINTBASEDGROUP__BU"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"BUSINESSUNITID"
referencedTableName=
"BUSINESSUNIT"
validate=
"true"
/>
</changeSet>
<!--输出实体[CONTACT]外键关系 -->
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
4
-194"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
5
-194"
>
<addForeignKeyConstraint
baseColumnNames=
"CUSTOMERID"
baseTableName=
"CONTACT"
constraintName=
"DER1N_CONTACT_ACCOUNT_CUSTOMER"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"ACCOUNTID"
referencedTableName=
"ACCOUNT"
validate=
"true"
/>
</changeSet>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
4
-195"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
5
-195"
>
<addForeignKeyConstraint
baseColumnNames=
"PREFERREDEQUIPMENTID"
baseTableName=
"CONTACT"
constraintName=
"DER1N_CONTACT__EQUIPMENT__PREF"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"EQUIPMENTID"
referencedTableName=
"EQUIPMENT"
validate=
"true"
/>
</changeSet>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
4
-196"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
5
-196"
>
<addForeignKeyConstraint
baseColumnNames=
"ORIGINATINGLEADID"
baseTableName=
"CONTACT"
constraintName=
"DER1N_CONTACT__LEAD__ORIGINATI"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"LEADID"
referencedTableName=
"LEAD"
validate=
"true"
/>
</changeSet>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
4
-197"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
5
-197"
>
<addForeignKeyConstraint
baseColumnNames=
"DEFAULTPRICELEVELID"
baseTableName=
"CONTACT"
constraintName=
"DER1N_CONTACT__PRICELEVEL__DEF"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"PRICELEVELID"
referencedTableName=
"PRICELEVEL"
validate=
"true"
/>
</changeSet>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
4
-198"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
5
-198"
>
<addForeignKeyConstraint
baseColumnNames=
"PREFERREDSERVICEID"
baseTableName=
"CONTACT"
constraintName=
"DER1N_CONTACT__SERVICE__PREFER"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"SERVICEID"
referencedTableName=
"SERVICE"
validate=
"true"
/>
</changeSet>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
4
-199"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
5
-199"
>
<addForeignKeyConstraint
baseColumnNames=
"SLAID"
baseTableName=
"CONTACT"
constraintName=
"DER1N_CONTACT__SLA__SLAID"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"SLAID"
referencedTableName=
"SLA"
validate=
"true"
/>
</changeSet>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
4
-200"
>
<changeSet
author=
"a_LAB01_e85d8801c"
id=
"fk-contact-30
5
-200"
>
<addForeignKeyConstraint
baseColumnNames=
"TRANSACTIONCURRENCYID"
baseTableName=
"CONTACT"
constraintName=
"DER1N_CONTACT__TRANSACTIONCURR"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"TRANSACTIONCURRENCYID"
referencedTableName=
"TRANSACTIONCURRENCY"
validate=
"true"
/>
</changeSet>
<!--输出实体[CONTRACT]外键关系 -->
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录