All Releases
February 27, 2025 February 20, 2025 February 13, 2025 February 6, 2025 January 30, 2025 January 23, 2025 January 16, 2025 January 9, 2025 January 2, 2025 December 26, 2024 December 19, 2024 December 12, 2024 November 28, 2024 November 21, 2024 November 14, 2024 November 7, 2024 October 31, 2024 October 24, 2024 October 17, 2024 October 10, 2024 October 3, 2024 September 26, 2024 September 19, 2024 September 12, 2024 September 5, 2024 August 29, 2024 August 22, 2024 August 15, 2024 August 8, 2024 August 1, 2024 July 25, 2024 July 18, 2024 July 11, 2024 June 27, 2024 June 20, 2024 June 13, 2024 June 6, 2024 May 30, 2024 May 23, 2024 May 16, 2024 May 9, 2024 May 2, 2024 April 25, 2024 April 18, 2024 April 11, 2024 April 4, 2024 March 28, 2024 March 21, 2024 March 14, 2024 March 7, 2024 February 29, 2024 February 22, 2024 February 15, 2024 February 8, 2024 February 1, 2024 January 25, 2024 January 18, 2024 January 11, 2024 January 4, 2024 December 21, 2023 December 14, 2023 December 7, 2023 November 30, 2023 November 16, 2023 November 9, 2023 November 2, 2023 October 26, 2023 October 19, 2023 October 12, 2023 October 5, 2023 September 28, 2023 September 21, 2023 September 14, 2023 September 7, 2023 August 31, 2023 August 24, 2023 August 17, 2023 August 10, 2023 August 3, 2023 July 27, 2023 July 20, 2023 July 13, 2023 July 6, 2023 June 29, 2023 June 22, 2023 June 15, 2023 June 8, 2023 June 1, 2023 May 25, 2023 May 18, 2023 May 11, 2023 May 4, 2023 April 27, 2023 April 20, 2023 April 13, 2023 April 6, 2023 March 30, 2023 March 23, 2023 March 16, 2023 March 9, 2023 March 2, 2023 February 23, 2023 February 16, 2023 February 9, 2023 February 2, 2023 January, 2023 December, 2022 November, 2022 October, 2022 September, 2022 August, 2022 July, 2022 June, 2022 May, 2022 April, 2022 March, 2022 February, 2022 January, 2022 December, 2021 November, 2021 October, 2021 September, 2021 August, 2021 July, 2021 June, 2021 May, 2021 April, 2021 March, 2021 February, 2021 January, 2021 December, 2020
View all releases

December 19, 2024 release notes

Highlights

Customer Portal

Split ERP quotes into a separate screen

You now have the option to split ERP quotes into a different screen in the Customer Portal so that they’re separate from the Orders screen. This is not required, but you have the ability to enable the setting in the Operations Portal.

See how you can turn on this setting by watching the video:

https://youtu.be/3SdND3nIg2g

Mobile App

“My Chats” feature added to the Employee Mobile App

When a customer comment is added to a Ticket, it will create a chat thread under the new “My Chat” section in the Employee Mobile App. By clicking on the chat thread, you’ll be taken to the customer comments under the Ticket where you’ll be able to read all comments and respond directly. This feature will allow you to organize and stay on top of customer comments, ensuring that no comment is left unseen. 

Check out the images below, or download the app to see for yourself! If you haven’t downloaded the mobile app yet, head to the App Store or Google Play, search “Kodaris Employee Portal”, and download the app with the Kodaris logo. To log in, enter your company’s domain/URL, your username, and your password. Your credentials will be the same as what you use to log into the desktop version.

1164_Release_Notes___Mobile_App__500_x_1000_px___1_.png

1164_Release_Notes___Kodaris_Mobile_App__500_x_1000_px___500_x_500_px_.png

1164_Release_Notes___Kodaris_Mobile_App__500_x_1000_px___500_x_500_px___1_.png

Tickets

  1. KOD-9680: Zip Code Table - Shipping Table Update
    • Tests
    • Case 1
      • Here we are to test basic crud endpoints for create/read/update/delete.
      • Use following endpoints to create a PostalCodeData and read/edit/delete:
        • /api/system/postalCodeData/{postalCodeDataID}
      • And this one to create:
        • POST -> /api/system/postalCodeData
      • Example of payload for creation:
        • {
        • "code": "KOD-968",
        • "postalCode": "10001",
        • "city": "New York",
        • "stateCode": "NY",
        • "imprecise": false,
        • "educationCollegeOrAbove": 65.12345,
        • "raceWhite": 50.12345,
        • "taxJurisdiction1": "NYC",
        • "user1": "test",
        • "warehouseID": 13,
        • "countryID": 150
        • }
      • Note: Code is unique - if you try to generate an empty code system will autogenerates one.
      • If you try to create a record with an existing code, you will get 'PostalCodeData code already exists'.
      • Use /api/system/postalCodeData/list endpoint to get the records.
      • In here you can just pass size and page and it will find all. If not, you could filter by postalCode / code / warehouseID / postalCodeDataID like this:
        • {
        • "page": 0,
        • "size": 10,
        • "filterFields": [
        • {
        • "name": "postalCodeDataID",
        • "value": "1",
        • "operation": "IS"
        • }
        • ]
        • }
    • Case 2
      • Use following export to get the csv file: /api/system/postalCodeData/export.
      • That works as any other export in the system where you can filter the records to export or limit it.
      • For example:
        • {
        • "page": 0,
        • "size": 10,
        • "filterFields": [
        • {
        • "name": "postalCodeDataID",
        • "value": "1",
        • "operation": "IS"
        • }
        • ]
        • }
    • Case 3
      • For import we can use any of these endpoints test until we have the UX screen.
      • Or also, you could use general import from UX and then wait for the FixeMinuteBulkJob to run:
      • Example of payload used in csvFile or in string:
        • "code","postalCode","countryCode","warehouseCode","county","zcta","homeValue"
        • "US-1001","1001","US","roldan-warehouse","Peru",true,"1523.21"
      • countryCode will be used for generating the relationship with Country entity.
      • warehouseCode will be used for generating the relationship with Warehouse entity.
      • Note: Code is unique. The default mapping scripts are defined lookupFieldName by code but you can also do a lookupFieldName by ‘postalCodeDataID’.
      • If code is not sent, the code will be generated with a number generator
      • So, you can send the code if you want or let the system generates it.
  2. KOD-17736: Master Order Budget V2 Customer API
    • Tests
    • Case 1
      • Check the new customer companyAddress Budget endpoints:
        • POST: /api/account/companyAddressBudget/{companyAddressID}
        • GET: /api/account/companyAddressBudget/{companyAddressID}/{companyBudgetID}
        • PATCH: /api/account/companyAddressBudget/{companyAddressID}/{companyBudgetID}
        • POST: /api/account/companyAddressBudget/{companyAddressID}/list}
        • DELETE: /api/account/companyAddressBudget/{companyAddressID}/{companyBudgetID}
  3. KOD-17968: Quote notes
    • Regression Tests
    • Case 1
      • On Orders, Quotes and Cash Quotes tabs make sure those tabs are not broken.
    • Case 2
      • Set enableNewOrderInternalNotes setting value to 0.
      • On following tabs:
        • Order Internal Comments
        • Quote Comments
        • Cash Quote Internal Comments
      • Make sure that we’re using old flow for taking order notes.
      • Order notes should be taken from api/system/order/search/{orderID}.
      • pi/system/quote/search/{orderID}.
    • Case 3
      • With the same setup as for the Case 2 check adding a note. Make sure that on wedding the same PATCH endpoints are used and new note is passed in the payload in quoteNotes field.
      • Make sure after adding new note appeared within the comments list.
    • Tests
    • Case 4
      • Set enableNewOrderInternalNotes setting value to 1.
      • On following tabs:
        • Order Internal Comments
        • Quote Comments
        • Cash Quote InternalComments
      • Make sure we’re using new endpoints to list notes:
      • On Order Internal Comments we’re using api/system/order/{orderID}/note/list.
      • On Quote Comments we’re using api/system/quote/{orderID}/note/list.
      • On Cash Quote Internal Comments we’re using api/system/order/{orderID}/note/list.
    • Case 5
      • With the same setup as from the Case 4:
      • Make sure we’re using new endpoints to add new note.
      • On Order Internal Comments we’re using POST api/system/order/{orderID}/note.
      • On Quote Comments we’re using POST api/system/quote/{orderID}/note.
      • On Cash Quote Internal Comments we’re using POST api/system/order/{orderID}/note.
    • Case 6
      • Set enableNewOrderInternalNotes setting value to 1.
      • On Quote Comments make sure you see actual Comment Count at the top when page is loaded initially.
      • Add a new comment. Reload page. Make sure Comment Count number is updated at the top nav.
  4. KOD-20612: sync mapping scripts
  5. KOD-21036: Implementation - Taxes
  6. KOD-21340: Parser Requested Enhancements
  7. KOD-21487: Freight / Delivery Fee Assessment on Checkout
  8. KOD-22271: Importing Company Group Catalogs and Products updates - Code supported
    • Regression Tests
    • Case 1
      • Imports by companyProductCategoryID and externalID should still be working.
      • Make sure you have the lookupFieldName with ‘companyProductCategoryID’ to identify the catalog.
      • Do an import an update an existing catalog using the ID in the column.
    • Case 2
      • Make sure you have the lookupParentFieldName with ‘companyProductCategoryID’ to identify the catalog.
      • Validate that the product is added under the specific companyProductCAtegory ID specified.
    • Tests
    • Case 1
      • Here you can change mapping to use lookupFieldName = ‘code’ or if not, just don’t send the ‘companyProductCategoryID’ neither ‘externalID’ and it will fallback to do the lookup by code.
      • Since code is not unique, you need to identify the company catalog by adding the companyCode column as well.
      • Do an update or create and validate it works fine.
      • Example of csv File:
      • "code","companyCode","name"
    • Case 2
      • Here you can change mapping to use lookupFieldName = ‘code’ or if not, just don’t send the ‘companyProductCategoryID’ neither ‘externalID’ and it will fallback to do the lookup by code.
      • Since code is not unique, you need to identify the company Address catalog by adding the companyAddressCode column as well.
      • Do an update or create and validate it works fine.
      • Example of csv file:
      • "code","companyAddressCode","name"
    • Case 3
      • Here you can change mapping to use lookupFieldName = ‘code’ or if not, just don’t send the ‘companyProductCategoryID’ neither ‘externalID’ and it will fallback to do the lookup by code.
      • Since code is not unique, you need to identify the Customer Group catalog by adding the customerGroupCode column as well.
      • Do an update or create and validate it works fine.
      • Example of csv file:
      • "code","customerGroupCode","name"
    • Case 4
      • Here you can change mapping to use lookupFieldName = ‘code’ or if not, just don’t send the ‘companyProductCategoryID’ neither ‘externalID’ and it will fallback to do the lookup by code.
      • You can add products to any catalog (Company catalog, company Address catalog, customer group catalog and customer catalog)
      • For adding to a NON customer catalog you need code + one of the following columns:
      • 'companyCode', ‘companyAddressCode’, ‘customerGroupCode’
      • Validate that you can add product to any of these catalogs.
      • Example of csv file:
      • "code","companyCode","productCode"
    • Case 4
      • Here you can change mapping to use lookupFieldName = ‘code’ or if not, just don’t send the ‘companyProductCategoryID’ neither ‘externalID’ and it will fallback to do the lookup by code.
      • You can add products to a customerCatalog by specifying code + companyCode + userName (Username of the customer).
      • Then, validate that the product is being added to the customer catalog and NOT to the company catalog (It can happen there exist 2 catalogs under the same code + companyCode. The difference will be one of them is a customer catalog)
      • Example of csv File:
      • "code","companyCode","productCode","userName"
  9. KOD-22273: FTP Rollout
  10. KOD-22377: Add robots directive to test site
  11. KOD-22465: Custom PIM Import
  12. KOD-22497: Create settings table for related products
    • Tests
    • Case 1
      • Test related product setting endpoints on swagger side:
      • GET: /api/system/product/relatedProduct/{relatedProductID}/settings
      • POST: /api/system/product/relatedProduct/{relatedProductID}/setting
      • POST: /api/system/product/relatedProduct/{relatedProductID}/settings
      • PATCH: /api/system/product/relatedProduct/{relatedProductID}/setting/\{code}
      • DELETE: /api/system/product/relatedProduct/{relatedProductID}/setting/\{code}
  13. KOD-22517: Implementation - Order/Invoice templates
  14. KOD-22536: Make orderTypeDetails field filterable
    • Tests
    • Case 1
      • Check endpoint: /api/system/order/list whether the field: orderTypeDetails is filterable.
      • Example =>
        • "filterFields": [
        • {
        • "name": "orderTypeDetails",
        • "value": "Cash Quote",
        • "operation": "IS",
        • "not": false,
        • "and": false
        • }
        • ]
  15. KOD-22658: Business Intelligence
  16. KOD-22677: Implementation - Videos
  17. KOD-22726: Create settings for activity fields - UX
    • Regression Tests
    • Case 1
      • Make sure that the /settings and /activities pages are working as before. All necessary information is displayed without errors.
    • Tests
    • Case 1
      • Add values to the departmentTicketVaues, projectTicketValues, teamTicketValues settings on the `/settings` page.
      • Go to the activity page.
      • Make sure that the text input fields have changed to dropdown.
      • Make sure that the data that we added via the settings page is available in the dropdown.
      • Make sure that the data is saved without errors.
  18. KOD-22761: integration updates
  19. KOD-22766: Build out blocking and alerts for employees on Fraud
  20. KOD-22780: Add the Ability to Refresh Informational Cards via a refresh button click
    • Regression Tests
    • Case 1
      • The information in the table should also be updated after refresh button click.
    • Tests
    • Case 1
      • Go to the Operations portal -> Events -> Status tab. When clicking the refresh button, in addition to updating the table, the informational cards above the table (records queued, records processed, records failed) should also be updated.
  21. KOD-22819: Create new Setting and add it to employee configuration endpoint
  22. KOD-22838: Add Find a Dealer layout to content site
    • Regression Tests
    • Case 1
      • Check that the saved-for-later, account-retrieval pages open correctly on the website.
    • Tests
    • Case 1
      • Check that the find-a-dealer page opens correctly.
      • Check that there are no errors in the console related to this page.
      • Check that the page layout looks correct.
  23. KOD-22869: Kodaris - Update settings type for all types of Jobs
    • Tests
    • Case 1
      • Navigate to the Operations Portal - Scheduler View and make sure that the changes made in txt below show up and that the Scheduler names match up to jobs.
      • Jobs can be found in Settings → for some of the settings, they should equal a scheduler name EX: FiveMinuteIntervalJob.
  24. KOD-22893: Sync Inventory and pricing to Kodaris
  25. KOD-22894: Sync Inventory for Products
  26. KOD-22902: Generate Tracking Numbers for DQ created order Shipments
    • Regression Tests
    • Case 1
      • With setting enableGeneratedOrderShipmentTrackingNumbers disabled, do not send the trackingNumber in /api/system/orderShipment/addOrUpdateByExternalOrderNumber and make sure the value is not autogenerated.
    • Tests
    • Case 1
      • With setting enableGeneratedOrderShipmentTrackingNumbers enabled, use following endpoint /api/system/orderShipment/addOrUpdateByExternalOrderNumber to create an OrderShipment and make sure the trackingNumber is autogenerated (Do not send the trackingNumber field)
      • Example of request:
        • {
        • "code": "CODE_1000",
        • "externalOrderNumber": "7878-87",
        • "status": "ADDED",
        • "active": true
        • }
    • Case 2
      • With setting enableGeneratedOrderShipmentTrackingNumbers enabled, use following endpoint: /api/system/orderShipment/addOrUpdateByExternalOrderNumber to create an OrderShipment but send a value in the payload.
      • That value should remain after inserting the record.
      • Example of payload:
        • {
        • "code": "CODE_1000",
        • "externalOrderNumber": "7878-87",
        • "status": "ADDED",
        • "active": true,
        • "trackingNumber": "ABC1234"
        • }
    • Case 3
      • With setting enableGeneratedOrderShipmentTrackingNumbers enabled, use following endpoint: /api/system/integration/dq/webhook/deliveryEvent to create an Trip/Delivery/OrderShipment and make sure the trackingNumber is generated there as well.
      • This will create a event and then it will actually be processed in the FiveMinuteIntervalJob.
      • Example of payload:
        • {
        • "deliveryID": "code_9823sd",
        • "orderNumber": "123123132-1",
        • "stopNumber": 1
        • }
      • The orderNumber should have to be a valid externalOrderNumber.
  27. KOD-22926: Order Detail Updates
    • Tests
    • Case 1
      • Operations portal => Order Details.
      • Generate email.
      • Expected result:
      • There is no Discount column.
      • Credit terms are pulled from order.company.termstypeDescription.
    • Case 2
      • Customer portal => Order Details.
      • Expected result:
      • There is no Discount column.
      • Credit terms are pulled from order.company.termstypeDescription.
  28. KOD-22929: PIM Explore - Managing Product Data via External PIM Integrations
  29. KOD-22941: Update Add Company Flow in Employee App
  30. KOD-22952: Display links to vendor resources
  31. KOD-22994: Update Invoice Total when There's a Downpayment
  32. KOD-22997: Create Quote notes endpoints
    • Tests
    • Case 1
      • Check whether exist setting: enableNewOrderInternalNotes.
      • Check whether current new setting return on employee /config endpoint.
    • Case 2
      • Check new quote note swagger endpoints.
      • Internal Comment endpoints:
        • POST /api/system/quote/{quoteID}/note
        • GET /api/system/quote/{quoteID}/note/{noteID}
        • PUT /api/system/quote/{quoteID}/note/{noteID}
        • DELETE /api/system/quote/{quoteID}/note/{noteID}
        • POST /api/system/quote/{quoteID}/note/list
  33. KOD-23007: Implementation
  34. KOD-23016: Fix CMS link on homepage panel moving around the page
  35. KOD-23017: Add ERP Quotes Screen to Customer Portal
    • Regression Tests
    • Case 1
      • Verify the Contract Quotes screen.
      • Verify the Quotes screen.
      • Test the functionality of the table on both screens.
    • Tests
    • Case 1
      • Log in to the website.
      • Click on ‘manage account’.
      • Verify if the Quote screen is visible in the navigation menu.
      • If the Quote screen is not visible:
      • Open the operations portal.
      • Navigate to the Settings screen.
      • Update the customerERPQuotesEnabled field to 1.
      • Verify the Quote screen is now displayed in the navigation menu.
      • Ensure its functionality is identical to the Order screen.
      • Validate that the displayed data is filtered correctly, showing only records where extra1 = Quote.
    • Case 2
      • Check for the presence of the Contract Quotes screen.
      • Confirm that the Contract Quotes screen has retained all features and functionality from the previous Quote screen.
    • Case 3
      • Check for the presence of the Orders screen.
      • Verify that the Orders screen does not contain ERP quotes when the customerERPQuotesEnabled setting is set to 1.
  36. KOD-23022: Order Taxes Based on SASST
  37. KOD-23031: Employee App - My Chats feature
    • Regression Tests
    • Case 1
      • Test all screen next screens, they should be working correctly.
      • Note: for every screen test editing / adding / updating data in all possible fields.
        • Company data grid
        • Company details
        • Assignees
        • Customers
        • Orders
        • Tickets
        • Activity data grid
        • Details
        • Customer comments
        • Internal comments
        • Assignees
        • Ticket details
        • Details
        • Customer comments
        • Internal comments
        • Assignees
        • Expenses Reporting
        • Details
    • Tests
    • Case 1
      • Note: for chats to be found, you should write 1-2 comments under the ticket by yourself.
      • Go into “My Chats” screen.
      • If no chats found, you should see message "No chats were found."
      • If chats are found, you should see them.
    • Case 2
      • When clicking on the chat, you should be taken to ticket details → Customer comments section.
    • Case 3
      • On comments screen you should see the text "Add a comment..."
  38. KOD-23032: Direct Ship Delivery Fees
  39. KOD-23033: Custom Homepage - Title above Markets update
    • Regression Tests
    • Case 1
      • Check that the header title block is displayed correctly.
      • Check that the text in the header title can be changed and is displayed correctly.
    • Tests
    • Case 1
      • Check that the information in the header title is located on 1 line.
      • Check that the blue underline under the header title is the same width as the text.
  40. KOD-23035: Custom homepage - Home Content Tiles update
    • Regression Tests
    • Case 1
      • Check that the Content Tiles layout looks correct.
      • Check that there are no errors related to Content Tiles in the console.
      • Check that the Content Tiles functionality works correctly (delete Tile, edit, etc.)
    • Tests
    • Case 1
      • Check that the bottom border of the “Content Tiles” block coincides with the bottom border of the subcategories block (the block on the left).
      • Check that Content Tiles functionality can be added for Tile Main Text and Additional Text.
      • Check that the Tile layout with Main Text and Additional Text are displayed correctly.
  41. KOD-23038: Custom homepage - Top Brands image alignment
    • Regression Tests
    • Case 1
      • Check that the layout of the Top Brands block is displayed correctly (on different devices).
    • Tests
    • Case 1
      • Check that each brand image is centered.
  42. KOD-23045: ERP Configuration and release order to the ERP
  43. KOD-23046: Slider - Apply auto loop logic
  44. KOD-23058: Piyovi Shipping Integration
  45. KOD-23059: Get shipping rates from any shipping engine
  46. KOD-23063: Email Sending
  47. KOD-23067: Implementation - Set Card Payment System
  48. KOD-23069: Search Rule Validator
    • Regression Tests
    • Case 1
      • Navigate through SearchRule screens and make sure you can create/edit any SearchRule.
    • Tests
    • Case 1
      • Enable setting jobInactivateSearchRules to be ran during the DailyJob.
      • New subscriptionList where employees can subscribe: InvalidSearchRulesAlert.
      • The idea for the testing is generate some wrong redirect URLs for SearchRule and those SearchRules might be updated with status ‘INVALID’ and mark us Inactive.
      • For testing:
      • Create a preProcessing SearchRule with action = categoryRedirect and actionData= anyInvalidCode.
      • Create another preProcessing searchRule with action = categoryRedirect and actionData = validCode but do not set any products on it (Just a category without products).
      • Create a preProcessing SearchRule with action = urlRedirect and actionData = any invalid URL without the first part (For example, /api/user/product/invalidCode).
      • (This needs to be created from swagger):
        • {
        • "query": "mouse",
        • "searchType": "product",
        • "minimumMatch": "1",
        • "active": true,
        • "pattern": "matchSearchText",
        • "action": "urlRedirect",
        • "actionData": "/api/user/product/invalidCode",
        • "ruleType": "preProcessing"
        • }
      • Wait until job runs and make sure those searchRules were inactivated and status changed as well.
      • If there were subscriptions to the subscription list, an email with the report should send it to you.
      • In swagger using /api/system/searchRule/list endpoint you can gett all searchRules that are inactive using this payload:
        • {
        • "page": 0,
        • "size": 10,
        • "sortBy": "id",
        • "filterFields": [
        • {
        • "name": "active",
        • "value": false,
        • "operation": "IS"
        • }
        • ]
        • }
      • For the one SearchRule that changed the status but was not inactivated, you might have to filter by searchRuleID or just get ALL in the list endpoint and find the searchRule (Since you cannot filter by status yet).
  49. KOD-23079: Implementation - Check on Sync Issue
  50. KOD-23105: Issue With Call for Availability
    • Tests
    • Case 1
      • For this test, we will go to the Products screen.
      • Inside the In Stock section, if the product has no inventory on a certain warehouse, you should see the message “Call for Availability”. If there is stock, you should see the number being displayed correctly with the formatting with a comma every three digits.
  51. KOD-23106: Thumbnail missing from recently viewed Products
  52. KOD-23111: Zip Code Table
    • Regression Tests
    • Case 1
      • Make sure the operations portal works with no issues. You should be able to check different tabs with no issues (if you have permissions for those tabs).
    • Case 2
      • Make sure left nav is not broken and works with no issues.
    • Tests
    • Case 1
      • Make sure new Tab Postal Codes is added under System to the left nav.
    • Case 2
      • Go to the Postal Codes tab. Make sure in the header you can see Postal Codes header.
      • Make sure this tab contains the grid.
      • You should be able to add new postal code, to edit existent postal code record and to delete postal code record.
    • Case 3
      • Within the grid make sure you can add/remove columns from the Postal Codes grid.
  53. KOD-23116: Configure email to entire website
  54. KOD-23118: Add button to save pricing record to ERP
    • Regression Tests
    • Case 1
      • Make sure the pricing page still loads correctly.
    • Tests
    • Case 1
      • Go to the Pricing → click into a price → notice up top save to ERPbutton → click the button → upon success you should see a snacker saving ‘Saved to ERP’ → if unsuccessful, you should see an error dialog pop up with the field and value of the errors.
    • Case 2
      • After you saved the pricing to the ERP, to test the update part, make sure the pricing record has trendCompiledSettings and then click the save to ERP button again and it should save with that snacker saying ‘Saved to ERP’.
  55. KOD-23121: Update Font Site-wide
    • Regression Tests
    • Case 1
      • Make sure the pages load without errors and the content is visible.
    • Case 2
      • Confirm that the font for regular text on the pages is "Inter".
    • Tests
    • Case 1
      • Confirm that the heading tags on the pages use the "Oswald" font.
  56. KOD-23123: Implementation - Remove old gifs
  57. KOD-23132: Create new discount endpoints for the order, purchase order, vendor invoice
  58. KOD-23135: Kodaris.com - Add PIM page to platform tab
  59. KOD-23136: Adding/updating customerTrackingNumber field to the cart
    • Regression Tests
    • Case 1
      • You should continue updating other fields in the cart PATCH endpoint.
      • /api/user/cart
      • Edit any of the following fields:
      • "notes", "purchaseOrder", "deliveryTime", "deliveryDate", "itemShipmentPreference"
      • Example of payload:
        • {
        • "notes": "Test add note"
        • }
      • In the UX, you can edit notes in the cart.
      • You can validate if it was updated by checking the order field in the operations portal.
    • Tests
    • Case 1
      • Use cart PATCH endpoint for editing customerTrackingNumber: /api/user/cart.
      • Example payload:
        • {
        • "customerTrackingNumber": "1234XCFJTR"
        • }
      • You can validate the Order in the operations portal if it was successful.
  60. KOD-23138: Implementation - Update Repo
  61. KOD-23139: Mobile App - Warehouse issue on inventory screen
  62. KOD-23140: Add manageAddOnsWithOrderInsert
    • Tests
    • Case 1
      • Verify if the new setting "inforCSDManageAddonsWithOrderInsert" is present.
  63. KOD-23141: Warehouse ID not saved on company catalog
  64. KOD-23142: Webform Fix Two
  65. KOD-23143: Implementation - Building charts
  66. KOD-23145: Implementation - Configure Payment Portal
  67. KOD-23146: Implementation - Configure Countries & States
  68. KOD-23147: Implementation - Parser Updates
  69. KOD-23151: Invoiced Column on Orders Screen not Populating
  70. KOD-23152: Add customer file export endpoint
    • Tests
    • Case 1
      • Available endpoints to export to csv/ndjson file types:
      • /api/system/customerFile/export and /api/system/customerFile/exportAsNdjson
      • It works as any other export where you can pass Search Params to do some filter.
      • You can put a limit in the query to not full export all db if needed.
      • Example:
        • {
        • "limit": 2
        • }
      • If not, this is another kind of params where you specify the return field and some filters by id:
        • {
        • "page": 0,
        • "size": 10,
        • "queryFields": [
        • {
        • "name": "customerFileID",
        • "values": ["1","2","3","4","5","6","7"],
        • "operation": "IN"
        • }
        • ],
        • "fieldsToReturn": [
        • "customerFileID",
        • "lastModified",
        • "path"
        • ]
        • }
  71. KOD-23155: Implementation - Pricing examples for pricing configuration
  72. KOD-23159: Add ability to filter category settings on server-side API
  73. KOD-23162: Add customer branded DDA app flavor
  74. KOD-23166: Implementation - Addons
  75. KOD-23167: Order Permission Issues
    • Regression Tests
    • Case 1
      • Make sure that a separate order page is available and working as expected.
    • Tests
    • Case 1
      • Go to the separate order page on the operations portal.
      • Make sure that the fraudData/list request is executed only for the superuser or administrator roles.
      • Make sure that the popup described in the task does not appear.
  76. KOD-23171: Display Aging Days Next to Periods
  77. KOD-23174: AP Automation - Automatically Match Invoice Lines to PO Addons
  78. KOD-23175: Update Language in Webform
    • Regression Tests
    • Case 1
      • Navigate to: /s/content/ccpa.
      • Complete all required fields in the form.
      • Click the “Submit” button.
      • Confirm that the submitted form is received as an email.
    • Tests
    • Case 1
      • Please log into your account here.
      • We will send you a link to your email address with a token you will be required to use when you login.
      • Navigate to /s/content/ccpa.
      • For each request type, verify that the text has been removed.
  79. KOD-23183: AP Automation - Collect Canadian taxes, payment terms, and receiver address fields
  80. KOD-23188: Implementation - Category page updates
  81. KOD-23193: Implementation - Test taxes
  82. KOD-23192: Implementation - Pull addons
  83. KOD-23200: Implementation - Mobile Careers page
  84. KOD-23217: Implementation - Pull addons
  85. KOD-23224: Update Customer files export endpoint
  86. KOD-23227: Implementation - Price Discrepancy
    • Regression Tests
    • Case 1
      • Ensure pricing on customer side is not crashing and works as expected.
    • Case 2
      • Test on customer site where warehouse record is preferred and ensure correct price.
  87. KOD-23226: Create settings table for related products - UX
  88. KOD-23230: Implementation - Update App Listings