隨筆 - 6  文章 - 129  trackbacks - 0
          <2025年6月>
          25262728293031
          1234567
          891011121314
          15161718192021
          22232425262728
          293012345

          常用鏈接

          留言簿(14)

          隨筆檔案(6)

          文章分類(467)

          文章檔案(423)

          相冊

          收藏夾(18)

          JAVA

          搜索

          •  

          積分與排名

          • 積分 - 827168
          • 排名 - 49

          最新評論

          閱讀排行榜

          評論排行榜

          How to create a Table

          http://wiki.openbravo.com/wiki/How_to_create_a_Table

          The new table must include the AD_Client_ID, AD_Org_ID, IsActive, Created, CreatedBy, Updated and UpdatedBy fields that are mandatory and required for security and auditory purposes of the application. 

          Each table must have at least one column marked as an identifier. The actual values of identifier columns later get concatenated to be shown to the user as a representation of a particular record (see the link to the Sales Order within the Sales Invoice window). These identifiers will also be used to construct dropdown lists of records of that particular table. By default all columns with column name Name are set as an identifier. In case there is no column with this Name, no identifier is set and needs to be done so manually or compilation will fail. 

          NOTE: The columns that are named line or seqNo are used to contain the sequence number of a record (i.e. the number of a line in an invoice). They take a default value like:

          @SQL=SELECT COALESCE(MAX(ColumnName),0)+10 AS DefaultValue FROM TableName WHERE xxParentColumn=@xxParentColumn@

          The WHERE part of this clause needs to be replaced with the required values. The code that should appear here is the name of the column which links with the id of the parent one. For example, each record of the C_InvoiceLine belongs to a particular C_Invoice record and they are all sequenced. C_Invoice is the parent table for the lines saved in C_InvoiceLine. This table has a column named line and the default value that it takes is:

          @SQL=SELECT COALESCE(MAX(LINE),0)+10 AS DefaultValue FROM C_INVOICELINE WHERE C_INVOICE_ID=@C_INVOICE_ID@

          How to add Columns to a Table

          http://wiki.openbravo.com/wiki/How_to_add_Columns_to_a_Table


          These changes can be done in two different locations:

          1. Add columns to the original module (dbprefix HT)
          2. Create a second module (dbprefix HT2) which adds the columns to the first module

          The first option can be chosen if the original module author wants to add more columns to his/her module. The second option is possible for anyone as the columns are added by a new module to the existing one which is not changed directly.

          The main difference between these two methods is the names which need to be chosen for the columns to comply with the modularity naming rules.

          1. Adding column to same module: Any valid column name can be picked
          2. Via second module: New column name must comply to the pattern EM_<DBPREFIX>_ where <DBPREFIX> must be the dbprefix if the new module contaning the column to be added. In this example: EM_HT2_

          How to add a Constraint

          http://wiki.openbravo.com/wiki/How_to_add_a_Constraint

          In the Application Dictionary || Message window create a new record using the following details:

          • Module Openbravo Howtos 2 as this is the module containing the constraint also.
          • Search key: The search key must be exactly the same as the constraint's one, in this case em_ht2_ht_salary_dates_chk as this is the link between the constraint and the message.
          • Message type: Depending on the type the UI for the message box will be different (green for success, yellow for warning...), in our case we want a red error message box, so we select Error.
          • Message text: It is the user friendly message that will be displayed inside the message box. So let's enter: The Valid To date may not be before the Valid From date

           

           Creating a new instance of a Business Object

          http://wiki.openbravo.com/wiki/How_to_work_with_the_Data_Access_Layer#A_.27Hello_World.27_Example

          A business object may never be created using the Java new operator. All business objects should be created using the OBProvider factory class:

             // create the object through the factory   final Category bpg = OBProvider.getInstance().get(Category.class);

          Hibernate will detect that a business object is new when:

          • the id of the business object is not set
          • when the flag newOBObject is set to true explicitly

          So if you want to create a new business object with a specific id (by calling setId(...)) then you explicitly need to call businessObject.setNewOBObject(true). Otherwise, Hibernate will throw an exception ('count of batch update operation....'). 




          posted on 2013-05-03 09:23 Ke 閱讀(819) 評論(0)  編輯  收藏 所屬分類: Openbravo
          主站蜘蛛池模板: 雷州市| 凉山| 钟祥市| 梧州市| 且末县| 肇东市| 胶州市| 新乡市| 武邑县| 砚山县| 寻乌县| 普兰县| 方城县| 天津市| 南昌县| 德格县| 永德县| 洛川县| 南康市| 娄烦县| 墨脱县| 水富县| 靖边县| 兴文县| 汶川县| 曲阜市| 康定县| 仙游县| 太康县| 景德镇市| 武胜县| 正镶白旗| 河间市| 改则县| 九江市| 莒南县| 兴仁县| 平乡县| 庆安县| 辽宁省| 阳新县|