<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>Commerce</title>
  <link rel="self" href="https://liferay.dev/en/c/message_boards/find_category?p_l_id=119785294&amp;mbCategoryId=120181604" />
  <subtitle>Questions related to Liferay Commerce, the digital commerce platform built from the ground up to work with Liferay Portal</subtitle>
  <id>https://liferay.dev/en/c/message_boards/find_category?p_l_id=119785294&amp;mbCategoryId=120181604</id>
  <updated>2026-04-06T23:09:27Z</updated>
  <dc:date>2026-04-06T23:09:27Z</dc:date>
  <entry>
    <title>RE: Bug: PATCH /v1.0/warehouseItems/{id}: reservedQuantity ignored</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=123580598" />
    <author>
      <name>Marco Nguitragool</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=123580598</id>
    <updated>2025-09-01T00:44:37Z</updated>
    <published>2025-08-29T10:40:09Z</published>
    <summary type="html">&lt;p&gt;Related bug: Quantity (and reserved quantity) in RESTful API does not
  support decimal values.&lt;/p&gt;
&lt;p&gt;Go to the &amp;quot;Commerce&amp;quot;-admin and create an entry under
  &amp;quot;Inventory&amp;quot; having a quantity of 5.255 and a reserved
  quantity of 1.128. Then go to
  https://HOST/liferay/o/api?endpoint=https://dragonkingchocolate.com:1443/liferay/o/headless-commerce-admin-inventory/v1.0/openapi.json
  and perform GET&lt;br&gt; /v1.0/warehouses/{id}/warehouseItems -- the
  decimal values are gone.&lt;/p&gt;
&lt;p&gt;The same btw. when you edit the previously stored inventory-item in
  &amp;quot;Commerce&amp;quot; &amp;gt; &amp;quot;Inventory&amp;quot; again: I
  saved quantity = 5.255 and reserved quantity = 1.128, but when editing
  it again, it shows only 5 and 1 (instead of 5.255 and 1.128). This
  sucks. I want to track many items in kg, but often have 0.5 kg or 0.25
  kg going in or out of the inventory. I don't want to track it in g,
  because we have over 1000 kg in stock. In the DB it is clearly a
  BigDecimal, but Liferay sometimes rounds/truncates the values.&lt;/p&gt;</summary>
    <dc:creator>Marco Nguitragool</dc:creator>
    <dc:date>2025-08-29T10:40:09Z</dc:date>
  </entry>
  <entry>
    <title>Bug: PATCH /v1.0/warehouseItems/{id}: reservedQuantity ignored</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=123559572" />
    <author>
      <name>Marco Nguitragool</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=123559572</id>
    <updated>2025-08-25T16:45:11Z</updated>
    <published>2025-08-24T12:21:33Z</published>
    <summary type="html">&lt;p&gt;Hello *,&lt;/p&gt;
&lt;p&gt;here's how to reproduce the bug:&lt;/p&gt;
&lt;p&gt;1. Go to your liferay-instance and log in.&lt;/p&gt;
&lt;p&gt;2. Open the &amp;quot;Liferay Commerce Admin Inventory API&amp;quot;, i.e. https://HOST/liferay/o/api?endpoint=https://HOST/liferay/o/headless-commerce-admin-inventory/v1.0/openapi.json&lt;/p&gt;
&lt;p&gt;3. Get a valid warehouse-item, e.g. by first querying your warehouses
  and then the items of one of these warehouses. For my example, I have
  this warehouse-item:&lt;/p&gt;
&lt;pre&gt;
&lt;code&gt;{
    &amp;quot;externalReferenceCode&amp;quot;: &amp;quot;52435fdc-f94a-ec13-765e-3933eb3630c0&amp;quot;,
    &amp;quot;id&amp;quot;: 40958,
    &amp;quot;quantity&amp;quot;: 94,
    &amp;quot;reservedQuantity&amp;quot;: 10,
    &amp;quot;sku&amp;quot;: &amp;quot;CABUT310&amp;quot;,
    &amp;quot;unitOfMeasureKey&amp;quot;: &amp;quot;&amp;quot;,
    &amp;quot;warehouseExternalReferenceCode&amp;quot;: &amp;quot;e1409d48-3439-89f6-31ee-89ca317d85c7&amp;quot;,
    &amp;quot;warehouseId&amp;quot;: 34549
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;4. Copy+paste this JSON into the request-body of &amp;quot;PATCH
  /v1.0/warehouseItems/{id}&amp;quot; and then change the quantity as well
  as the reservedQuantity, e.g. like this:&lt;/p&gt;
&lt;pre&gt;
&lt;code&gt;{
    &amp;quot;externalReferenceCode&amp;quot;: &amp;quot;52435fdc-f94a-ec13-765e-3933eb3630c0&amp;quot;,
    &amp;quot;id&amp;quot;: 40958,
    &amp;quot;quantity&amp;quot;: 92,
    &amp;quot;reservedQuantity&amp;quot;: 12,
    &amp;quot;sku&amp;quot;: &amp;quot;CABUT310&amp;quot;,
    &amp;quot;unitOfMeasureKey&amp;quot;: &amp;quot;&amp;quot;,
    &amp;quot;warehouseExternalReferenceCode&amp;quot;: &amp;quot;e1409d48-3439-89f6-31ee-89ca317d85c7&amp;quot;,
    &amp;quot;warehouseId&amp;quot;: 34549
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Here, I changed the quantity from 94 to 92 and the reservedQuantity
  from 10 to 12.&lt;/p&gt;
&lt;p&gt;5. Click &amp;quot;Execute&amp;quot;. You should receive a success (HTTP 200).&lt;/p&gt;
&lt;p&gt;6. Query the warehouse-item again. &lt;strong&gt;FAIL:&lt;/strong&gt; The
  quantity was updated correctly, but the
  &lt;strong&gt;reservedQuantity&lt;/strong&gt; was &lt;strong&gt;not updated!&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;Just for the record: I also tried to update only the reservedQuantity
  (leaving everything else unchanged) and I also tried reducing the JSON
  to only what I wanted to update and it all didn't work.&lt;/p&gt;
&lt;p&gt;Please fix this bug as soon as possible. It seems it's currently not
  possible at all to change the reservedQuantity via RESTful API.&lt;/p&gt;
&lt;p&gt;In case you have questions, please don't hesitate to ask here or
  contact me via e-mail.&lt;/p&gt;
&lt;p&gt;Best regards, Marco :-)&lt;/p&gt;</summary>
    <dc:creator>Marco Nguitragool</dc:creator>
    <dc:date>2025-08-24T12:21:33Z</dc:date>
  </entry>
  <entry>
    <title>RE: Binding attachments to options</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=123230418" />
    <author>
      <name>Muhammad Nadeem</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=123230418</id>
    <updated>2025-02-10T16:25:20Z</updated>
    <published>2025-02-07T02:16:02Z</published>
    <summary type="html">&lt;p&gt;You can try with custom field of order items&lt;/p&gt;</summary>
    <dc:creator>Muhammad Nadeem</dc:creator>
    <dc:date>2025-02-07T02:16:02Z</dc:date>
  </entry>
  <entry>
    <title>Java Error when I deploy on liferay.dev env</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=123110803" />
    <author>
      <name>Amr Khaled</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=123110803</id>
    <updated>2024-12-06T17:22:19Z</updated>
    <published>2024-12-06T09:51:19Z</published>
    <summary type="html">&lt;p&gt;I'm getting an error when I export a .lar file from the local liferay
  in order to import it on the liferay dev env.&lt;/p&gt;
&lt;p&gt;The error is: &lt;/p&gt;</summary>
    <dc:creator>Amr Khaled</dc:creator>
    <dc:date>2024-12-06T09:51:19Z</dc:date>
  </entry>
  <entry>
    <title>Error loading image via headless API in commerce</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122812191" />
    <author>
      <name>Markus Frietsch</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122812191</id>
    <updated>2024-08-05T14:34:07Z</updated>
    <published>2024-08-01T06:58:06Z</published>
    <summary type="html">&lt;p&gt;
  &lt;span style="font-size: 11.0pt;"&gt;
    &lt;span style="font-family: Aptos , sans-serif;"&gt;
      &lt;span style="font-family: Arial , sans-serif;"&gt;I am trying to use
        an existing image from the document library as an image in a
        commerce product. I use the following endpoint for this: &lt;/span&gt;
      &lt;span style="font-family: Arial , sans-serif;"&gt;
        &lt;a href="http://localhost:8080/o/headless-commerce-admin-catalog/v1.0/products/58558/images/by-url" style="color: rgb(70,120,134);text-decoration: underline;"&gt;http://localhost:8080/o/headless-commerce-admin-catalog/v1.0/products/58558/images/by-url&lt;/a&gt;&lt;/span&gt;
    &lt;/span&gt;
  &lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
  &lt;span style="font-size: 11.0pt;"&gt;
    &lt;span style="font-family: Aptos , sans-serif;"&gt;
      &lt;span style="font-family: Arial , sans-serif;"&gt;The process works
        fine and without errors if I have previously loaded the image
        manually into the document library. However, if I load the image
        into the document library via the API, the above call fails and
        the log shows: &lt;/span&gt;
    &lt;/span&gt;
  &lt;/span&gt;
&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 2024-08-01 06:40:50.103 WARN&amp;nbsp; [http-nio-8080-exec-4][ResponseProcessCookies:130] Invalid cookie header: "Set-Cookie: COOKIE_SUPPORT=true; Max-Age=31536000; Expires=Fri, 01 Aug 2025 06:40:50 GMT; Path=/; HttpOnly". Invalid 'expires' attribute: Fri, 01 Aug 2025 06:40:50 GMT

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 2024-08-01 06:40:50.106 WARN&amp;nbsp; [http-nio-8080-exec-4][ResponseProcessCookies:130] Invalid cookie header: "Set-Cookie: GUEST_LANGUAGE_ID=en_US; Max-Age=31536000; Expires=Fri, 01 Aug 2025 06:40:50 GMT; Path=/; HttpOnly". Invalid 'expires' attribute: Fri, 01 Aug 2025 06:40:50 GMT

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 2024-08-01 06:40:50.250 WARN&amp;nbsp; [http-nio-8080-exec-4][ResponseProcessCookies:130] Invalid cookie header: "Set-Cookie: COOKIE_SUPPORT=true; Max-Age=31536000; Expires=Fri, 01 Aug 2025 06:40:50 GMT; Path=/; HttpOnly". Invalid 'expires' attribute: Fri, 01 Aug 2025 06:40:50 GMT

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 2024-08-01 06:40:50.460 WARN&amp;nbsp; [liferay/adaptive_media_processor-4][AMMessageListener:79] Unable to scale file entry 59679 to match adaptive media configuration Preview-1000x0

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | com.liferay.adaptive.media.exception.AMRuntimeException$IOException: Unable to scale file entry 59679 to match adaptive media configuration Preview-1000x0

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.image.internal.scaler.AMDefaultImageScaler.scaleImage(AMDefaultImageScaler.java:60) ~[?:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.image.internal.processor.AMImageAMProcessor.process(AMImageAMProcessor.java:105) ~[?:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.image.internal.processor.AMImageAMProcessor.process(AMImageAMProcessor.java:63) ~[?:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.image.internal.processor.AMImageAMProcessor.process(AMImageAMProcessor.java:35) ~[?:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.web.internal.messaging.AMProcessorCommand$2.execute(AMProcessorCommand.java:34) ~[bundleFile:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.web.internal.messaging.AMMessageListener.doReceive(AMMessageListener.java:70) [bundleFile:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.portal.kernel.messaging.BaseMessageListener.doReceive(BaseMessageListener.java:39) [portal-kernel.jar:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.portal.kernel.messaging.BaseMessageListener.receive(BaseMessageListener.java:25) [portal-kernel.jar:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.portal.kernel.messaging.InvokerMessageListener.receive(InvokerMessageListener.java:62) [portal-kernel.jar:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.portal.messaging.internal.ParallelDestination$1.run(ParallelDestination.java:47) [bundleFile:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [?:1.8.0_412]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [?:1.8.0_412]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at java.lang.Thread.run(Thread.java:750) [?:1.8.0_412]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Caused by: com.liferay.adaptive.media.exception.AMRuntimeException$IOException: java.io.IOException: Unsupported image type

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.image.internal.processor.util.TiffOrientationTransformer.transform(TiffOrientationTransformer.java:46) ~[?:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.image.internal.scaler.AMDefaultImageScaler.scaleImage(AMDefaultImageScaler.java:40) ~[?:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ... 12 more

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Caused by: java.io.IOException: Unsupported image type

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.image.internal.util.RenderedImageUtil.readImage(RenderedImageUtil.java:105) ~[?:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.image.internal.processor.util.TiffOrientationTransformer.transform(TiffOrientationTransformer.java:43) ~[?:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; at com.liferay.adaptive.media.image.internal.scaler.AMDefaultImageScaler.scaleImage(AMDefaultImageScaler.java:40) ~[?:?]

liferay&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ... 12 more&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;
  &lt;span style="font-size: 11.0pt;"&gt;
    &lt;span style="font-family: Aptos , sans-serif;"&gt;
      &lt;span style="font-family: Arial , sans-serif;"&gt;The metadata of
        both files (the one loaded manually and the one loaded via the
        API are identical). I am using verion 7.4.3.GA120 (CE)&lt;/span&gt;
    &lt;/span&gt;
  &lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
  &lt;span style="font-size: 11.0pt;"&gt;
    &lt;span style="font-family: Aptos , sans-serif;"&gt;
      &lt;span style="font-family: Arial , sans-serif;"&gt;I am grateful for
        any advice.&lt;/span&gt;
    &lt;/span&gt;
  &lt;/span&gt;
&lt;/p&gt;
&lt;p&gt;
  &lt;span style="font-size: 11.0pt;"&gt;
    &lt;span style="font-family: Aptos , sans-serif;"&gt;
      &lt;span style="font-family: Arial , sans-serif;"&gt;Regards&lt;br&gt; Markus&amp;nbsp;&lt;/span&gt;
    &lt;/span&gt;
  &lt;/span&gt;
&lt;/p&gt;</summary>
    <dc:creator>Markus Frietsch</dc:creator>
    <dc:date>2024-08-01T06:58:06Z</dc:date>
  </entry>
  <entry>
    <title>RE: RE: Applications Menu Layout</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122711645" />
    <author>
      <name>Russell Bohl</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122711645</id>
    <updated>2024-06-13T13:42:45Z</updated>
    <published>2024-06-13T13:42:44Z</published>
    <summary type="html">&lt;p&gt;Have you tried clearing the cache or looking in incognito mode?&lt;/p&gt;</summary>
    <dc:creator>Russell Bohl</dc:creator>
    <dc:date>2024-06-13T13:42:44Z</dc:date>
  </entry>
  <entry>
    <title>RE: RE: Applications Menu Layout</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122701839" />
    <author>
      <name>Daniel Faigle</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122701839</id>
    <updated>2024-06-05T08:59:17Z</updated>
    <published>2024-06-05T07:46:58Z</published>
    <summary type="html">&lt;p&gt;Hello Russell,&lt;/p&gt;
&lt;p&gt;Thank you for replying. Yes, I tried to provide a screenshot,
  unfortunately I just noticed it doesn't display. I can't see the
  screenshot of your reply either. The version I used was liferay/portal:7.4.3.112-ga112.&lt;br&gt;
&lt;/p&gt;</summary>
    <dc:creator>Daniel Faigle</dc:creator>
    <dc:date>2024-06-05T07:46:58Z</dc:date>
  </entry>
  <entry>
    <title>RE: RE: Applications Menu Layout</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122700250" />
    <author>
      <name>Russell Bohl</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122700250</id>
    <updated>2024-06-04T13:47:39Z</updated>
    <published>2024-06-04T13:47:39Z</published>
    <summary type="html">&lt;p&gt;I can see from your &lt;a href="https://liferay.dev/ask/questions/all/shop-layout"&gt;other
  post&lt;/a&gt;&amp;nbsp;(Shop Layout) that you tried to post images, so maybe you did
  thaat here as well. I think there's a site bug preventing images from
  being posted, now that I think about it. I'll try to post a screenshot
  of my Applications menu just to test it:&lt;/p&gt;</summary>
    <dc:creator>Russell Bohl</dc:creator>
    <dc:date>2024-06-04T13:47:39Z</dc:date>
  </entry>
  <entry>
    <title>RE: Applications Menu Layout</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122700223" />
    <author>
      <name>Russell Bohl</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122700223</id>
    <updated>2024-06-05T07:30:29Z</updated>
    <published>2024-06-04T13:42:44Z</published>
    <summary type="html">&lt;p&gt;Hi Daniel, can you be more specific than 7.4.3? Also, maybe a
  screenshot? And just to check, did you clear the cache? UI/browser
  cache issues happen all the time to people who run different versions
  of Liferay frequently. Check in incognito/private, maybe.&lt;/p&gt;</summary>
    <dc:creator>Russell Bohl</dc:creator>
    <dc:date>2024-06-04T13:42:44Z</dc:date>
  </entry>
  <entry>
    <title>RE: RE: Adding images to the liferay commerce product using the headless API</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122688759" />
    <author>
      <name>Markus Frietsch</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122688759</id>
    <updated>2024-05-31T11:22:57Z</updated>
    <published>2024-05-31T09:57:42Z</published>
    <summary type="html">&lt;p&gt;Any idea how to do the same with attachments? I am struggling to add
  the filename and extension to it...&lt;/p&gt;</summary>
    <dc:creator>Markus Frietsch</dc:creator>
    <dc:date>2024-05-31T09:57:42Z</dc:date>
  </entry>
  <entry>
    <title>Applications Menu Layout</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122688727" />
    <author>
      <name>Daniel Faigle</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122688727</id>
    <updated>2024-05-31T11:22:40Z</updated>
    <published>2024-05-31T09:27:48Z</published>
    <summary type="html">&lt;p&gt;There seems to be a bug when you open the applications menu in
  version 7.4.3. The Layout of the strings don't fit in the overview.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</summary>
    <dc:creator>Daniel Faigle</dc:creator>
    <dc:date>2024-05-31T09:27:48Z</dc:date>
  </entry>
  <entry>
    <title>Shop Layout</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122688703" />
    <author>
      <name>Daniel Faigle</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122688703</id>
    <updated>2024-05-31T11:22:30Z</updated>
    <published>2024-05-31T09:20:38Z</published>
    <summary type="html">&lt;p&gt;In the version 7.4.3 the Layout of the products is bigger than in the
  older versions. Is there a way to change this back to the old view?&lt;/p&gt;
&lt;p&gt;version 7.4.3:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;version 7.3.7-ga8 :&lt;/p&gt;</summary>
    <dc:creator>Daniel Faigle</dc:creator>
    <dc:date>2024-05-31T09:20:38Z</dc:date>
  </entry>
  <entry>
    <title>Binding attachments to options</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122688680" />
    <author>
      <name>Daniel Faigle</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122688680</id>
    <updated>2024-05-31T11:22:17Z</updated>
    <published>2024-05-31T09:03:25Z</published>
    <summary type="html">&lt;p&gt;I am trying to bind attachment files to certain product options. For
  different options, I want to provide the fitting datasheet and 3D
  model as a downloadable attachment, but the feature when I edit a
  product with &lt;strong&gt;Media &amp;gt; Attachment &amp;gt; Options&lt;/strong&gt;
  doesn't work. Will there be a fix for this soon or is there another
  option for this?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</summary>
    <dc:creator>Daniel Faigle</dc:creator>
    <dc:date>2024-05-31T09:03:25Z</dc:date>
  </entry>
  <entry>
    <title>Configuration of file extensions for file upload via REST API</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122685275" />
    <author>
      <name>Markus Frietsch</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122685275</id>
    <updated>2024-05-30T06:42:17Z</updated>
    <published>2024-05-29T13:07:47Z</published>
    <summary type="html">&lt;p&gt;I am trying to attach a file of type .STP to a commerce product via
  the REST API using Liferay 7.4.3.112 CE GA112. For files with the
  extension .PDF, .JPG, etc. the file extensions are automatically
  recognized, for the .STP file the extension “.def” is automatically
  created. How can I set the desired file extension?&lt;/p&gt;</summary>
    <dc:creator>Markus Frietsch</dc:creator>
    <dc:date>2024-05-29T13:07:47Z</dc:date>
  </entry>
  <entry>
    <title>Adding images/attachments to liferay commerce using the headless API</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122672245" />
    <author>
      <name>Markus Frietsch</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122672245</id>
    <updated>2024-05-24T13:09:04Z</updated>
    <published>2024-05-23T20:57:22Z</published>
    <summary type="html">&lt;p&gt;I am trying to use the headless API to add images/attachments to a
  liferay commerce product. There are 2 API that are provided by liferay&amp;nbsp;&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;upload images using a url&amp;nbsp;&lt;/li&gt;
  &lt;li&gt;upload images by base64&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I am able to upload images using base64, but I have no luck using the
  url version. Can anyone provide an example of how the "src"
  property should look like for a local file?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</summary>
    <dc:creator>Markus Frietsch</dc:creator>
    <dc:date>2024-05-23T20:57:22Z</dc:date>
  </entry>
  <entry>
    <title>Commerce v.4.0 GA112 - Organisation Management Chart: how to activate?</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122617395" />
    <author>
      <name>Ivano Carrara</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122617395</id>
    <updated>2024-05-10T08:41:41Z</updated>
    <published>2024-05-10T08:41:41Z</published>
    <summary type="html">&lt;p&gt;The availability of the following feature has been announced but
  there is no option behind a release feature flag:&lt;/p&gt;
&lt;p&gt;---&amp;gt; Organisation Management Chart Enhancements&lt;/p&gt;
&lt;p&gt;Feature Status: Release  (but not found in System and Instance features)&lt;/p&gt;
&lt;p&gt;Is it possible to have information on the actual availability of the
  Organisation Management Chart?&lt;/p&gt;
&lt;p&gt;Does anyone know the feature.flag.COMMERCE-XXXXX or other option to
  set to true?&lt;/p&gt;
&lt;p&gt;I already tried the below without success:&lt;/p&gt;
&lt;p&gt;feature.flag.COMMERCE-12192=true&lt;br&gt;
  feature.flag.COMMERCE-13024=true&lt;br&gt; feature.flag.LPD-12192=true&lt;br&gt; feature.flag.LPD-10911=true&lt;/p&gt;
&lt;p&gt;Thank you in advance for any help.&lt;/p&gt;</summary>
    <dc:creator>Ivano Carrara</dc:creator>
    <dc:date>2024-05-10T08:41:41Z</dc:date>
  </entry>
  <entry>
    <title>RE: Commerce subscriptions products/services</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122333634" />
    <author>
      <name>Jeffrey Handa</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122333634</id>
    <updated>2024-01-10T20:44:37Z</updated>
    <published>2024-01-10T20:44:36Z</published>
    <summary type="html">&lt;p&gt;Yes, this can be achieved with Commerce.  If the payment method you
  select supports recurring billing you can configure a Payment
  Subscription as described here:  &lt;a
    href="https://learn.liferay.com/w/commerce/product-management/creating-and-managing-products/products/enabling-subscriptions-for-a-product"
    rel="noopener noreferrer" target="_blank"&gt;https://learn.liferay.com/w/commerce/product-management/creating-and-managing-products/products/enabling-subscriptions-for-a-product&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Of the provided payment methods, only PayPal supports recurring
    payments:  &lt;a
    href="https://learn.liferay.com/w/commerce/store-management/configuring-payment-methods/paypal"
    rel="noopener noreferrer" target="_blank"&gt;https://learn.liferay.com/w/commerce/store-management/configuring-payment-methods/paypal&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;To provision the user you might consider an Object Action on the
  Commerce Order as described here:  &lt;a
    href="https://learn.liferay.com/web/guest/w/dxp/building-applications/objects/creating-and-managing-objects/actions/defining-object-actions"
    rel="noopener noreferrer" target="_blank"&gt;https://learn.liferay.com/web/guest/w/dxp/building-applications/objects/creating-and-managing-objects/actions/defining-object-actions&lt;/a&gt;&lt;/p&gt;</summary>
    <dc:creator>Jeffrey Handa</dc:creator>
    <dc:date>2024-01-10T20:44:36Z</dc:date>
  </entry>
  <entry>
    <title>Commerce subscriptions products/services</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122333246" />
    <author>
      <name>Hennie de Villiers</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122333246</id>
    <updated>2024-01-10T15:40:33Z</updated>
    <published>2024-01-10T15:40:32Z</published>
    <summary type="html">&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;My use case is offering subscriptions to users to access certain
  services via web spaces/pages and I was wondering if one can use
  Commerce for users to select their service subscriptions and from there:&lt;/p&gt;
&lt;p&gt;1) provision the user by adding to a designated group to access the
  respective services, ideally automated.&lt;br&gt; 2) run a recurring billing
  cycle integrated to a payment system, or&lt;br&gt; 3) integrate/synchronise
  Commerce with a recurring billing system&lt;/p&gt;
&lt;p&gt;I will be using the 7.4 community edition Tomcat bundle.&lt;/p&gt;
&lt;p&gt;Any ideas or suggestions of how I can achieve this?&lt;/p&gt;</summary>
    <dc:creator>Hennie de Villiers</dc:creator>
    <dc:date>2024-01-10T15:40:32Z</dc:date>
  </entry>
  <entry>
    <title>Add Products in Commerce Order Object</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122284536" />
    <author>
      <name>yahlife nation</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122284536</id>
    <updated>2023-12-11T18:03:44Z</updated>
    <published>2023-12-11T16:11:08Z</published>
    <summary type="html">&lt;p&gt;Hi all,&lt;/p&gt;
&lt;p&gt;Liferay CE 7.4.3.101-ga101&lt;/p&gt;
&lt;p&gt;As you can see below in the attached images, I created a form custom
  object which &amp;quot;On After Add&amp;quot; creates a Commerce Order with
  order status &amp;quot;PENDING&amp;quot;, so I'm wondering how to add products
  in the created commerce order cause now the order total is $0. also
  the order is being created with status &amp;quot;COMPLETED&amp;quot; instead
  of configured &amp;quot;PENDING&amp;quot; as you can see below.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;
  &lt;img alt="" height="218" src="/documents/d/guest/screenshot-2023-12-11-at-17-43-54-general-general-orders-png?imagePreview=1"&gt;
&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;
  &lt;img alt="" height="218" src="/documents/d/guest/screenshot-2023-12-11-at-17-47-42-actions-actions-png?imagePreview=1"&gt;
&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;
  &lt;img alt="" height="218" src="/documents/d/guest/screenshot-2023-12-11-at-17-48-37-actions-actions-png?imagePreview=1"&gt;
&lt;/p&gt;</summary>
    <dc:creator>yahlife nation</dc:creator>
    <dc:date>2023-12-11T16:11:08Z</dc:date>
  </entry>
  <entry>
    <title>custom product type is not displaying using product publisher after created</title>
    <link rel="alternate" href="https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122250036" />
    <author>
      <name>Ashish Kumar</name>
    </author>
    <id>https://liferay.dev/en/c/message_boards/find_message?p_l_id=119785294&amp;messageId=122250036</id>
    <updated>2023-11-17T22:32:24Z</updated>
    <published>2023-11-17T06:48:13Z</published>
    <summary type="html">&lt;p&gt;I have followed Liferay commerce developer guide and created custom
  product type(&amp;quot;&lt;a
    href="https://learn.liferay.com/w/commerce/developer-guide/catalog/adding-a-new-product-type#adding-a-new-product-type"
    id="adding-a-new-product-type"&gt;Adding a New Product Type&lt;/a&gt;&amp;quot;)&lt;/p&gt;
&lt;p&gt;https://learn.liferay.com/w/commerce/developer-guide/catalog/adding-a-new-product-type&lt;/p&gt;
&lt;p&gt;It is succefully created and I am able to see my custom product type
  but if I create product using my custom product type, those specific
  products are not displaying. Can someone please tell me how can I
  display products created by custom product type  &lt;/p&gt;
&lt;p&gt;
  &lt;img alt="" src="/documents/d/guest/screenshot-from-2023-11-17-12-11-14-png?imagePreview=1"&gt;
&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Products created by my custom product type:-&lt;br&gt;
  &lt;img alt="" src="/documents/d/guest/screenshot-from-2023-11-17-12-14-45-png?imagePreview=1"&gt;
&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Other all products are displaying except Custom product type Products :-&lt;/p&gt;
&lt;p&gt;
  &lt;img alt="" src="/documents/d/guest/screenshot-from-2023-11-17-12-16-49-png?imagePreview=1"&gt;
  &lt;br&gt; See pagination says 10 entries but displaying only 6 entries
  because 4 products are created by custom product type and not displaying &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</summary>
    <dc:creator>Ashish Kumar</dc:creator>
    <dc:date>2023-11-17T06:48:13Z</dc:date>
  </entry>
</feed>
