|
Sergei Biletnikov created OFBIZ-5031:
---------------------------------------- Summary: Search orders by good identification Key: OFBIZ-5031 URL: https://issues.apache.org/jira/browse/OFBIZ-5031 Project: OFBiz Issue Type: Improvement Components: order Affects Versions: SVN trunk Reporter: Sergei Biletnikov Priority: Minor I propose to extend the search mask for the search orders by the "Good identification" value. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
[ https://issues.apache.org/jira/browse/OFBIZ-5031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sergei Biletnikov updated OFBIZ-5031: ------------------------------------- Description: I propose to extend the search mask for the search orders forms with the "Good identification" field. was: I propose to extend the search mask for the search orders by the "Good identification" value. > Search orders by good identification > ------------------------------------ > > Key: OFBIZ-5031 > URL: https://issues.apache.org/jira/browse/OFBIZ-5031 > Project: OFBiz > Issue Type: Improvement > Components: order > Affects Versions: SVN trunk > Reporter: Sergei Biletnikov > Priority: Minor > > I propose to extend the search mask for the search orders forms with the "Good identification" field. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-5031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sergei Biletnikov updated OFBIZ-5031: ------------------------------------- Attachment: OFBIZ-5031_Search_orders_by_good_identification.patch > Search orders by good identification > ------------------------------------ > > Key: OFBIZ-5031 > URL: https://issues.apache.org/jira/browse/OFBIZ-5031 > Project: OFBiz > Issue Type: Improvement > Components: order > Affects Versions: SVN trunk > Reporter: Sergei Biletnikov > Priority: Minor > Attachments: OFBIZ-5031_Search_orders_by_good_identification.patch > > > I propose to extend the search mask for the search orders forms with the "Good identification" field. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-5031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sergei Biletnikov updated OFBIZ-5031: ------------------------------------- Description: I propose to extend the search mask for the search orders forms with the "Good identification" field. A thing which can be improved is: <option value="">Any good identification</option> adding : Any good identification to the resource bundle. was: I propose to extend the search mask for the search orders forms with the "Good identification" field. > Search orders by good identification > ------------------------------------ > > Key: OFBIZ-5031 > URL: https://issues.apache.org/jira/browse/OFBIZ-5031 > Project: OFBiz > Issue Type: Improvement > Components: order > Affects Versions: SVN trunk > Reporter: Sergei Biletnikov > Priority: Minor > Attachments: OFBIZ-5031_Search_orders_by_good_identification.patch > > > I propose to extend the search mask for the search orders forms with the "Good identification" field. > A thing which can be improved is: > <option value="">Any good identification</option> > adding : Any good identification to the resource bundle. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-5031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sergei Biletnikov updated OFBIZ-5031: ------------------------------------- Description: I propose to extend the search mask for the search orders forms with the "Good identification" field. A thing which can be improved is : <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") adding : Any good identification to the resource bundle. was: I propose to extend the search mask for the search orders forms with the "Good identification" field. A thing which can be improved is: <option value="">Any good identification</option> adding : Any good identification to the resource bundle. > Search orders by good identification > ------------------------------------ > > Key: OFBIZ-5031 > URL: https://issues.apache.org/jira/browse/OFBIZ-5031 > Project: OFBiz > Issue Type: Improvement > Components: order > Affects Versions: SVN trunk > Reporter: Sergei Biletnikov > Priority: Minor > Attachments: OFBIZ-5031_Search_orders_by_good_identification.patch > > > I propose to extend the search mask for the search orders forms with the "Good identification" field. > A thing which can be improved is : > <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") > adding : Any good identification to the resource bundle. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-5031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sergei Biletnikov updated OFBIZ-5031: ------------------------------------- Description: I propose to extend the search mask for the search orders forms with the "Good identification" field. A thing which can be improved is : <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") adding : Any good identification to the resource bundle. Also, I found a bug which exists from 10.04 at least: search orders by shipment method does not work properly, because: applications/order/webapp/ordermgr/WEB-INF/actions/order/FindOrders.groovy currentCarrierShipmentMethod = delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false); is not correct, the result is the list, so the remedy is simple: currentCarrierShipmentMethod = EntityUtil.getFirst(delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false)); My patch has this fix, but it is necessary to make this fix for other OFBiz version. Kind regards, Sergei was: I propose to extend the search mask for the search orders forms with the "Good identification" field. A thing which can be improved is : <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") adding : Any good identification to the resource bundle. > Search orders by good identification > ------------------------------------ > > Key: OFBIZ-5031 > URL: https://issues.apache.org/jira/browse/OFBIZ-5031 > Project: OFBiz > Issue Type: Improvement > Components: order > Affects Versions: SVN trunk > Reporter: Sergei Biletnikov > Priority: Minor > Attachments: OFBIZ-5031_Search_orders_by_good_identification.patch > > > I propose to extend the search mask for the search orders forms with the "Good identification" field. > A thing which can be improved is : > <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") > adding : Any good identification to the resource bundle. > Also, I found a bug which exists from 10.04 at least: > search orders by shipment method does not work properly, because: > applications/order/webapp/ordermgr/WEB-INF/actions/order/FindOrders.groovy > currentCarrierShipmentMethod = delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false); > is not correct, the result is the list, so the remedy is simple: > currentCarrierShipmentMethod = EntityUtil.getFirst(delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false)); > My patch has this fix, but it is necessary to make this fix for other OFBiz version. > Kind regards, > Sergei -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-5031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sergei Biletnikov updated OFBIZ-5031: ------------------------------------- Description: I propose to extend the search mask for the search orders forms with the "Good identification" field. A thing which can be improved is : <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") adding : Any good identification to the resource bundle. Also, I found a bug which exists from 10.04 at least: search orders by shipment method does not work properly, because: {noformat} applications/order/webapp/ordermgr/WEB-INF/actions/order/FindOrders.groovy currentCarrierShipmentMethod = delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false); is not correct, the result is the list, so the remedy is simple: currentCarrierShipmentMethod = EntityUtil.getFirst(delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false)); {noformat} My patch has this fix, but it is necessary to make this fix for other OFBiz version. Kind regards, Sergei was: I propose to extend the search mask for the search orders forms with the "Good identification" field. A thing which can be improved is : <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") adding : Any good identification to the resource bundle. Also, I found a bug which exists from 10.04 at least: search orders by shipment method does not work properly, because: applications/order/webapp/ordermgr/WEB-INF/actions/order/FindOrders.groovy currentCarrierShipmentMethod = delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false); is not correct, the result is the list, so the remedy is simple: currentCarrierShipmentMethod = EntityUtil.getFirst(delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false)); My patch has this fix, but it is necessary to make this fix for other OFBiz version. Kind regards, Sergei > Search orders by good identification > ------------------------------------ > > Key: OFBIZ-5031 > URL: https://issues.apache.org/jira/browse/OFBIZ-5031 > Project: OFBiz > Issue Type: Improvement > Components: order > Affects Versions: SVN trunk > Reporter: Sergei Biletnikov > Priority: Minor > Attachments: OFBIZ-5031_Search_orders_by_good_identification.patch > > > I propose to extend the search mask for the search orders forms with the "Good identification" field. > A thing which can be improved is : > <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") > adding : Any good identification to the resource bundle. > Also, I found a bug which exists from 10.04 at least: > search orders by shipment method does not work properly, because: > {noformat} > applications/order/webapp/ordermgr/WEB-INF/actions/order/FindOrders.groovy > currentCarrierShipmentMethod = delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false); > is not correct, the result is the list, so the remedy is simple: > currentCarrierShipmentMethod = EntityUtil.getFirst(delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false)); > {noformat} > My patch has this fix, but it is necessary to make this fix for other OFBiz version. > Kind regards, > Sergei -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-5031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sergei Biletnikov updated OFBIZ-5031: ------------------------------------- Attachment: screenshot-1.jpg > Search orders by good identification > ------------------------------------ > > Key: OFBIZ-5031 > URL: https://issues.apache.org/jira/browse/OFBIZ-5031 > Project: OFBiz > Issue Type: Improvement > Components: order > Affects Versions: SVN trunk > Reporter: Sergei Biletnikov > Priority: Minor > Attachments: OFBIZ-5031_Search_orders_by_good_identification.patch, screenshot-1.jpg > > > I propose to extend the search mask for the search orders forms with the "Good identification" field. > A thing which can be improved is : > <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") > adding : Any good identification to the resource bundle. > Also, I found a bug which exists from 10.04 at least: > search orders by shipment method does not work properly, because: > {noformat} > applications/order/webapp/ordermgr/WEB-INF/actions/order/FindOrders.groovy > currentCarrierShipmentMethod = delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false); > is not correct, the result is the list, so the remedy is simple: > currentCarrierShipmentMethod = EntityUtil.getFirst(delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false)); > {noformat} > My patch has this fix, but it is necessary to make this fix for other OFBiz version. > Kind regards, > Sergei -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
|
In reply to this post by Nicolas Malin (Jira)
[ https://issues.apache.org/jira/browse/OFBIZ-5031?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sergei Biletnikov updated OFBIZ-5031: ------------------------------------- Description: I propose to extend the search mask for the search orders forms with the "Good identification" field. A thing which can be improved is : <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") adding : "Any good identification" to the resource bundle. Also, I found a bug which exists from 10.04 at least: search orders by shipment method does not work properly, because: {noformat} applications/order/webapp/ordermgr/WEB-INF/actions/order/FindOrders.groovy currentCarrierShipmentMethod = delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false); is not correct, the result is the list, so the remedy is simple: currentCarrierShipmentMethod = EntityUtil.getFirst(delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false)); {noformat} My patch has this fix, but it is necessary to make this fix for other OFBiz version. Kind regards, Sergei was: I propose to extend the search mask for the search orders forms with the "Good identification" field. A thing which can be improved is : <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") adding : Any good identification to the resource bundle. Also, I found a bug which exists from 10.04 at least: search orders by shipment method does not work properly, because: {noformat} applications/order/webapp/ordermgr/WEB-INF/actions/order/FindOrders.groovy currentCarrierShipmentMethod = delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false); is not correct, the result is the list, so the remedy is simple: currentCarrierShipmentMethod = EntityUtil.getFirst(delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false)); {noformat} My patch has this fix, but it is necessary to make this fix for other OFBiz version. Kind regards, Sergei > Search orders by good identification > ------------------------------------ > > Key: OFBIZ-5031 > URL: https://issues.apache.org/jira/browse/OFBIZ-5031 > Project: OFBiz > Issue Type: Improvement > Components: order > Affects Versions: SVN trunk > Reporter: Sergei Biletnikov > Priority: Minor > Attachments: OFBIZ-5031_Search_orders_by_good_identification.patch, screenshot-1.jpg > > > I propose to extend the search mask for the search orders forms with the "Good identification" field. > A thing which can be improved is : > <option value="">Any good identification</option> (in "applications/order/webapp/ordermgr/order/findOrders.ftl") > adding : "Any good identification" to the resource bundle. > Also, I found a bug which exists from 10.04 at least: > search orders by shipment method does not work properly, because: > {noformat} > applications/order/webapp/ordermgr/WEB-INF/actions/order/FindOrders.groovy > currentCarrierShipmentMethod = delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false); > is not correct, the result is the list, so the remedy is simple: > currentCarrierShipmentMethod = EntityUtil.getFirst(delegator.findByAnd("CarrierShipmentMethod", [partyId : carrierPartyId, shipmentMethodTypeId : shipmentMethodTypeId], null, false)); > {noformat} > My patch has this fix, but it is necessary to make this fix for other OFBiz version. > Kind regards, > Sergei -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
| Free forum by Nabble | Edit this page |
