Skip to content

Commit

Permalink
Merge branch 'master' into patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rogobete committed May 14, 2020
2 parents 14c69f7 + fffd672 commit e3d64eb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
15 changes: 7 additions & 8 deletions azure-pipelines.yml
Expand Up @@ -46,25 +46,24 @@ steps:
# Specific version can be removed as soon as 0.12.6 is released
choco install wkhtmltopdf --version 0.12.4.20170325 --allow-downgrade -y
choco install docfx --version 2.41 -y
nuget install DocFx.Plugins.PlantUml -ExcludeVersion -OutputDirectory .
nuget install DocFx.Plugins.PlantUml -Version "1.1.19" -ExcludeVersion -OutputDirectory .
displayName: 'Install prerequisites'

- task: PowerShell@2
inputs:
filePath: 'set-chapter-numbers.ps1'

- powershell: |
Start-Process docfx -Wait -RedirectStandardError $(Build.ArtifactStagingDirectory)/docfx-err.log -RedirectStandardOutput $(Build.ArtifactStagingDirectory)/docfx-out.log
Start-Process docfx -ArgumentList "pdf" -Wait -RedirectStandardError $(Build.ArtifactStagingDirectory)/docfx-err.log -RedirectStandardOutput $(Build.ArtifactStagingDirectory)/docfx-out.log
displayName: Run docfx

- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: documentation'
inputs:
PathtoPublish: '_site_pdf/'
ArtifactName: documentation

- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: logs'
inputs:
ArtifactName: logs

- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: documentation'
inputs:
PathtoPublish: '_site_pdf/'
ArtifactName: documentation
2 changes: 1 addition & 1 deletion dist/protos/IPOS.proto
Expand Up @@ -7,7 +7,7 @@ import "bcl.proto";

service POS {
rpc Echo(EchoRequest) returns (EchoResponse) {}
rpc Journal(JournalRequest) returns (JournalResponse) {}
rpc Journal(JournalRequest) returns (stream JournalResponse) {}
rpc Sign(ReceiptRequest) returns (ReceiptResponse) {}
}

Expand Down
4 changes: 2 additions & 2 deletions doc/appendix-at-rksv/appendix-at-rksv.md
Expand Up @@ -8,6 +8,6 @@ The links to regulations and further information, can be found at:

Further literature can be found at:

<http://www.lindeverlag.at/titel-1-1/swk_spezial_registrierkassen_und_belegerteilungspflicht-6515>
https://www.lindeverlag.at/onlineprodukt/swk-spezial-registrierkassen-und-belegerteilungspflicht-1378

Ritz/Koran/Kutschera, SWK-Spezial Registrierkassen- und Belegerteilungspflicht, 1. Auflage 2016, Linde Verlag Wien. ISBN: 9783707333763
Ritz/Koran/Kutschera, SWK-Spezial Registrierkassen- und Belegerteilungspflicht, 1. Auflage 2016, Linde Verlag Wien. ISBN: 9783707333763
Expand Up @@ -35,7 +35,7 @@ The transaction number defined in TR-03153 is responded behind hash-tag in prope
#### The fiskaltrust.SecurityMechanism implicit transaction

The regular workflow of the fiskaltrust.SecurityMechanism in the German market for actions running immediately has the same requirements as long-running ones. In details, this means, according to BSI TR-03153, there has to be a "Start-Transaction" and a "Finish-Transaction" executed against the TSE. To speed up these two steps into one call to the ´Sign´ method there is a special ´ReceiptCaseFlag´ introduced. Each time this is used in combination with a usual ´ReceiptCase´ a "Start-Transaction" is done behind the scenes upfront to the final call using the given ´ReceiptCase´.
Using a unique identifier in `cbReceiptIdentification´ that was already used with a ´Sign´ call with ´ReceiptCase´ "Start-Transaction" will end up in an exception.
Using a unique identifier in `cbReceiptReference` that was already used with a ´Sign´ call with ´ReceiptCase´ "Start-Transaction" will end up in an exception.
The up-counting transaction number defined in TR-03153 is responded behind hash-tag in property ´ftReceiptIdentification´ of ´ReceiptResponse´ prefixed by "IT".

### Receipt for special functions
Expand Down

0 comments on commit e3d64eb

Please sign in to comment.