Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat : Refactored partasplanned and SingleLevelBoMAsPlanned maven module to support multi versions #143

1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Removed maven modules serial-part-typization and assembly-part-relationship for update.
- New maven module for part type information submodel support.
- Refactored/Updated batch maven module to support multi version.
- Refactored/Updated PartAsPlanned and SingleLevelBoMAsPlanned maven module to support multi version.

## [2.3.6] - 2024-03-06
### Fixed
Expand Down
5 changes: 0 additions & 5 deletions modules/sde-submodules/part-as-planned/part-as-planned.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ Please find below links for schema details:

#### Example for submodel PartAsPlanned

<br/><br/><img src="src/main/resources/images/partasplanned.png" height="60%" width="80%"/><br/><br/>

### Work Flow

- CSV to POJO
Expand All @@ -48,6 +46,3 @@ Please find below links for schema details:

- DigitalTwins
- EDC Connectors


[CSV Sample File Link]: src/main/resources/partAsPlanned.csv

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/********************************************************************************
* Copyright (c) 2022, 2023 T-Systems International GmbH
* Copyright (c) 2022, 2023 Contributors to the Eclipse Foundation
* Copyright (c) 2022, 2024 T-Systems International GmbH
* Copyright (c) 2022, 2024 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand All @@ -23,7 +23,6 @@

import org.eclipse.tractusx.sde.common.extensions.SubmodelExtension;
import org.eclipse.tractusx.sde.common.model.Submodel;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import jakarta.annotation.PostConstruct;
Expand All @@ -33,9 +32,6 @@ public class PartAsPlannedSubmodel extends SubmodelExtension {

private Submodel submodel = null;

@Autowired
private PartAsPlannedExecutor partAsPlannedExecutor;

@PostConstruct
public void init() {

Expand All @@ -48,8 +44,6 @@ public void init() {
}

submodel = loadSubmodel(input);

submodel.setExecutor(partAsPlannedExecutor);

submodel.addProperties("tableName", "part_as_planned");
}
Expand Down

This file was deleted.

This file was deleted.

Loading
Loading