Suivez et participez au développement du nouvel OpenCellar : PLOC.co
> Open Cellar for Windows
> Help Center
> FAQ
> Download Center
> Enter the Forum
> Version history
> Developers resources
> Open Cellar for Mobile
> Help Center
> FAQ
> Download Center
> Enter the Forum
> Version history
> Open Cellar for Mac/Linux
> Help Center
> FAQ
> Download Center
> Enter the Forum
> Version history
> Developers resources
> My Account
> My Live services
> My pages
> My library
> My published wines
> My labels
> My posted messages
> Write a page
> Open Cellar Forum Index
> Windows Forum
> Mac/Linux Forum
> Mobile Forum
> Search for and import wines
> Search for labels
> Compare prices (Sniffer)
Search:
> Search with all engines
> Search in forums
> Search in personal pages
> Search on open-cellar.com
> Search in wine cards
> Search in labels
> Search in price comparison tool (Sniffer)
Welcome (
connect
-
create an account
)
Home
»
The forum
»
Open Cellar Home Edition (Windows)
Nuage de tags
Open Cellar
Scripts
Etiquette
PPP
Cellar book
Mac
Vista
Synchronisation
Excel export
vinoXml
usb
sniffer
backup
import
printing
chardonnet
palm
statistics
Linux
pousser le vice...
16/05/2009
Reply
pousser le vice...
Le P'tit Bouche
12 posts
Bonjour Matthieu!
Comme indiqué dans le sujet, serait-il possible de pousser le vice du perfectionnement ?
Je m'explique, sur mes emplacements de bouteilles vides, j'ai appliqué une illustration qui correspond à la photo de mon casier en brique vide sans renseigner aucun champ sauf celui du nom (Disponible), mais le petit inconvénient, lorsque que j'édite un rapport du taux de remplissage des emplacements, il me compte les trous correspondant à "disponible" et bien sur j'ai un taux de 100%!
Y aurait-il un artifice pour contourner ce petit bémol ?
Merci d'avance, Thierry
16/05/2009
Reply
Re : pousser le vice...
Administrateur
3099 posts
Bonjour bonjour,
Oui c'est possible en passant par un script que voici (celui ci ne prend pas en compte tous les vins dont le nom contient disponible) :
App.Animate(AnimationType.Work, true); App.SetCursor(true); IReport report = App.ReportEngine.GetSystemReport(PredefinedReport.Grid); if(report != null) { // Modifiez ici le titre du report string reportName = App.GetResourceString("RK_CENTER_RSU"); // Creation entete report ReportTable rt = new ReportTable(reportName); // Emplacement ReportColumn rcRack = rt.NewColumn(App.GetResourceString("RACK_TITLE")); rcRack.Size = 350; // Occupé ReportColumn rcUsed = rt.NewColumn(App.GetResourceString("RSU_1")); rcUsed.Size = 90; rcUsed.ContentAlignment = ReportContentAlignment.Right; rcUsed.DataType = ReportColumnType.Numeric; // Pourcentage libre ReportColumn rcPercent = rt.NewColumn(App.GetResourceString("RSU_3")); rcPercent.Size = 100; rcPercent.ContentAlignment = ReportContentAlignment.Right; // Total ReportColumn rcTotal = rt.NewColumn(App.GetResourceString("RSU_2")); rcTotal.Size = 90; rcTotal.ContentAlignment = ReportContentAlignment.Right; rcTotal.DataType = ReportColumnType.Numeric; // Alimentation de la source OpenCellar.Framework.Core.ObjectCollection racks = App.ActiveCellar.GetCollection((ushort)OpenCellar.Framework.Core.ObjectType.Rack); for (int i = 0; i < racks.Count; i++) { OpenCellar.Framework.Core.Rack rack = (OpenCellar.Framework.Core.Rack)racks[i]; ReportRow row = rt.NewRow(); row[0] = rack.Name.Trim(); int used = 0; int total = 0; for (byte rowZ = 0; rowZ < rack.Rows; rowZ++) { for(byte column = 0; column < rack.Columns; column++) { OpenCellar.Framework.Core.RackItem ri = rack.Get((byte)column, (byte)rowZ); if(ri != null) { total++; if((ri.Wine != null) && (ri.Wine.Name.ToLower().IndexOf("disponible") == -1)) { used++; } } } } row[1] = used.ToString(); if(total > 0) { float percent = ((float)used / (float)total) * 100; row[2] = Convert.ToInt32(percent).ToString() + "%"; } else { row[2] = "0%"; } row[3] = total.ToString(); } if(rt.Rows.Count > 0) { rt.Sort("2-0;1-0;0-0"); System.Collections.ArrayList list = new System.Collections.ArrayList(); list.Add(rt); string destFileName = Utility.GetUniqueFileName(App.Path + "Cache\\", "RSU", null); bool success = false; try { report.Create(list, destFileName); success = true; } catch(Exception ex) { EventLog.Write(ex); App.ShowMessage(App.GetResourceString(LanguageConstants.DEFAULT_MSG_CAPTION), App.GetResourceString(LanguageConstants.MSG_REPORT_ERROR), System.Windows.Forms.MessageBoxIcon.Error, System.Windows.Forms.MessageBoxButtons.OK); } // Rapport généré if(success) { // On lance le fichier généré IShellWindow shellWindow = (IShellWindow)App.GetWindow(WindowType.Shell, null); if(shellWindow != null) { shellWindow.Start(destFileName); } } } } App.SetCursor(false); App.StopAnimate();
Pour accéder plus facilement a ce rapport enregistrez le dans un fichier .ocs situé dans le répertoire Reports d'OC vous le retrouverez au prochain démarrage d'OC sous le menu Centre de rapports -> Rapports supplémentaires -> Nom du fichier
Matthieu
17/05/2009
Reply
Re : pousser le vice...
Le P'tit Bouche
12 posts
Encore bravo Matthieu pour avoir créer un logiciel aussi évolutif!
© 2006-2014
Matthieu DUCROCQ
- All rights reserved - Last update: january 2014 |
|
Support Open Cellar
|
Contact
|
About