Ordering tweaks
- View order : show supplier reorder number
- Modify order item : allow user to view/modify supplier reorder number
- Receive order, modify item : show ratio % between buy and retail. Allow user to tweak ratio or to retain retio/margin.
Ordering tweaks
Includes database changes you will need to log terminals out during upgrade
Point of sale : ability to configure two different trade discount schemes. So for example a trade discount scheme may discount Honda parts 15% and Yamaha parts 18%.
To configure per franchise discount. Add/Edit Franchise. Markups:
You can modify these trades on a per part basis in View/Change Part
Finally, Trade discount scheme is changed via pressing Alt + T in point of sale.
Other changes:
Added some tools to perform manual paypal capture/refunds because it appears as though paypal website doesn't provide such tools when dealing with paypal orders.
Bugfix with browser dealer units. Show open floorplans was not working and was showing all units, not just open floorplans.
Includes database changes. You will need to log out all terminals during upgrade.
Version 4.529 had a defect in it that affected online backup synchronization. Not a serious problem, backups are fine, but system would report backups to be in error.
Caused by recent additions to COGs. periodic inventory journal records would write time with millisecond precision, i.e. 09:48:13.201, but online backup can only synchronize with second precision and would backup such records as 09:48:13. The backup verification process is sensitive enough to detect the variation and reports a backup sync error. Fixed by rounding these journals to the nearest second. Update will rewrite existing journals rounding to nearest second.
Manual backups also are unable to record time with millisecond precision. So manual backups created will not be a perfect facsimile of the database.
Requires database changes, you need to log all terminals out during upgrade
Formula for WA which implements the following from this website:
https://www.finance.wa.gov.au/cms/State_Revenue/Duties/Rates/Rates_of_Duty.aspx
| $ 0 – $25,000 | 2.75% of dutiable value (DV) |
| $ 25,001 – $50,000 | [2.75 + (DV - 25,000)] % (rounded to 2 decimal places) of dutiable value 6,666.66 |
| $ 50,000 and upwards | 6.5% of dutiable value |
Formula in C9 is:
int({DutyValue}*case({DutyValue},x<=25000,275,x>=50000,650,275+int((x-25000)/66.6666+0.5))/500)/20
Point of sale : show part description after scanning a part and setting qty, so it is obvious early on exactly what has been scanned
Bugfixes:
Updated Suzuki framelisting database supplied by suzuki that xrefs model+year to region used for capturing fiche diagrams to include later offerings (e.g. AN650) and regions that map to 2012+ model bikes as per what Suz Australia publish. Also fixed a couple of bugs with how the list was being interpreted. i.e. was missing out on some models like GT250, GSX-R1000Z, VL1500(B) and a handful of others (mostly ATVs) due to incorrect decoding of the model designator.