These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

EVE Technology Lab

 
  • Topic is locked indefinitely.
 

jEveAssets 4.1.2 (2017-06-07)

First post
Author
Andy DelGardo
#221 - 2012-05-12 22:16:58 UTC  |  Edited by: Andy DelGardo
yay more feature requests :p

In the stockpile tool, can u make the columns sortable if u click on them? So that i see all the highest surplus at once and also lower stock values.

bye Andy
Golden Gnu
Lobach Inc.
#222 - 2012-05-13 10:27:14 UTC  |  Edited by: Golden Gnu
@Shellac Brookdale
While I can see it's annoying to wait, I'm sorry to say It's not going to change.
There is just to many technical concerns related to doing it in the background.
Also, it works quite well now IMHO.

I'm sorry not to be able do your feature request.
Thank you for your feedback. :)

@Andy DelGardo
It's already on the todo list: issue
It's a technical problem. It's very hard to do, sadly. I have yet to find a really good way to do it.

Thank you for your continued feedback :)

EDIT:
Stockpile sorting:
It looks like there was a good solution after all.
Thank you for bringing it up again.
Making me research it again and finding the solution.
It will be included in the next release. :)

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Andy DelGardo
#223 - 2012-05-13 12:12:43 UTC
Cool thx for all the improvements :p

One more: Can u add a -/+ % column that simply shows the stuck/surplus value in % from the target, similar to the absolute value? I do setup some valid production stock, but for some cheep materials, components i rather shop directly up to 100-200% from the target, if i happen to be in jita, but i don't want to overstock like 500%.

Thx Andy
Golden Gnu
Lobach Inc.
#224 - 2012-05-13 13:30:50 UTC
@Andy DelGardo
Like this?

You can see everything that has already been done for the next feature release here

...and thank you for all the suggestions!
As I have said many times before:
Feedback is really what fuels the development! :)

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Andy DelGardo
#225 - 2012-05-13 14:40:53 UTC
Um yeah like this one :p so i'm not the only one with the idea!
Golden Gnu
Lobach Inc.
#226 - 2012-05-13 15:04:34 UTC
@Andy DelGardo
Idea Being second with a idea, is not bad - It only enforce that it's indeed a good idea

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Andy DelGardo
#227 - 2012-05-19 14:04:36 UTC  |  Edited by: Andy DelGardo
Hi,

not 100% jAsset specific, but i'm looking for a way to "count" my T3 BPC runs per subsystem. The problem is that i cant find a way to distinguish a 3/10/20 BPC from each-other, so simply counting wont work.

Someone maybe know a way to accomplish this with jEveAsset or a API XML import, lookup? So can u distinguish the 3 versions somehow by and API attribute or is there a way to pull the BPC "runs" attribute via API?

What i basically want is use my BPC-Runs like any other normal material and check weather i have enough "runs" at stock or not.

thx Andy
Golden Gnu
Lobach Inc.
#228 - 2012-05-20 09:15:52 UTC  |  Edited by: Golden Gnu
@Andy DelGardo
I could not figure out a way to do it in jEveAssets, but I can offer a bit of help:

IndustryJobs.xml.aspx
installedItemID
is a unique item identifier (for each API request). You can use it to remove duplicates.

installedItemLicensedProductionRunsRemaining
Will give you number of remaining runs before the production began.

runs
will give you the number of runs for each job.

licensedProductionRuns
Will give you the number runs on a newly created BPC

A1) Find each BPC job (installedItemCopy == 1)
A2) runs remaining = installedItemLicensedProductionRunsRemaining - runs
B1) Find copy jobs (activityID == 5)
B2) runs remaining = licensedProductionRuns
C) Remove duplicates with installedItemID and endProductionTime

See: http://wiki.eve-id.net/APIv2_Char_IndustryJobs_XML
for the full documentation.

I think it might be possible to add to the statusbar. Would you be interested in that?

EDIT:
The "B" Logic is flawed. There is no way to know what the output Item ID is. You might be able to use the AssetList for that, though...

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Andy DelGardo
#229 - 2012-05-20 09:44:23 UTC  |  Edited by: Andy DelGardo
If i understand this right, this only works if the job is already installed? I would like something similar to the "Corp Blueprint" list, since there it lists the runs in the list. So can u fetch it this way somehow?

I mainly just want to count all my BPC runs that are in a corp or personal hangar. If this only works for already installed jobs, than its no use, since than i already have setup everything :p

The "Type Count" is the most similar number, to what i'm looking for, but it wont sum actual BPC-Runs, i would even just need the "unmodified" number from T3 BPC (3/10/20) since i tend to produce all runs at once, but i dont see a way to distinguish a 3 BPC from a 10 BPC of the same type/sub.


Thx for the infos on this.

bye Andy
Golden Gnu
Lobach Inc.
#230 - 2012-05-20 10:56:40 UTC  |  Edited by: Golden Gnu
@Andy DelGardo
1) It should be possible to find BPC in the AssetList that have not yet been used (AKA AssetList :: itemID without a matching IndustryJobs :: installedItemID)
2) Matching them to a copy job (to get licensedProductionRuns), might be hard, though...

An alternative is to simply:
1) Find copy jobs (activityID == 5)
2) Add all licensedProductionRuns to totalAvailableRuns
3) Find each BPC production job (installedItemCopy == 1)
4) Add all runs to totalRunsDone
5) result = totalAvailableRuns - totalRunsDone
But, that is not very precise.
It will fail if:
-If a copy or production job is missing from the API
-If you buy a BPC and produce it...
-If you sell a BPC instead of producing it

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Zothike
State War Academy
Caldari State
#231 - 2012-05-21 09:54:36 UTC
feature request

-being able to save filter with presentation (which column to appear, which not)
-being able to export in html format (based on what show up on screen, then mixed with the feature above would be awesome)

thanks Cool
Golden Gnu
Lobach Inc.
#232 - 2012-05-21 15:05:38 UTC
@Zothike
Thank you for your feature suggestions.
I have added Issue 1 and Issue 2 without an ETA.

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Golden Gnu
Lobach Inc.
#233 - 2012-05-24 12:54:23 UTC
jEveAssets 2.2.0 (Inferno 1.0.0) released

New Features:
-New Tool: Items (items database)
-Table menu now works with multiple selection
-Added EveMarketeer (As price source and to the lookup menu)
-Added Eve Addicts to the lookup menu (eve.addicts.nl)
-Market Orders: Added info to the statusbar
-Industry Jobs: Added invention success to the statusbar
-Stockpile: Added percent full column
-Hide/show columns now has Its own dialog
-Market Orders: Joined the Buy and Sell table
-Market Orders/Industry Jobs: Added some predefined filters
-Filter Manager: Can now delete multiple items at once
-Eve-MarketData: Added support for region selection
-Added better program icons (for windows 7 taskbar etc.)
-Added Flag path (as suggested by Scrapyard Bob)
-Added window Always On Top option
-Stockpile: Added table sorting
-Assets: Added reprocessed value to the statusbar
-Assets: Added Buy Orders (Optional) (Sell orders are now optional as well)

Changed:
-Removed support for prices.c0rporation.com
-CSV Export: Now remember selected columns (again)
-Tables: Columns auto resizing is now optional (again)
-Highlight selected row(s) now work on all filter tools
-Only filter on enter now works again and for all filter tools
-Static data updated to Inferno 1.0.70633

Bug Fixes:
-Fixed a rare bug in the save filter dialog (text was locked)
-Fixed a translation bug in Price Data Settings

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Joel Mi
Caldari Provisions
Caldari State
#234 - 2012-05-29 18:11:19 UTC
thank you so much for the latest upgrades :D

new sugestions:

values tool

- add an arrow to all grand total so we can track if we have more or less than the last update
ex: grand total - Assets 100isk » (run update tool) » Assets 150isk (arrow up green color) (+50isk)
arrow down (red color) if less amount than the latest update

if you could develop a graphic to track assets and the rest (wallet, total, etc) would be nice too

assets tool:

since the tool provides information for the reprocess value of the item, why not provide information for the type of minerals and the amount we get by reprocessing them?
this could be done by right click in the item itself. when selecting multiple items this information will display by right click too
what do you think?


industry jobs tool

- i have api clearance for industry jobs but my active jobs are not showing up. same thing for the completed jobs

Golden Gnu
Lobach Inc.
#235 - 2012-05-30 08:32:36 UTC
@Joel Mi
Thank you :)

Values tool:
It's definitely possible to track values like you suggest.
There is a couple of things that make it a bit complicated:
1) Prices are not static - AKA if you only update the price data does it count as a new point?
2) What price type to use - sell min, buy max etc.?
3) The data set will keep growing over time - so we need a limit for when we trash the old data
Issue Added without an ETA

Assets tool:
Issue Added also without an ETA

Industry jobs tool:
1) Configured correct?
Go to: Options > Accounts...
Make sure that it says "Yes" in the "Industry Jobs" column.

2) Corporation Jobs?
If you do you research etc. at a corporation POS, you might need a corporation API Key to track your jobs.

3) API down?
Sometimes the API goes down - try again next day...

Other than that I can not offer much help. If nothing of the above works, I'll suggest you email me your logs, so I can check it for errors...

Thank you for your feature suggestions! :)

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Haifisch Zahne
Hraka Manufacture GmbH
#236 - 2012-06-01 04:21:03 UTC  |  Edited by: Haifisch Zahne
REMOVED TO PROTEST CCP's Community Censorship Protocol ("CCCP").
Shellac Brookdale
Cutting Edge Incorporated
#237 - 2012-06-01 07:48:37 UTC
Overview tool:

It would be nice to have a summary for number of items, total volume and value on bottom of the window. Pretty much like there is with the assets tool. This summary should reflect values across all items currently shown by default. In case individual table rows have been selected, only values for the selected rows should be in the summary on the page bottom.

What I do with the tool is to use it as a overview to plan what stations to visit. I create several filters based on the item location to create "neighborhoods" of systems and finally go to the overview, select filters only, and sort stations by volume or value. Now I highlight all stations that are worth visiting by clicking each row and create a route. Problem with that is I only have a limited amount or cargohold. So I need to do the math out of my head to find out how many station I can visit until my cargohold is filled up. Having a feature as described above would make this easier.
Golden Gnu
Lobach Inc.
#238 - 2012-06-01 09:08:43 UTC  |  Edited by: Golden Gnu
@Haifisch Zahne
I'm sorry to say that I'm not quite sure what "statistical outliers" is...

If you refer pricing data being "corrupted" by fake or crazy orders, then you need to take you request to eve-central.com, evemarketeer.com, or eve-marketdata.com as jEveAssets only use their API - and have no say in what orders are included and excluded.

Sorry to not be of more help...
Thank you for your feedback :)

@Shellac Brookdale
Great idea!
Issue added

Thank you for your feature suggestion :)

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"

Haifisch Zahne
Hraka Manufacture GmbH
#239 - 2012-06-01 14:15:09 UTC  |  Edited by: Haifisch Zahne
REMOVED TO PROTEST CCP's Community Censorship Protocol ("CCCP").
Golden Gnu
Lobach Inc.
#240 - 2012-06-02 10:21:11 UTC
@Haifisch Zahne
jEveAssets does not get individual orders. It use the API to get the calculated values. AKA min, max, mean, average.
As I do not have a university degree in math (or anything else...), I struggle to figure out the math you want to use.
So, please show me the math! Big smile

Creator of jEveAssets - the asset manager

"Download is the meaning of life, upload is the meaning of intelligent life"