Skip to content

Commit

Permalink
Merge pull request #38 from niveathika/main
Browse files Browse the repository at this point in the history
Update changelog and fix build script
  • Loading branch information
niveathika authored Jul 16, 2024
2 parents b248e2d + 504a1d9 commit de8e16d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 47 deletions.
2 changes: 1 addition & 1 deletion ballerina/api_salesorganization_srv/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ plugins {
description = 'Ballerina - SAP S/4HANA Sales Organization - Read API'

def packageName = "sap.s4hana.api_salesorganization_srv"
def moduleVersion = project.api_salesdistrict_srvVersion.replace("-SNAPSHOT", "")
def moduleVersion = project.api_salesorganization_srvVersion.replace("-SNAPSHOT", "")
def ballerinaTomlFile = file("${project.projectDir}/Ballerina.toml")

ballerina {
Expand Down
64 changes: 20 additions & 44 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,85 +9,61 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## sap.s4hana.api_salesdistrict_srv

## [1.0.0] - 2024-07-16
### Added
- Initial client implementation

## sap.s4hana.api_salesorganization_srv

## [Unreleased]
- Added Initial client implementation

### Added
## sap.s4hana.api_salesorganization_srv

- Initial client implementation
## [1.0.0] - 2024-07-16

### Changed
- Added Initial client implementation

## sap.s4hana.api_sales_order_srv

## [1.0.0] - 2024-07-16
### Added
- Initial client implementation

## sap.s4hana.api_sd_sa_soldtopartydetn

## [Unreleased]
- Added Initial client implementation

### Added
## sap.s4hana.api_sd_sa_soldtopartydetn

- Initial client implementation
## [1.0.0] - 2024-07-16

### Changed
- Added Initial client implementation

## sap.s4hana.salesarea_0001

## [Unreleased]

### Added
## [1.0.0] - 2024-07-16

- Initial client implementation
- Added Initial client implementation

### Changed

## sap.s4hana.api_sd_incoterms_srv

## [Unreleased]

### Added
## [1.0.0] - 2024-07-16

- Initial client implementation

### Changed
- Added Initial client implementation

## sap.s4hana.api_sales_inquiry_srv

## [Unreleased]

### Added
## [1.0.0] - 2024-07-16

- Initial client implementation

### Changed
- Added Initial client implementation

## sap.s4hana.api_sales_quotation_srv

### Added

- Initial client implementation
## [1.0.0] - 2024-07-16

### Changed
- Added Initial client implementation

## sap.s4hana.api_sales_order_simulation_srv

### Added

- Initial client implementation
## [1.0.0] - 2024-07-16

### Changed
- Added Initial client implementation

## sap.s4hana.ce_salesorder_0001

### Added

- Initial client implementation
## [1.0.0] - 2024-07-16

### Changed
- Added Initial client implementation
2 changes: 1 addition & 1 deletion examples/salesforce-to-sap/main.bal
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ service sfListener:RecordService on sfListener {

isolated remote function onUpdate(sfListener:EventData payload) returns error? {
string? opportunityId = payload.metadata?.recordId;
if opportunityId == null {
if opportunityId is () {
log:printError("Error while creating SAP order: invalid opportunityId from event");
return;
}
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ version=1.0.1-SNAPSHOT
api_salesdistrict_srvVersion=1.0.1-SNAPSHOT
api_salesorganization_srvVersion=1.0.0-SNAPSHOT
api_sales_order_srvVersion=1.0.1-SNAPSHOT
api_sd_sa_soldtopartydetnVersion=1.0.0-SNAPSHOT
api_sd_sa_soldtopartydetnVersion=1.0.1-SNAPSHOT
salesarea_0001Version=1.0.1-SNAPSHOT
api_sd_incoterms_srvVersion=1.0.0-SNAPSHOT
Expand Down

0 comments on commit de8e16d

Please sign in to comment.