You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ofbiz.apache.org by "Nicolas Malin (Jira)" <ji...@apache.org> on 2019/09/07 17:08:00 UTC

[jira] [Closed] (OFBIZ-11183) Manage itemStatusId and oldItemStatusId on entity-auto

     [ https://issues.apache.org/jira/browse/OFBIZ-11183?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Nicolas Malin closed OFBIZ-11183.
---------------------------------
    Fix Version/s: Upcoming Branch
         Assignee: Nicolas Malin
       Resolution: Done

done on trunk at 1866559

> Manage itemStatusId and oldItemStatusId on entity-auto
> ------------------------------------------------------
>
>                 Key: OFBIZ-11183
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-11183
>             Project: OFBiz
>          Issue Type: Improvement
>          Components: framework
>    Affects Versions: Trunk
>            Reporter: Nicolas Malin
>            Assignee: Nicolas Malin
>            Priority: Minor
>             Fix For: Upcoming Branch
>
>         Attachments: OFBIZ-11183.patch
>
>
> Currently entity-auto manage a service who attendee a statusId  on IN parameter and a oldStatusId on OUT parameter. 
> {code:java}
> <service name="updateRequirement" default-entity-name="Requirement" engine="entity-auto" invoke="update" auth="true">
>     <description>Update an existing requirement</description>
>     <auto-attributes include="pk" mode="IN" optional="false"/>
>     <auto-attributes include="nonpk" mode="IN" optional="true"/>
>     <attribute name="oldStatusId" type="String" mode="OUT" optional="true"/>
> </service> 
> {code}
> I propose to extend this logic to itemSatusId
> {code:java}
> <service name="updatePicklistItem" default-entity-name="PicklistItem" engine="entity-auto" invoke="update" auth="true">
>      <description>Update PicklistItem</description>
>      <permission-service service-name="facilityPermissionCheck" main-action="UPDATE"/>
>      <auto-attributes include="pk" mode="IN" optional="false"/>
>      <auto-attributes include="nonpk" mode="IN" optional="true"/>
>      <attribute name="oldItemStatusId" type="String" mode="OUT" optional="true"/>
> </service>{code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)