导航

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 61 下一页

2014年2月11日

摘要: 本文是《ADempiere 3.6 Cookbook》一书的实例笔记,详细内容请查阅该书完整内容。1. 登录pgAdmin III,创建表c_mom:CREATE TABLE adempiere.c_mom (c_mom_id numeric(10,0) NOT NULL,ad_client_id numeric(10,0) NOT NULL,ad_org_id numeric(10,0) NOT NULL,isactive character(1) DEFAULT 'Y'::bpchar NOT NULL,created timestamp without time zone 阅读全文

posted @ 2014-02-11 16:02 eastson 阅读(583) 评论(0) 推荐(0)

2014年2月10日

摘要: 1. 用pgAdmin III创建用户adempiere/adempiere:2. 创建adempiere360数据库:3. 导入\data\Adempiere_pg.dmp数据:psql -d adempiere360 -U adempiere -c "drop schema sqlj cascade"psql -d adempiere360 -U adempiere -f Adempiere_pg.dmp4. 执行\RUN_setup.bat安装:5. 执行\utils\RUN_Server2.bat:6. 打开客户端,检查是否安装成功? 阅读全文

posted @ 2014-02-10 15:14 eastson 阅读(576) 评论(0) 推荐(0)

2014年1月22日

摘要: 1. 安装JDK 1.6.2. 安装Eclipse IDE for Java EE Developers。3. 导入adempire-360lts:4. 关闭adempiere-360lts的Buid Autmatically选项:5. 为base、client、install的build.xml的JAVAC增加encoding="utf-8"属性:<javac target="1.6" encoding="UTF-8"6. 安装Ant,执行utils_dev\build.xml,或者执行utils_dev\RUN_build. 阅读全文

posted @ 2014-01-22 07:57 eastson 阅读(533) 评论(0) 推荐(0)

2014年1月21日

摘要: 安装完JDK之后,很容易忘了设置系统的环境变。最近发现一个设置JDK的小工具,非常简单,推荐给大家:下载地址:http://files.cnblogs.com/eastson/JavaPathSet.zip 阅读全文

posted @ 2014-01-21 11:55 eastson 阅读(451) 评论(0) 推荐(0)

2013年12月23日

摘要: SugarController定义了一个实例变量$hasAccess,布尔值,默认为true。该实例变量指示使用者是否有执行摸个action的权限:class SugarController{ /** * This can be set from the application to tell us whether we have authorization to * process the action. If this is set we will default to the noaccess view. */ public $hasAccess = ... 阅读全文

posted @ 2013-12-23 17:34 eastson 阅读(344) 评论(0) 推荐(0)

摘要: 问:如何获取module参数?如果module参数不存在,如何处理?答:首先检查$_REQUEST['module'],然后再检查$sugar_config['default_module']是否有设置,如果都没有则用SugarApplication类的实例变量$default_module(默认为Home)。这些在SugarApplication::execute()函数的开头进行处理:if (!empty($sugar_config['default_module'])) $this->default_module = $sugar_c 阅读全文

posted @ 2013-12-23 09:24 eastson 阅读(184) 评论(0) 推荐(0)

2013年12月9日

摘要: MyGeneration 是一款不错的ORM和代码生成工具,它基于模板(Template)工作,安装好MyGeneration 后自带了很多模板,并且提供在线模板库提供模板升级和允许用户自定义模板。MyGeneration 的模板可以用C#, VB.NET, JScript, and VBScript编写。使用MyGeneration 可以为Gentle.NET, Opf3,NHibernate等生成ORM架构或ORM文件,为多种数据库生成存储过程,为.Net项目生成C#、VB.NET 程序代码,PHP、HTML等页面代码。MyGeneration 具有以下的特性:1.支持多种数据库Micro 阅读全文

posted @ 2013-12-09 11:29 eastson 阅读(323) 评论(0) 推荐(0)

2013年12月5日

摘要: FrontAccounting (FA)是一个针对企业ERP供应链的网页会计系统。FA 允許多使用者、多語系和多國貨幣。 FA允许多使用者、多语系和多国货币。FA接续OpenAccounting (OA)这套已停止开发软体的发展,并有更进一步的进展,OA则是由WebERP衍生出来的。 阅读全文

posted @ 2013-12-05 11:48 eastson 阅读(411) 评论(0) 推荐(0)

2013年11月30日

摘要: Mini HTTP Server which can be embed in EXE,Writen in C#(.net framework 2.0).HTTP request dispatch/route, you can register the handlers for a specific url. Url match using start with in order, so that register the more specific in first. For example:server.RegisterHandler("/index/1", FirstI 阅读全文

posted @ 2013-11-30 09:01 eastson 阅读(599) 评论(0) 推荐(0)

2013年11月29日

摘要: MyGeneration是一个功能很强大的代码生成工具。通过编写包含各种类型脚本(C#,VB.Net,JScript,VBScript)的模板,通过数据库的表内容,生成你需要的各种代码。你可以用它来生成ORM的实体类,存储过程,SQL语句等等。我甚至用它来生成Asp.Net的页面(呵呵,我很懒)。MyGeneration提供了强大的在线模版库,你可以通过访问其网站或者使用Template Browser中的在线模版功能按钮寻找你需要的模版。当然你也可以根据需要自己写模板。项目主页:http://www.mygenerationsoftware.com/portal/default.aspx 阅读全文

posted @ 2013-11-29 17:06 eastson 阅读(487) 评论(0) 推荐(0)

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 61 下一页