-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added sender to invoice. implemented XRechnung generation. issue #2165
- Loading branch information
1 parent
3805a24
commit 8e4ff8e
Showing
8 changed files
with
771 additions
and
264 deletions.
There are no files selected for viewing
Binary file modified
BIN
-2.12 KB
(100%)
j-lawyer-client/lib/j-lawyer-invoicing/j-lawyer-invoicing.jar
Binary file not shown.
427 changes: 297 additions & 130 deletions
427
j-lawyer-client/src/com/jdimension/jlawyer/client/editors/files/InvoiceDialog.form
Large diffs are not rendered by default.
Oops, something went wrong.
558 changes: 426 additions & 132 deletions
558
j-lawyer-client/src/com/jdimension/jlawyer/client/editors/files/InvoiceDialog.java
Large diffs are not rendered by default.
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
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
7 changes: 7 additions & 0 deletions
7
j-lawyer-server-entities/src/java/db/migration/V2_7_0_7__AddSenderToInvoice.sql
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,7 @@ | ||
alter table invoices add `sender_id` VARCHAR(50) BINARY DEFAULT NULL; | ||
|
||
alter table invoices add `einvoice_document` VARCHAR(50) BINARY; | ||
alter table invoices add CONSTRAINT einvoices_casedocuments_fk FOREIGN KEY (einvoice_document) REFERENCES case_documents (id) ON DELETE SET NULL; | ||
|
||
insert into server_settings(settingKey, settingValue) values('jlawyer.server.database.version','2.7.0.7') ON DUPLICATE KEY UPDATE settingValue = '2.7.0.7'; | ||
commit; |
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