Rental Calendar Add-On

Hi,
I'm looking for an add-on which would allow me to manage a rental calendar for a part of my stock items... I don't need any invoicing or ordering, this is just for internal renting of items, all I need is to be able to know if a stock item is available for a certain date, or know if it has been rented or is already reserved by someone!
Does anyone know about an add-on that would fit this kind of need?
Thanks
Stéphane Hanrez

Hi Stephane,
This is a forum focussed in development questions.
As your question is more a commercial question please post it in the CPSN forum.
Please look at the following thread for more information: Got a question about customization / implementation? Maybe ask it in CPSN!
Regards
Trinidad.

Similar Messages

  • Error in Calendar.add (almost) evey last Monday of March

    Is the following a known bug? I am running under Windows 2000 and using
    C:\jdk1.4>java -version
    java version "1.4.1"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-b21)
    Java HotSpot(TM) Client VM (build 1.4.1-b21, mixed mode)
    * Filename: CalendarBug.java
    * Every last Monday of March (except those with a whole week after it),
    * gives a wrong result when subtracting 24 hours with the Calendar.add function.
    * These specific dates give -25 hours...
    * Selected output:
    * Set date: Mon Mar 26 00:00:00 CEST 2001
    * -->Adjusted 24 hours: Sat Mar 24 23:00:00 CET 2001
    * Set date: Mon Mar 25 00:00:00 CET 2002
    * Adjusted 24 hours: Sun Mar 24 00:00:00 CET 2002
    * Set date: Mon Mar 31 00:00:00 CEST 2003
    * -->Adjusted 24 hours: Sat Mar 29 23:00:00 CET 2003
    * Set date: Mon Mar 29 00:00:00 CEST 2004
    * -->Adjusted 24 hours: Sat Mar 27 23:00:00 CET 2004
    * Does anyone care to explain?
    * The result is the same when substituting seedDate.add(Calendar.HOUR,-24) with
    * - seedDate.add(Calendar.HOUR_OF_DAY,-24)
    * - seedDate.add(Calendar.MINUTE, -24*60)
    * Date Created: 25. september 2003 09:53:20
    * Written by: Skjalg Bjorndal
    import java.util.Calendar;
    import java.util.Date;
    import java.util.GregorianCalendar;
    public class CalendarBug {
        GregorianCalendar seedDate = new GregorianCalendar();
        public void lastMondayInMarch(int year, int month, int date) {
            System.out.println("   ------- Year: " + year + " ----------");
            for (int i = 0; i < 10; i++) {
                System.out.println("   ---------- " + i + " ----------");
                seedDate.set(year, month, date + i);
                seedDate.setTime(zeroTime(seedDate.getTime()));
                System.out.println("   Set date:          " + seedDate.getTime().toString());
                seedDate.add(Calendar.HOUR, -24);
                if (seedDate.get(Calendar.HOUR_OF_DAY) != 0) {
                    System.out.print("-->");
                } else {
                    System.out.print("   ");
                System.out.println("Adjusted 24 hours: " + seedDate.getTime().toString());
            System.out.println("");
        private Date zeroTime(Date date) {
            Calendar cal = Calendar.getInstance();
            cal.setTime(date);
            // Zero out time:
            cal.set(Calendar.HOUR_OF_DAY, 0);
            cal.set(Calendar.MINUTE, 0);
            cal.set(Calendar.SECOND, 0);
            cal.set(Calendar.MILLISECOND, 0);
            return cal.getTime();
        public static void main(String args[]) {
            CalendarBug aBug = new CalendarBug();
            aBug.lastMondayInMarch(2001, 2, 19);
            aBug.lastMondayInMarch(2002, 2, 18);     // OK - hole week after last Monday of month
            aBug.lastMondayInMarch(2003, 2, 24);
            aBug.lastMondayInMarch(2004, 2, 22);

    Thanks for both of your prompt replies!
    The number of hours to be subtracted is configurable in a property file in the program in which the problem arose. I.e. it could be 1, 23, 24, 120 or whatever...
    My solution will be to download 1.4.2, as kurisu1 pointed out would solve the problem.
    Until we tested the rest of the code with 1.4.2, I will reprogram and use the seedDate.add(Calendar.DATE, -1); as a temporary work around.
    Best regards
    __Skjalg

  • Help on calendar.add() adding -60 days

    hi all
    i am having problem with the add() in Calendar class. i try to get a date that is 60 days prior to the current date, and here is what i coded:
    Calendar calendar = new GregorianCalendar();
    System.out.println("current day : "+calendar.toString());
    calendar.add(Calendar.DAY_OF_MONTH, -60);      
    System.out.println("after adding (-60), the day is "+calendar.toString()); and here is the output of the print:
    --- getEffectiveDate ---
    current day : java.util.GregorianCalendar[time=1088608525321,areFieldsSet=true,a
    reAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="America/New
    _York",offset=-18000000,dstSavings=3600000,useDaylight=true,transitions=235,last
    Rule=java.util.SimpleTimeZone[id=America/New_York,offset=-18000000,dstSavings=36
    00000,useDaylight=true,startYear=0,startMode=3,startMonth=3,startDay=1,startDayO
    fWeek=1,startTime=7200000,startTimeMode=0,endMode=2,endMonth=9,endDay=-1,endDayO
    fWeek=1,endTime=7200000,endTimeMode=0]],firstDayOfWeek=1,minimalDaysInFirstWeek=
    1,ERA=1,YEAR=2004,MONTH=5,WEEK_OF_YEAR=27,WEEK_OF_MONTH=5,DAY_OF_MONTH=30,DAY_OF
    _YEAR=182,DAY_OF_WEEK=4,DAY_OF_WEEK_IN_MONTH=5,AM_PM=0,HOUR=11,HOUR_OF_DAY=11,MI
    NUTE=15,SECOND=25,MILLISECOND=321,ZONE_OFFSET=-18000000,DST_OFFSET=3600000]
    after adding (-60), the day is java.util.GregorianCalendar[time=1083424525321,ar
    eFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInf
    o[id="America/New_York",offset=-18000000,dstSavings=3600000,useDaylight=true,tra
    nsitions=235,lastRule=java.util.SimpleTimeZone[id=America/New_York,offset=-18000
    000,dstSavings=3600000,useDaylight=true,startYear=0,startMode=3,startMonth=3,sta
    rtDay=1,startDayOfWeek=1,startTime=7200000,startTimeMode=0,endMode=2,endMonth=9,
    endDay=-1,endDayOfWeek=1,endTime=7200000,endTimeMode=0]],firstDayOfWeek=1,minima
    lDaysInFirstWeek=1,ERA=1,YEAR=2004,MONTH=4,WEEK_OF_YEAR=18,WEEK_OF_MONTH=1,DAY_O
    F_MONTH=1,DAY_OF_YEAR=122,DAY_OF_WEEK=7,DAY_OF_WEEK_IN_MONTH=1,AM_PM=0,HOUR=11,H
    OUR_OF_DAY=11,MINUTE=15,SECOND=25,MILLISECOND=321,ZONE_OFFSET=-18000000,DST_OFFS
    ET=3600000]it looks like it only subtracted 30 days from current date. i wonder what happen to the 60 days. does anyone have any idea why? thanks for ur help.

    DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT);
    Calendar calendar = Calendar.getInstance();
    System.out.println("current day : " + df.format(calendar.getTime())); // 6/30/04
    calendar.add(Calendar.DAY_OF_MONTH, -60);
    System.out.println("after adding (-60), the day is " + df.format(calendar.getTime())); // 5/1/04What's the problem?

  • Calendar.add for Central African Timezone (GMT +2)

    Hi all,
    I am trying to add x days to 1900-01-01 06:00 at the Central African Timezone (GMT +2). However, the result from simple Calendar.add(Calender.DATE, numDays) is giving me 4 min and 12 seconds less. This only happens when the final date pass March 1, 1903 (which is the only DST day of Central African).
    ie:
    origDate = 1900-01-01 06:00 CAT
    numDaysToAdd = 1154
    resultDate = 1903-03-01 05:55:48 CAT (instead of 06:00)
    I searched around the bug database and someone suggests to always use GMT to do calendar calculation. However, with that, I will get 2 extra hours.
    ie:
    origDate = 1900-01-01 06:00 CAT
    numDaysToAdd = 1154
    resultDate = 1903-03-01 08:00:00 CAT (instead of 06:00)
    Any idea on how to work this out?
    Here is the test code:
    import java.util.*;
    import java.math.*;
    public class Test2
    public static void main(String[] args) {
    TimeZone.setDefault(TimeZone.getTimeZone("Africa/Harare"));
    // Create a date set the Time to 1900/01/01 06:00 AM
    Calendar now = Calendar.getInstance();
              now.set(1900, 0, 1, 6, 0, 0);
              Date d = new Date(now.getTimeInMillis());
              System.out.println(d.toString());          
         System.out.println();
              // try to add 1154 days to d with GMT timezone
              Date d2 = addDaysWithGMT(d, 1154);
              System.out.println("Extra two hours: " + d2.toString());
              System.out.println();
              // try to add 1154 days to d with original timezone
              d2 = addDays(d, 1154);
              System.out.println("Missing 4 minutes and 12 seconds: " + d2.toString());
         public static Date addDaysWithGMT(Date d, int days) {
    Calendar now=Calendar.getInstance();
              now.setTimeZone(TimeZone.getTimeZone("GMT"));
              now.set(d.getYear() + 1900, d.getMonth(), d.getDate(), d.getHours(), d.getMinutes(), d.getSeconds());
              System.out.println("after set: " + now.getTime());
              now.add(Calendar.DATE,days);
              System.out.println("after add: " + now.getTime());
              now.setTimeZone(TimeZone.getDefault());
              return new Date(now.getTimeInMillis());
         public static Date addDays(Date d, int days) {
    Calendar now=Calendar.getInstance();
              now.set(d.getYear() + 1900, d.getMonth(), d.getDate(), d.getHours(), d.getMinutes(), d.getSeconds());
              System.out.println("after set: " + now.getTime());
              now.add(Calendar.DATE,days);
              System.out.println("after add: " + now.getTime());
              return new Date(now.getTimeInMillis());
    Any help would be appreciated.
    Thanks,
    Winnie

    Not going to read all that, especially with the unformatted code. However, a couple of things leap out at me.
    * 1903
    * 4 min., 12 sec.
    As a rough guess, this sounds like an accumulation of leap seconds.
    As a second out-of-my-butt guess--this TZ might be one of the less common/"popular"/well-known ones, so it's possible that it has various adjustments to its rules over the years. Note that I don't really know what I'm talking about here--just venting a vague gut feeling.

  • Calendar adds an extra day when creating an event in ios 8.1.3. Is this a known bug?

    When i add an event using the calendar app in ios 8.1.3, it adds an extra day to the event when using a range of dates. I am able to recreate the problem. when entering the event i select a range of dates and confirm that it is what i want. after submitting, i verify and it has added an extra day at the end. Is this a known bug or am i on my own? Help please. this is annoying having to check each event after entering it.

    Ive reset, restored and this is the second phone. Thought it maybe a wonky screen that would shift it while setting dates. THe only thing I can think of is that I am syncing with google calendar, but it only happens when setting events in ios not if i do it from google website on desktop PC.

  • Calendar add event doesn't work right

    Click on the + and it opens a window to create a quick event, but you can't type into the box.  Only pressing enter opens the new event window where you can specify the date, times, description.
    I'm using the daily view and have Calendar selected as default.

    Let me clarify what I know to work:
    If you are composing a message, and simply type, for example, www.cnn.com then when the message is sent, this will become an active, clickable, link and fully enabled -- but it is not seen as such while in the Compose window before sending.
    However, if you type a word, such as "news", highlight it, go to Edit, choose Add Hyperlink, and then type "www.cnn.com" in the resulting box (without the quotation marks), then it does not get correctly formed to be a valid URL when clicked in the message after sending, despite changing font color and underlining. The Add Hyperlink (to change ordinary words into links via HTML) is designed it would appear, mainly to copy and paste an URL from the address bar of a browser, and there are no typing shortcuts.
    I will now use this message to test the same in Safari:
    hyperlink1 vs hyperlink2 where the text for hyperlink1 does NOT include the http://
    This test proves the same is true of Safari and composing HTML for the creation of true Hyperlinks -- the address used must be the same as what will result in the address bar once the web page is reached.
    The code for the above, with ordinary brackets substituted for angle brackets is:
    [a href="www.cnn.com"]hyperlink1[/a] vs [a href="http://www.cnn.com/"]hyperlink2[/a]
    Ernie

  • Long shot...  Can an entry in Calendar add a new line in Numbers?

    I am a photographer.  I am setting up a very simple simple Job tracking spreadsheet.  Column A is Job number, column B is Client, column C is Date, etc...  One line per job type of thing.
    When I get a job I am often not at the computer so I enter it on my iPhone in the Calendar app.  Is there a way I can add some sort of flag in that entry which will then open my spreadsheet and add a new line with a new sequential job number and the Client and Date?
    I realize that is probably asking for a lot but I thought I would at least ask, just in case...
    Thank you for any help!
    Bo

    This is a proof-of-concept Applescript that logs events from Calendar into a Numbers spreadsheet. It expects a spreadsheet to be open, it doesn't put new events at the bottom of the table or add new rows if needed, it doesn't move the event from the Unlogged calendar to the Logged calendar. It doesn't do any error-checking (it would fail if you didn't have a calendar called "Unlogged Jobs"). But I think it has potential.
    tell application "Calendar"
              set event_count to (count events of calendar "Unlogged Jobs")
              repeat with x from 1 to event_count
                        tell event x of calendar "Unlogged Jobs"
                                  set {client, sdate, place} to {summary, start date, location}
                        end tell
                        tell application "Numbers"
                                  tell document 1
                                            tell sheet 1
                                                      tell table 1
                                                                tell column 2 to set value of cell (x + 1) to sdate
                                                                tell column 3 to set value of cell (x + 1) to client
                                                                tell column 4 to set value of cell (x + 1) to place
                                                      end tell
                                            end tell
                                  end tell
                        end tell
              end repeat

  • Bug on calendar Add Event

    Hi.
    Days ago I upgraded to iOS 5.0.1 (9A405) and some times have trouble to add a new event on my calendar.
    Press button "+", then type title and time of the event, when I hit "Done" just nothing happens. Event if I hit "Cancel" nothing happens and the App remains on the screen Add Event.
    This has happend twice.
    Thanks!,
    JN

    I don't have anything on that date, but just out of curiosity, is there anything scheduled for March 15th (or 14th) 2010? I ask because you have an event on March 9, 2009, which is the day after daylight savings time goes into effect.
    Either way, you might want to submit feedback to Apple.

  • Calendar add question

    hi all ! Im needing to configure a date to be the first day of the next month we are atm. For example if we are now at second of march the date should be for april's first.
    This is how Im calculating it atm.
               String sfechap = ("01" + "/" + (cal.MONTH+2) + "/" + saño2);
                    System.out.println(sfechap);
                    SimpleDateFormat sdfp = new SimpleDateFormat("dd/MM/yyyy");
                    java.sql.Date datNac2 = new java.sql.Date(sdfp.parse(sfechap).getTime()); //pasamos la fecha a este formatoI dont know why I have to add 2 to the formula to make it work. And I dont know how its going to behave with changing years,etc.
    The other method is to use cal.add(Calendar.MONTH,1); but I dont know if that changes the Calendar during the entire execution or just by that moment.
    I tried to use something like:
    String sfechap = ("01" + "/" + cal.add(Calendar.MONTH,1) + "/" + saño2);But this is not allowed saying that type void is not allowed.
    THanks a lot for your help

    dcminter wrote:
    Also look at JodaTime which is often recommended as an alternative to the supplied Date and Calendar classes.dcminter++
    #! /usr/bin/groovy
    import org.joda.time.*
    def firstDayOfNextMonth(date) {
        return date
                .withDayOfMonth(1)
                .withFieldAdded(DurationFieldType.months(), 1)
    expected = new LocalDate("2009-04-01")
    assert firstDayOfNextMonth(new LocalDate("2009-03-01")) == expected
    assert firstDayOfNextMonth(new LocalDate("2009-03-31")) == expected~

  • Calendar adds extra notifications on events.

    Since the latest Yosemite upgrade i have this annoying problem in calendar.
    I have set calendar to automatically add a notification 15 minutes before each event.
    But now it automatically adds one more "warning". The first extra notification is presented on the actual start time of the event.
    And even if I don't snooze it it automatically is changed 1 minute into the future. And this is every time i click on the notification.
    The extra notification doesn't exist until the start time of the event.
    And to remove it I have to go to the event in Calendar and manually remove it.
    Really annoying.
    I have removed and synced both the iCloud- and the Exchange-accounts.
    I have a Swedish OS.
    Latest Yosemite and latest iOS and so on.
    I have tried changing the time zone settings from auto to manual.
    And I have also removed the timezone prefs file. (Some seams to have problem with this file in the latest OS).
    Any tips?

    I've had this same issue, as have others, for years.  I think there's a long-standing bug or design decision in Mac OSX (or possibly iCloud) which causes these excess, unwanted notifications.
    The way I solved this issue for me is to not use the internal iCloud calendar sharing, but to subscribe to the ICS file on each device I want to see this calendar.  Use the  webcal:// or https:// URL provided by OSX Calendar app.  iOS, and Mac have mostly reliable, easy-to-use support for ICS subscriptions.  This should work (perhaps with a helper app) on Windows and Android as well.
    The subscribers to this calendar have (I believe) read-only access to the calendar, but also, no pesky notifications of changes.

  • How can i in MACBOOK Outlook's meeting calendar, ֿ add people to a existsting meeting without any of those who are alredy invited, will receive the invite again?

    I would like to add more people to a meeting already existing in my outlook calendar with the existing people will see the new people invite.
    How can i do that ?

    If it's slow on startup it would be extensions loading or LaunchDaemons starting up. 
    You should have a look in:
    /Library/LaunchDaemons
    /Library/Extensions
    You can count out anything in your home folder and it shouldn't put anything in /System as that's reserved for Apple. 

  • How to pass attendees email info in hotmail calendar add event url

    Hello,
    Could anybody here please help me, how to pass attendees email address information in add event calendar url.
    I Know how to create web calendar event with start date , end date, location and description information by using url like this -
    https://bay03.calendar.live.com/calendar/calendar.aspx?rru=addevent&dtstart=20140510T093846Z&dtend=20140511T093846Z&summary=Summary%20of%20the%20event&location=Location%20of%20the%20event&description=Description%20of%20the%20event&uid=
    but I want to know how to add attendees email address to the above url, what is the query string param?
    Any help is greatly appreciated
    Thanks & Regards,
    Narayana Karthik

    Hi Dave,
    I had already posted there, they only asked me to post it here to get answer.
    Please check it - 
    http://answers.microsoft.com/en-us/outlook_com/forum/ocalendar-oaddevent/how-to-pass-attendees-email-info-in-hotmail/f9ceaa8e-8d45-4985-9524-c7625c03e2c9?tm=1414837768577
    Any help is greatly appreciated.
    Thanks & Regards,
    Narayana Karthik

  • How to make calendar adds without siri

    how do i manually add calendar events without siri???

    Hi,
    According to your description, it seems to be jquery issue. So I suggest that you can post it in asp.net forum where you can get better answers.
    http://forums.asp.net/
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Calendar adds on iPhone don't post to outlook calendar-but to active appts

    the appointments I add on iPhone will show on active appointments on Outlook 2003 but not the Day/week/ month view. Also, if I change default on iPhone to Home calendar the appointments show there as well. This is a strange problem. I have a gen 1 16GB iPhone, updated to REv 2.0 and updated iTunes. Anybody help with this very strange occurence???

    Try this support document http://support.apple.com/kb/TS3999 about troubleshooting iCloud and calendar.

  • Iphone 4S calendar - Add button gone

    Hi Guys,
    Since a few days ( i am not certain for how long now ) the add appointment button ( the litte +  ) is gone from my calendar.
    Is this something stupid i am missing or a bug/setting/feature ?
    Thanks

    I have the same problem too. Please help.
    iPhone 4 / iOS 5.0.1
    Message was edited by: AbbyLhia

Maybe you are looking for

  • Disable all the previous dates in a calendar form

    hi guys, I am having a calendar form in which it displays all the previous,current,future dates and months.when i click on the particular button on the calendar it dispalys the date, month, and year.its working fine.But what i need is, i want to disa

  • CD-rw/DVD rom drive problem

    I am using IBM T43 type 1871 laptop. The problem is with my CD drive. It automatically ejects out  every time it wants to. The same won't happen if I put some CD in the drive. But the CD won't play properly as the system shows the autoplay often and

  • How to solve Error -8076

    My access on an external volume is limited to "read only". I wanted to use my full admin-rights for my Mac also for this external volume, by doing this I got the message, that an undefined error -8076 has happened and my action cannot be executed. Ha

  • After upgrade - Pb after imports have to replicate DS, activate Trs Rules

    Since the upgrade of our SAP BW system in BI 7.0, we encountered some problems a priori after import of transports requests. In our production system, we must regularly replicate datasources, activate active transfer structures and update rules with

  • Attempting to install version 8 on solaris x86

    The installation fails with: ERROR exception while configuring command-line utilities not enough space The installation claims to require 236 megs. The disk has 2.3 gig free