- Changes to unit formula calculation to better support SA stamp duty under $3000 by introducing a compact 'case' function which better handles expression of bracketed stamp duty rates. Can be used to possibly simplify other bracketed stamp duty systems. See below example formula for SA.
case(int(({DutyValue}+99)/100),x>=30,(x-30)*4+60, x>=20,(x-20)*3+30,x>=10,(x-10)*2+10,x>=5,x,5)Even more compact Version:
case(int(({DutyValue}+99)/100),x>30,x*4-60, x>20,x*3-30,x>10,x*2-10,x>5,x,5)
- Bug fixes with printing deposit on Docket printouts where tax deposit is disabled (now hard coded default in c9 for past few versions). Deposit should be printed below tax invoice total and be factored in when calculating balance; same as how A4 invoices currently print.
- Tweak with import Honda EPC : permit null year imports which will allow power equipment and marine fiche diagrams to be imported.
- Print spares order tweaks
- Memorise checkbox options on a per franchise basis
- New checkbox option : collate. When selected if a part appears on order more than once (i.e. 5 for stock, 3 for invoice #xyz), then collate into a single row on the report. Mirroring how existing export orders behave.