diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 5fa1bddc..34ec864a 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -522,6 +522,10 @@ todo:2 many biz objects are not using new PUT methodology CURRENTLY DOING: Import workorders v8 migrate +todo: can't connect to helloayanova.com server to do migrate + maybe it's the tls level setting thingy in code that needs adjusting just like license fetch code for ayanova? + +todo: sb able to copy the url from help about in v8 ui and use for migrate easily, just copy and paste so it should handle the api v8 shit at end of it Inventory handling ideas: maybe do use inventory, but start out with crazy high numbers for each part @@ -536,6 +540,18 @@ todo: calculations at server are off from v7 to v8 so the likely solution is to apply bankers rounding to the calcs, however there maybe implications when it comes to things like crypto values etc so need to determine carefully +issues: v7 used "Bankers rounding" which is round up if midway so some totals in v8 will be lower than the v7 source record by 1cent. + v8 doesn't yet use bankers rounding but will soon to match v7 + "Distance" field in v7 woitemtravel is not exposed in v8 but is actually there, I just missed putting the control on the form + Inventory + I have some more work to do with inventory, for now to facilitate migrate it just puts 1 billion in stock for every part migrated + I will keep the 1 billion bit and be adding code to do a final inventory adjustment at the end of the migrate to bring the v8 balances + into agreement with the v7 balances. (some tricky work needed there due to the vast differences in how inventory works so leaving that for now) + If useinventory is off in v7 it will just ignore all inventory, if it's on it will create an opening balance of 1billion for each part and deduct from each part as it migrates workorders + part requests do not migrate the purchase order id link if there was one in v7; not sure how I'm going to handle this, i was hoping to leave out importing po's but I might just have to anyway + ultimately I can fix up the inventory balance at the end no matter what gets imported, it's just that v8 takes all inventory affecting things very seriously so it's going to + leave a lot of artifacts in the db if it has to adjust and add and remove tons of stuff which I was hoping to avoid. Will have to give it a think. + ============================ diff --git a/ayanova/src/api/ayanova-version.js b/ayanova/src/api/ayanova-version.js index 92591ba5..f489524b 100644 --- a/ayanova/src/api/ayanova-version.js +++ b/ayanova/src/api/ayanova-version.js @@ -1,4 +1,4 @@ export default { - version: "8.0.0-alpha.118", + version: "8.0.0-alpha.119", copyright: "© 1999-2021, Ground Zero Tech-Works Inc." };