1.在几个已安装的应用模块中,资产管理模块,是最简单的,可以从这个开始入手。
E:\eclipse-SDK-3.7.1-win32\ofbiz\apache-ofbiz-10.04\specialpurpose\assetmaint

2.它的国际化资源文件在:
specialpurpose/assetmaint/config/IsMgrUiLabels.xml

<property key="IsMgrNewComputerSoftware">
<value xml:lang="en">New Software</value>
<value xml:lang="fr">Nouveau logiciel</value>
<value xml:lang="it">Nuovo software</value>
<value xml:lang="zh">新软件</value>
</property>

3.specialpurpose/assetmaint/ofbiz-component.xml中配置了两个webapp:

<webapp name="assetmaint"
title="AssetMaint"
server="default-server"
location="webapp/assetmaint"
base-permission="ASSETMAINT"
mount-point="/assetmaint"
app-bar-display="true"/> <webapp name="ismgr"
title="IS Mgr"
server="default-server"
app-bar-display="false"
location="webapp/ismgr"
base-permission="ASSETMAINT"
mount-point="/ismgr"/>

4.只有一个java文件:
specialpurpose/assetmaint/src/org/ofbiz/assetmaint/FixedAssetMaintServices.java
它在:specialpurpose/assetmaint/build/lib/ofbiz-assetmaint.jar

它在这里被调用:
specialpurpose/assetmaint/servicedef/services.xml

<service name="addPartFixedAssetMaint" engine="java"
location="org.ofbiz.assetmaint.FixedAssetMaintServices"
invoke="addPartFixedAssetMaint" auth="true">

services.xml又是被定义在ofbiz-component.xml:

<service-resource type="model" loader="main" location="servicedef/services.xml"/>

在services.xml中共定义了5个services, 其它4个是:
location=
"component://assetmaint/script/org/ofbiz/assetmaint/FixedAssetMaintServices.xml"
这个script脚本中的4个方法:
assetMaintPermissionCheck
createFixedAssetMaintUpdateWorkEffort
updateFixedAssetMaintAndWorkEffort
createWorkEffortAndAssocWithParent

5.The most basic components in OFBiz are Entities and Services.

6.官网文档:
Apache OFBiz Getting Started ------>有一些链接和视频:
https://cwiki.apache.org/OFBADMIN/apache-ofbiz-getting-started.html

OFBiz Documentation Index ------->帮助文件的聚合:
https://cwiki.apache.org/OFBADMIN/ofbiz-documentation-index.html

7.客户列表:
https://cwiki.apache.org/OFBIZ/apache-ofbiz-user-list.html
其中以下客户:
1) opentaps Open Source ERP + CRM  ----->一个基于ofbiz的软件公司
2) http://www.xuandoo.com  ------>炫动网,一个基于opentaps的电子商务网站(中国)
http://www.wizitsoft.com/  ----->北京威思艾特信息技术有限公司, 实施.
3) http://www.antwebsystems.com/control/main   ----->一个基于ofbiz做实施的公司(泰国),在ofbiz中用户表中它是出现次数最多的公司。

[OFBiz]开发 四的更多相关文章

  1. JAVA EE企业级开发四步走完全攻略 [转]

    http://bbs.51cto.com/thread-550558-1.html 本文是J2EE企业级开发四步走完全攻略索引,因内容比较广泛,涉及整个JAVA EE开发相关知识,这是一个长期的计划, ...

  2. C#的百度地图开发(四)前端显示与定位

    原文:C#的百度地图开发(四)前端显示与定位 有了这些定位信息,那要如何在前端的页面上显示出来呢?这需要用到百度地图的JavaScript的API.下面是示例代码. 前端代码 <%@ Page  ...

  3. 【JAVA EE企业级开发四步走完全攻略】

    本文是J2EE企业级开发四步走完全攻略索引,因内容比较广泛,涉及整个JAVA EE开发相关知识,这是一个长期的计划,单个发blog比较零散,所以整理此索引,决定以后每发一季JAVA EE blog后会 ...

  4. 从零开始实现ASP.NET Core MVC的插件式开发(四) - 插件安装

    标题:从零开始实现ASP.NET Core MVC的插件式开发(四) - 插件安装 作者:Lamond Lu 地址:https://www.cnblogs.com/lwqlun/p/11260750. ...

  5. STC8H开发(四): FwLib_STC8 封装库的介绍和注意事项

    目录 STC8H开发(一): 在Keil5中配置和使用FwLib_STC8封装库(图文详解) STC8H开发(二): 在Linux VSCode中配置和使用FwLib_STC8封装库(图文详解) ST ...

  6. 【开学季】自学嵌入式开发|四核开发板|4412开发板|ARM+Android+linux技术

    淘宝店铺:迅为开发板http://arm-board.taobao.com 网站:http://www.topeetboard.com QQ咨询:2551456065 电话咨询:010-5895758 ...

  7. [OFBiz]开发 一

    1.使用Eclipse3.7.1 + subclipse plugins 1.8.2(svn client)http://subclipse.tigris.org/servlets/ProjectDo ...

  8. EOS智能合约开发(四):智能合约部署及调试(附编程示例)

    EOS智能合约开发(一):EOS环境搭建和创建节点 EOS智能合约开发(二):EOS创建和管理钱包 EOS智能合约开发(三):EOS创建和管理账号 部署智能合约的示例代码如下: $ cleos set ...

  9. 响应式开发(四)-----Bootstrap CSS----------Bootstrap CSS概览和相关注意事项

    本章先记录一些与Bootstrap CSS相关的一些特点和注意事项以及兼容性. HTML 5 文档类型(Doctype) Bootstrap 使用了一些 HTML5 元素和 CSS 属性.为了让这些正 ...

随机推荐

  1. 解决maven-dependency-plugin (goals "copy-dependencies", "unpack") is not supported by m2e.错误

    POM文件报错maven-dependency-plugin (goals "copy-dependencies", "unpack") is not supp ...

  2. 树状数组的笔记√(hzwer blog)

    int lowbit(int x) { return x&(-x); } lowbit()的返回值就是 2^k 次方的值. 求数组的和的算法: (1)首先,令sum=0,转向第二步: (2)接 ...

  3. LeeCode 1-Two Sum

    Two Sum Total Accepted: 125096 Total Submissions: 705262 Question Solution Given an array of integer ...

  4. 腾讯QQ的开发分客户端软件和服务器端软件

    Windows客户端主要是C++ COM/ATL Q+Web 后端C++ CGI ,前端javascript和flash 望采纳 腾讯QQ使用何种开发平台? 腾讯QQ的开发分客户端软件和服务器端软件两 ...

  5. Java学习笔记之:Java 接口

    一.引言 接口(英文:Interface),在JAVA编程语言中是一个抽象类型,是抽象方法的集合,接口通常以interface来声明.一个类通过继承接口的方式,从而来继承接口的抽象方法. 接口并不是类 ...

  6. 各种分区类型对应的partition_Id

    ID Name Note == ==== ==== 00h empty [空] 01h DOS 12-bit FAT [MS DOS FAT12] 02h XENIX root file system ...

  7. eclipse(STS,myeclipse)老是报ThreadPoolExecutor$Worker.run()

    资料地址:http://stackoverflow.com/questions/6290470/eclipse-debugger-always-blocks-on-threadpoolexecutor ...

  8. jquery.post用法

    使用ajax在前端验证是否执行某个操作 jquery.post参数为 url,[data],[callback],[type] url:发送请求地址. data:待发送 Key/value 参数. c ...

  9. How to learn linux device driver

    To learn device driver development, like any other new knowledge, the bestapproach for me is to lear ...

  10. uva10820Send a Table

    筛法. 首先使cnt[i]=sqr(n/i),这样cnt[i]就表示gcd(x,y)大于等于i的数对的个数,然后倒序枚举减去gcd大于i的个数就可以得到ans[i].最终得到ans[1]. 这个算法单 ...