Skip to content

Commit

Permalink
Merge pull request #766 from xzzy/master
Browse files Browse the repository at this point in the history
PDF invoice image fix for ledger as a plugin
  • Loading branch information
xzzy committed Jan 10, 2020
2 parents 60aff69 + 17fb93b commit a4ee89e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ledger/payments/pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
from ledger.accounts.models import Document
from ledger.checkout.utils import calculate_excl_gst

DPAW_HEADER_LOGO = os.path.join(settings.BASE_DIR, 'ledger', 'payments','static', 'payments', 'img','dbca_logo.jpg')
DPAW_HEADER_LOGO_SM = os.path.join(settings.BASE_DIR, 'ledger', 'payments','static', 'payments', 'img','dbca_logo_small.png')
BPAY_LOGO = os.path.join(settings.BASE_DIR, 'ledger', 'payments','static', 'payments', 'img', 'BPAY_2012_PORT_BLUE.png')
DPAW_HEADER_LOGO = os.path.join(settings.PROJECT_DIR, 'payments','static', 'payments', 'img','dbca_logo.jpg')
DPAW_HEADER_LOGO_SM = os.path.join(settings.PROJECT_DIR, 'payments','static', 'payments', 'img','dbca_logo_small.png')
BPAY_LOGO = os.path.join(settings.PROJECT_DIR, 'payments','static', 'payments', 'img', 'BPAY_2012_PORT_BLUE.png')

HEADER_MARGIN = 10
HEADER_SMALL_BUFFER = 3
Expand Down

0 comments on commit a4ee89e

Please sign in to comment.