-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/adempiere/LVE.git
- Loading branch information
Showing
11 changed files
with
469 additions
and
105 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,44 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
# This file was contributed by Carlos Parada and Yamel Senih from ERP Consultores y Asociados, C.A | ||
|
||
name: Continuous Integration with Gradle | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the develop branch | ||
push: | ||
branches: | ||
- '*' # matches every branch that doesn't contain a '/' | ||
- '*/*' # matches every branch containing a single '/' | ||
- '**' # matches every branch | ||
pull_request: | ||
branches: | ||
- '*' # matches every branch that doesn't contain a '/' | ||
- '*/*' # matches every branch containing a single '/' | ||
- '**' # matches every branch | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
|
||
build-ci: | ||
name: Build Project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Java JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-package: 'jdk' | ||
java-version: 11 | ||
architecture: x64 | ||
|
||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
gradle-version: 8.0.1 | ||
arguments: build | ||
env: | ||
ADEMPIERE_LIBRARY_VERSION: 'build' |
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,69 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
# This file was contributed by Carlos Parada and Yamel Senih from ERP Consultores y Asociados, C.A | ||
|
||
name: Publish With gradle to maven central | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the develop branch | ||
release: | ||
types: | ||
- published | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
|
||
publish-sonatype: | ||
name: Publish Project (Sonatype) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Java JDK 11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-package: 'jdk' | ||
java-version: 11 | ||
architecture: x64 | ||
|
||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@v3 | ||
with: | ||
gradle-version: 8.0.2 | ||
arguments: publish | ||
env: | ||
ORG_GRADLE_PROJECT_deployVersion: ${{ github.event.release.tag_name }} | ||
ORG_GRADLE_PROJECT_deployPublishUrl: ${{ secrets.DEPLOY_PUBLISH_SONATYPE_URL }} | ||
ORG_GRADLE_PROJECT_deploySigningKey: ${{ secrets.PGP_SECRET }} | ||
ORG_GRADLE_PROJECT_deploySigningPassword: ${{ secrets.PGP_PASSPHRASE }} | ||
ORG_GRADLE_PROJECT_deployUsername: ${{ secrets.OSSRH_USERNAME }} | ||
ORG_GRADLE_PROJECT_deployPassword: ${{ secrets.OSSRH_TOKEN }} | ||
publish-github: | ||
name: Publish Project (Github) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Java JDK 11 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-package: 'jdk' | ||
java-version: 11 | ||
architecture: x64 | ||
|
||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@v3 | ||
with: | ||
gradle-version: 8.0.2 | ||
arguments: publish | ||
env: | ||
ORG_GRADLE_PROJECT_deployVersion: ${{ github.event.release.tag_name }} | ||
ORG_GRADLE_PROJECT_deployPublishUrl: ${{ secrets.DEPLOY_PUBLISH_GITHUB_URL }} | ||
ORG_GRADLE_PROJECT_deploySigningKey: ${{ secrets.PGP_SECRET }} | ||
ORG_GRADLE_PROJECT_deploySigningPassword: ${{ secrets.PGP_PASSPHRASE }} | ||
ORG_GRADLE_PROJECT_deployUsername: "${{ github.actor }}" | ||
ORG_GRADLE_PROJECT_deployPassword: "${{ secrets.DEPLOY_TOKEN }}" |
This file was deleted.
Oops, something went wrong.
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
32 changes: 32 additions & 0 deletions
32
financial/src/main/java/base/org/erpya/lve/bank/imp/Bancaribe_Loader_Ssv.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,32 @@ | ||
/************************************************************************************* | ||
* Product: Adempiere ERP & CRM Smart Business Solution * | ||
* Copyright (C) 2012-2018 E.R.P. Consultores y Asociados, C.A. * | ||
* Contributor(s): Yamel Senih ysenih@erpya.com * | ||
* This program is free software: you can redistribute it and/or modify * | ||
* it under the terms of the GNU General Public License as published by * | ||
* the Free Software Foundation, either version 3 of the License, or * | ||
* (at your option) any later version. * | ||
* This program is distributed in the hope that it will be useful, * | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of * | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * | ||
* GNU General Public License for more details. * | ||
* You should have received a copy of the GNU General Public License * | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. * | ||
************************************************************************************/ | ||
package org.erpya.lve.bank.imp; | ||
|
||
import org.spin.util.impexp.BankStatementHandler; | ||
import org.spin.util.impexp.BankTransactionAbstract; | ||
|
||
/** | ||
* Bancaribe separado por punto y coma | ||
* @author Yamel Senih, ysenih@erpya.com , http://www.erpya.com | ||
* <li> | ||
* @see https://github.com/adempiere/adempiere/issues/1701 | ||
*/ | ||
public final class Bancaribe_Loader_Ssv extends BankStatementHandler { | ||
@Override | ||
protected BankTransactionAbstract getBankTransactionInstance() { | ||
return new Bancaribe_Ssv(); | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
financial/src/main/java/base/org/erpya/lve/bank/imp/Bancaribe_Ssv.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,31 @@ | ||
/************************************************************************************* | ||
* Product: Adempiere ERP & CRM Smart Business Solution * | ||
* Copyright (C) 2012-2018 E.R.P. Consultores y Asociados, C.A. * | ||
* Contributor(s): Yamel Senih ysenih@erpya.com * | ||
* This program is free software: you can redistribute it and/or modify * | ||
* it under the terms of the GNU General Public License as published by * | ||
* the Free Software Foundation, either version 3 of the License, or * | ||
* (at your option) any later version. * | ||
* This program is distributed in the hope that it will be useful, * | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of * | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * | ||
* GNU General Public License for more details. * | ||
* You should have received a copy of the GNU General Public License * | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. * | ||
************************************************************************************/ | ||
package org.erpya.lve.bank.imp; | ||
|
||
/** | ||
* Formato de Bancaribe separado por punto y coma ";" | ||
* @author Yamel Senih, ysenih@erpya.com , http://www.erpya.com | ||
* @see https://github.com/adempiere/LVE/issues/61 | ||
*/ | ||
public class Bancaribe_Ssv extends Bancaribe_v1 { | ||
/** Start Column Index */ | ||
private static final String SEPARATOR = ";"; | ||
|
||
@Override | ||
public String getSeparator() { | ||
return SEPARATOR; | ||
} | ||
} |
Oops, something went wrong.