Skip to content

Commit

Permalink
Merge pull request #3020 from resilient-tech/version-14-hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
vorasmit authored Feb 3, 2025
2 parents e5346ef + c86be6e commit 37dc734
Show file tree
Hide file tree
Showing 10 changed files with 667 additions and 160 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ repos:
- id: check-ast

- repo: https://github.com/psf/black
rev: 24.1.1
rev: 25.1.0
hooks:
- id: black

- repo: https://github.com/PyCQA/isort
rev: 5.13.2
rev: 6.0.0
hooks:
- id: isort

- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
rev: 7.1.1
hooks:
- id: flake8
additional_dependencies: [flake8-isort, flake8-bugbear]
Expand Down
4 changes: 3 additions & 1 deletion india_compliance/gst_india/overrides/payment_entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
from erpnext.controllers.accounts_controller import get_advance_payment_entries

from india_compliance.gst_india.constants import TAX_TYPES
from india_compliance.gst_india.overrides.transaction import get_gst_details
from india_compliance.gst_india.overrides.transaction import (
get_gst_details,
)
from india_compliance.gst_india.overrides.transaction import (
validate_backdated_transaction as _validate_backdated_transaction,
)
Expand Down
26 changes: 22 additions & 4 deletions india_compliance/gst_india/print_format/e_waybill/e_waybill.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@

.table-element {
font-size: 12px;
}

.bold {
font-weight: bold;
}

.no-border {
border: none !important;
}

.no-border > * {
border: none;
}

.print-format {
padding: 0.25in;
color: black;
}

table, th, td {
border: 1px solid #d1d8dd;
border-collapse: collapse;
}

@media print {
.print-format {
padding: 0;
Expand Down Expand Up @@ -53,10 +75,6 @@
border-top: 1px solid black !important;
}

.print-format .ewb-no-span {
font-size: 13px;
}

.print-format .section-separator {
border-top: 2px solid #bbb;
margin: 8px 0 16px;
Expand Down
Loading

0 comments on commit 37dc734

Please sign in to comment.