Changeset 1300
- Timestamp:
- 2/7/2010 9:24:47 AM (5 weeks ago)
- Location:
- branches/EveHQv2
- Files:
-
- 8 modified
-
. (modified) (1 prop)
-
EveHQ.DataConverter/Resources/dbo_TABLES_MDB.sql (modified) (1 diff)
-
EveHQ.PosManager/Data Classes/FuelType.cs (modified) (1 diff)
-
EveHQ.PosManager/Forms/PoSManMainForm.cs (modified) (3 diffs)
-
EveHQ.PosManager/Properties/AssemblyInfo.cs (modified) (1 diff)
-
EveHQ/_latest.xml (modified) (1 diff)
-
EveHQ/_updates.xml (modified) (1 diff)
-
EveHQSetup/EveHQSetup.vdproj (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/EveHQv2
- Property svn:mergeinfo
-
old new 1 1 /branches/PrismPhaseII:589-675 2 /trunk:1195-1210,1216-1230,1232-1233,1235,1237,1239-1241,1243,1245-1253,1255-1290,1292 2 /trunk:1195-1210,1216-1230,1232-1233,1235,1237,1239-1241,1243,1245-1253,1255-1290,1292,1294-1299
-
- Property svn:mergeinfo
-
branches/EveHQv2/EveHQ.DataConverter/Resources/dbo_TABLES_MDB.sql
r1099 r1300 785 785 divisionID integer NULL, 786 786 corporationID integer NULL, 787 stationID integer NULL,787 locationID integer NULL, 788 788 `level` integer NULL, 789 789 quality integer NULL, -
branches/EveHQv2/EveHQ.PosManager/Data Classes/FuelType.cs
r1171 r1300 124 124 { 125 125 if (used > 0) 126 ret = Math. Floor((pcMult * sov * pQty) + 1);126 ret = Math.Ceiling(pcMult * sov * pQty); 127 127 else 128 128 ret = Math.Floor(pcMult * sov * pQty); -
branches/EveHQv2/EveHQ.PosManager/Forms/PoSManMainForm.cs
r1291 r1300 2406 2406 ml = EveHQ.Core.DataFunctions.GetData(strSQL); 2407 2407 2408 p.Moon = ml.Tables[0].Rows[0].ItemArray[0].ToString(); 2408 if (ml != null) 2409 if ((ml.Tables != null) && (ml.Tables.Count > 0)) 2410 if ((ml.Tables[0].Rows != null) && (ml.Tables[0].Rows.Count > 0)) 2411 p.Moon = ml.Tables[0].Rows[0].ItemArray[0].ToString(); 2412 else 2413 p.Moon = "Unknown"; 2414 else 2415 p.Moon = "Unknown"; 2416 else 2417 p.Moon = "Unknown"; 2409 2418 2410 2419 switch (td.stateV) … … 5069 5078 } 5070 5079 5080 if (xfIn <= 0) 5081 xfIn = 1; 5082 if (xfOut <= 0) 5083 xfOut = 1; 5071 5084 if ((fInp) && (!fOutp)) 5072 5085 { … … 5744 5757 { 5745 5758 // Plain mineral incomming 5746 qty = SrcMod.selMineral.reactQty; 5747 mult = SrcMod.selMineral.portionSize; 5748 vol = SrcMod.selMineral.volume; 5749 bPrice = SrcMod.selMineral.basePrice; 5750 5751 retV[0] = qty; 5752 retV[1] = retV[0] * vol * mult; 5759 5760 // There are some cases, where the destination is a reaction, that the reaction 5761 // should override on silo due to the selMineral.reactQty being just plain Wrong! 5762 if ((DstMod.ModType == 5) || (DstMod.ModType == 6) || (DstMod.ModType == 7)) 5763 { 5764 foreach (InOutData iod in DstMod.selReact.inputs) 5765 { 5766 if (iod.typeID == SrcMod.selMineral.typeID) 5767 { 5768 qty = iod.qty; 5769 mult = SrcMod.selMineral.portionSize; 5770 vol = SrcMod.selMineral.volume; 5771 bPrice = SrcMod.selMineral.basePrice; 5772 rQty = SrcMod.selMineral.reactQty; 5773 5774 retV[0] = qty * rQty; 5775 retV[1] = retV[0] * vol * mult; 5776 } 5777 } 5778 } 5779 else 5780 { 5781 qty = SrcMod.selMineral.reactQty; 5782 mult = SrcMod.selMineral.portionSize; 5783 vol = SrcMod.selMineral.volume; 5784 bPrice = SrcMod.selMineral.basePrice; 5785 5786 retV[0] = qty; 5787 retV[1] = retV[0] * vol * mult; 5788 } 5753 5789 } 5754 5790 else if (SrcMod.Category == "Mobile Reactor") -
branches/EveHQv2/EveHQ.PosManager/Properties/AssemblyInfo.cs
r1291 r1300 33 33 // by using the '*' as shown below: 34 34 // [assembly: AssemblyVersion("1.0.*")] 35 [assembly: AssemblyVersion("1.14. 1.1283")]36 [assembly: AssemblyFileVersion("1.14. 1.1283")]35 [assembly: AssemblyVersion("1.14.2.1296")] 36 [assembly: AssemblyFileVersion("1.14.2.1296")] -
branches/EveHQv2/EveHQ/_latest.xml
r1293 r1300 110 110 <name>EveHQ.PosManager.dll</name> 111 111 <type>Plug-in</type> 112 <version>1.14. 1.1283</version>112 <version>1.14.2.1296</version> 113 113 <requires/> 114 114 <hasDebug>True</hasDebug> -
branches/EveHQv2/EveHQ/_updates.xml
r1293 r1300 104 104 <name>EveHQ.PosManager.dll</name> 105 105 <type>Plug-in</type> 106 <version>1.14. 1.1283</version>106 <version>1.14.2.1296</version> 107 107 <hasDebug>True</hasDebug> 108 108 <description>POS Design and Management Plug-in</description> -
branches/EveHQv2/EveHQSetup/EveHQSetup.vdproj
r1291 r1300 502 502 "AssemblyRegister" = "3:1" 503 503 "AssemblyIsInGAC" = "11:FALSE" 504 "AssemblyAsmDisplayName" = "8:EveHQ.CoreControls, Version=1.14. 1.1282, Culture=neutral, processorArchitecture=MSIL"504 "AssemblyAsmDisplayName" = "8:EveHQ.CoreControls, Version=1.14.2.1292, Culture=neutral, processorArchitecture=MSIL" 505 505 "ScatterAssemblies" 506 506 { … … 604 604 "AssemblyRegister" = "3:1" 605 605 "AssemblyIsInGAC" = "11:FALSE" 606 "AssemblyAsmDisplayName" = "8:EveHQ.Core, Version=1.14. 1.1282, Culture=neutral, processorArchitecture=x86"606 "AssemblyAsmDisplayName" = "8:EveHQ.Core, Version=1.14.2.1292, Culture=neutral, processorArchitecture=x86" 607 607 "ScatterAssemblies" 608 608 { … … 698 698 "Name" = "8:Microsoft Visual Studio" 699 699 "ProductName" = "8:EveHQ" 700 "ProductCode" = "8:{ 440002B9-AB9A-48C2-88F8-409BFC7AB75F}"701 "PackageCode" = "8:{ AE13DBB0-3064-4528-AF7C-B5678B55133A}"700 "ProductCode" = "8:{82D02D4B-C843-4DCB-9DDD-351DA535D2DD}" 701 "PackageCode" = "8:{F2FF4F53-8A1A-4648-9AEB-81E51A706B8C}" 702 702 "UpgradeCode" = "8:{5EBB0328-70C2-4A58-A4AC-225419B25E51}" 703 703 "RestartWWWService" = "11:FALSE" … … 705 705 "DetectNewerInstalledVersion" = "11:TRUE" 706 706 "InstallAllUsers" = "11:FALSE" 707 "ProductVersion" = "8:1.14. 1"707 "ProductVersion" = "8:1.14.2" 708 708 "Manufacturer" = "8:Indicium Technologies" 709 709 "ARPHELPTELEPHONE" = "8:"
