-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: prepared 1.5.0-SNAPSHOT * chore: migration to iom 4.4.0 + postgres 15 (#91) (#93) * migrated to iom 4.4.0 (#91) * use postgres 15, removed 2 obsolte image properties in project properties (#91) * cleanup (#91) * use WildFly 27.0.1.Final #(91) * ci: fix ADO sync race condition * feat: enhance view of custom positions view (#94) * chore: formatting in 008_ProductImport.sql * added product images for demo purposes * moved product images into dedicated folder + links to knowledge base in sql-config * additional configs * chore: upgrade to IOM 4.4.4 (#85475) * Update README.md * Update README.md * chore: use TFW release 4.5.0 (#82507) * chore: uses iom 4.5.0 * feat: added custom information to be dispayed on login (#99) * fix: project description is shown now too, if built locally (#85749) (#100) Co-authored-by: Andreas Herold <[email protected]> * chore: iom 4.5.1 + dbaccount 1.7.0 (#85901) * chore: use TFW 5.1, remove deprecations for tfw12 (#85544) (#101) * chore: remove deprecations from TFW#12 (#85544) * chore: remove deprecations from TFW#12 (#85544) * test: switch to TFW 5.1.0 --------- Co-authored-by: Götz Tänzer <[email protected]> * feature/opentrans example transformer (#102) * feat: add example transformer for ICM product data, openTRANS * feat: added config for example transformer for ICM product data * feat: added config for example transformer for openTrans dispatches pulled from ftp + some other adjustments * feat: both transformers are working + example files --------- Co-authored-by: Philipp Borchert <[email protected]> * chore: based on IOM 4.7.0 (#81800 ) --------- Co-authored-by: Götz Tänzer <[email protected]> Co-authored-by: Andreas Herold <[email protected]> Co-authored-by: Andreas Herold <[email protected]> Co-authored-by: Philipp Borchert <[email protected]>
- Loading branch information
1 parent
2942360
commit f820497
Showing
89 changed files
with
49,097 additions
and
351 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/main/java/com/intershop/oms/blueprint/approval/CashOnDeliveryApprovalDecisionBean.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/main/java/com/intershop/oms/blueprint/approval/RmaApprovalDecisionBean.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
src/main/java/com/intershop/oms/blueprint/icmtransformer/BasicDataCSV.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package com.intershop.oms.blueprint.icmtransformer; | ||
|
||
import com.intershop.oms.blueprint.upload.transform.CSVTable; | ||
import org.apache.commons.lang3.StringUtils; | ||
|
||
public enum BasicDataCSV implements CSVTable | ||
{ | ||
supplierArticleNo(StringUtils.EMPTY), | ||
manufacturer("MyTrustedManufacturer"), | ||
manufacturerArticleNo(StringUtils.EMPTY), | ||
ISBN(StringUtils.EMPTY), | ||
EAN(StringUtils.EMPTY), | ||
articleName(StringUtils.EMPTY), | ||
length(StringUtils.EMPTY), | ||
height(StringUtils.EMPTY), | ||
width(StringUtils.EMPTY), | ||
weight(StringUtils.EMPTY), | ||
assortmentName("Dummy"), | ||
assortmentIdentifier("Dummy"), | ||
deliveryForm(StringUtils.EMPTY), | ||
customsTariffNo(StringUtils.EMPTY), | ||
parentSupplierArticleNo(StringUtils.EMPTY), | ||
articleForm(StringUtils.EMPTY), | ||
immaterialUid(StringUtils.EMPTY), | ||
articleLanguage(StringUtils.EMPTY), | ||
supplierSalesCode(StringUtils.EMPTY), | ||
supplierArticleIdentifier(StringUtils.EMPTY), | ||
articleType("1"), | ||
edition(StringUtils.EMPTY), | ||
packagingUnit(StringUtils.EMPTY), | ||
packagingUnitValue(StringUtils.EMPTY); | ||
|
||
private String defaultValue; | ||
|
||
private BasicDataCSV(String defaultValue) | ||
{ | ||
this.defaultValue = defaultValue; | ||
} | ||
|
||
@Override | ||
public String getDefaultValue() | ||
{ | ||
return defaultValue; | ||
} | ||
} |
Oops, something went wrong.