Skip to content

Latest commit

 

History

History
199 lines (153 loc) · 10.8 KB

CHANGELOG.md

File metadata and controls

199 lines (153 loc) · 10.8 KB

Changelog

Added

Changed

Fixed

  • Corrects the hash verification field
  • Adds missing Credit or Debit information to some invoice types. SQL script to fix previous invoices:
    UPDATE billy_core_generic_invoice SET credit_or_debit = 'CREDIT'
      WHERE id IN (
      			SELECT bcgi.id
      				FROM billy_pt_receipt_invoice bpri
      				JOIN billy_pt_invoice bpi ON bpri.id = bpi.id
      				JOIN billy_pt_generic_invoice bpgi ON bpi.id = bpgi.id
      				JOIN billy_core_generic_invoice bcgi ON bpgi.id = bcgi.id
      				WHERE credit_or_debit IS NULL 
      	)
    UPDATE billy_core_generic_invoice SET credit_or_debit = 'CREDIT'
      WHERE id IN (
      			SELECT bcgi.id
      				FROM billy_pt_simple_invoice bpsi
      				JOIN billy_pt_invoice bpi ON bpsi.id = bpi.id
      				JOIN billy_pt_generic_invoice bpgi ON bpi.id = bpgi.id
      				JOIN billy_core_generic_invoice bcgi ON bpgi.id = bcgi.id
      				WHERE credit_or_debit IS NULL 
      	)
    

Changed

5.2.0 - 2020-11-05

Changed

5.1.0 - 2020-11-04

Added

Fixed

Changed

5.0.0 - 2020-09-18

Changed

4.0.0 - 2020-09-03

Changed

3.3.1 - 2020-08-14

Changed

Fixed

3.3.0 - 2020-07-11

Changed

Fixed

3.2.1 - 2020-02-24

Added

3.2.0 - 2020-01-31

Added

Changed

Removed

3.1.2 - 2019-12-16

Changed