Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Online Purchases

Online Purchases

Scheduled Pinned Locked Moved The Lounge
helpdatabasecomquestion
13 Posts 12 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Matt Gerrans
    wrote on last edited by
    #1

    :wtf: Well, for the nth time, I just ordered something online (a headset thingy for the phone) only to get called back the next day and told they don't have the thing. It isn't even made any more, apparently. The online order form said the thing was "in stock." That's why I ordered it. This seems to be a very common problem, with many online shopping sites (one exception I've noticed is Amazon, but I think books may be relatively easy to quickly restock, especially with new on-demand printing facilities). But my real gripe isn't that they don't have the thing in stock (or never will), but that their stupid online system doesn't know (or care) about it. I thought the whole idea of computerizing your inventory was so that you could have real-time accurate data. I don't know if they intentionally have the "in stock" field always set to "true" just to avoid turning away customers, or if they are just too incompetent to keep the database up-to-date. Maybe someone here has worked on an online ordering system -- is this what the InStock property looks like?

    bool InStock
    {
    get
    {
    return true;
    }
    set
    {
    throw new InvalidOperationException(":doh:");
    }
    }

    (:confused: Why doesn't the pre block maintain the indentation? It does in the preview, but not in the post -- is that a CP bug?) Matt Gerrans

    L L realJSOPR T J 6 Replies Last reply
    0
    • M Matt Gerrans

      :wtf: Well, for the nth time, I just ordered something online (a headset thingy for the phone) only to get called back the next day and told they don't have the thing. It isn't even made any more, apparently. The online order form said the thing was "in stock." That's why I ordered it. This seems to be a very common problem, with many online shopping sites (one exception I've noticed is Amazon, but I think books may be relatively easy to quickly restock, especially with new on-demand printing facilities). But my real gripe isn't that they don't have the thing in stock (or never will), but that their stupid online system doesn't know (or care) about it. I thought the whole idea of computerizing your inventory was so that you could have real-time accurate data. I don't know if they intentionally have the "in stock" field always set to "true" just to avoid turning away customers, or if they are just too incompetent to keep the database up-to-date. Maybe someone here has worked on an online ordering system -- is this what the InStock property looks like?

      bool InStock
      {
      get
      {
      return true;
      }
      set
      {
      throw new InvalidOperationException(":doh:");
      }
      }

      (:confused: Why doesn't the pre block maintain the indentation? It does in the preview, but not in the post -- is that a CP bug?) Matt Gerrans

      L Offline
      L Offline
      Luis Alonso Ramos
      wrote on last edited by
      #2

      Matt Gerrans wrote: throw new InvalidOperationException(":doh:"); :laugh: -- LuisR


      Luis Alonso Ramos Intelectix - Chihuahua, Mexico Not much here: My CP Blog!

      1 Reply Last reply
      0
      • M Matt Gerrans

        :wtf: Well, for the nth time, I just ordered something online (a headset thingy for the phone) only to get called back the next day and told they don't have the thing. It isn't even made any more, apparently. The online order form said the thing was "in stock." That's why I ordered it. This seems to be a very common problem, with many online shopping sites (one exception I've noticed is Amazon, but I think books may be relatively easy to quickly restock, especially with new on-demand printing facilities). But my real gripe isn't that they don't have the thing in stock (or never will), but that their stupid online system doesn't know (or care) about it. I thought the whole idea of computerizing your inventory was so that you could have real-time accurate data. I don't know if they intentionally have the "in stock" field always set to "true" just to avoid turning away customers, or if they are just too incompetent to keep the database up-to-date. Maybe someone here has worked on an online ordering system -- is this what the InStock property looks like?

        bool InStock
        {
        get
        {
        return true;
        }
        set
        {
        throw new InvalidOperationException(":doh:");
        }
        }

        (:confused: Why doesn't the pre block maintain the indentation? It does in the preview, but not in the post -- is that a CP bug?) Matt Gerrans

        L Offline
        L Offline
        leppie
        wrote on last edited by
        #3

        More like:

        set
        {
        //todo
        }

        ;P top secret
        Download xacc-ide 0.0.3 now!
        See some screenshots

        J 1 Reply Last reply
        0
        • L leppie

          More like:

          set
          {
          //todo
          }

          ;P top secret
          Download xacc-ide 0.0.3 now!
          See some screenshots

          J Offline
          J Offline
          JohnJ
          wrote on last edited by
          #4

          Mine usually reads set { //Bloody hell CODE NEEDED HERE :-( }:omg: John Hudson Megan Forbes on Life's little accidents: Never, under any circumstances, take a sleeping pill and a laxative on the same night:~ :omg: http://www.rainbow-innov.co.uk[^]

          1 Reply Last reply
          0
          • M Matt Gerrans

            :wtf: Well, for the nth time, I just ordered something online (a headset thingy for the phone) only to get called back the next day and told they don't have the thing. It isn't even made any more, apparently. The online order form said the thing was "in stock." That's why I ordered it. This seems to be a very common problem, with many online shopping sites (one exception I've noticed is Amazon, but I think books may be relatively easy to quickly restock, especially with new on-demand printing facilities). But my real gripe isn't that they don't have the thing in stock (or never will), but that their stupid online system doesn't know (or care) about it. I thought the whole idea of computerizing your inventory was so that you could have real-time accurate data. I don't know if they intentionally have the "in stock" field always set to "true" just to avoid turning away customers, or if they are just too incompetent to keep the database up-to-date. Maybe someone here has worked on an online ordering system -- is this what the InStock property looks like?

            bool InStock
            {
            get
            {
            return true;
            }
            set
            {
            throw new InvalidOperationException(":doh:");
            }
            }

            (:confused: Why doesn't the pre block maintain the indentation? It does in the preview, but not in the post -- is that a CP bug?) Matt Gerrans

            realJSOPR Offline
            realJSOPR Offline
            realJSOP
            wrote on last edited by
            #5

            I don't think you realize how much overhead and physical space it takes to maintain a decent stock of porn videos... ------- sig starts "I've heard some drivers saying, 'We're going too fast here...'. If you're not here to race, go the hell home - don't come here and grumble about going too fast. Why don't you tie a kerosene rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001

            R B 2 Replies Last reply
            0
            • realJSOPR realJSOP

              I don't think you realize how much overhead and physical space it takes to maintain a decent stock of porn videos... ------- sig starts "I've heard some drivers saying, 'We're going too fast here...'. If you're not here to race, go the hell home - don't come here and grumble about going too fast. Why don't you tie a kerosene rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001

              R Offline
              R Offline
              Richard Jones
              wrote on last edited by
              #6

              :-O Mine is not to question Why, but to shake my head and sigh.:sigh:

              1 Reply Last reply
              0
              • realJSOPR realJSOP

                I don't think you realize how much overhead and physical space it takes to maintain a decent stock of porn videos... ------- sig starts "I've heard some drivers saying, 'We're going too fast here...'. If you're not here to race, go the hell home - don't come here and grumble about going too fast. Why don't you tie a kerosene rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001

                B Offline
                B Offline
                brianwelsch
                wrote on last edited by
                #7

                That's only when you're filming them yourself. You can save ALOT of space by purchasing someone elses. BW


                "Get up and open your eyes. Don't let yourself ever fall down.
                Get through it and learn how to fly. I know you will find a way...
                Today"
                -Days of the New

                1 Reply Last reply
                0
                • M Matt Gerrans

                  :wtf: Well, for the nth time, I just ordered something online (a headset thingy for the phone) only to get called back the next day and told they don't have the thing. It isn't even made any more, apparently. The online order form said the thing was "in stock." That's why I ordered it. This seems to be a very common problem, with many online shopping sites (one exception I've noticed is Amazon, but I think books may be relatively easy to quickly restock, especially with new on-demand printing facilities). But my real gripe isn't that they don't have the thing in stock (or never will), but that their stupid online system doesn't know (or care) about it. I thought the whole idea of computerizing your inventory was so that you could have real-time accurate data. I don't know if they intentionally have the "in stock" field always set to "true" just to avoid turning away customers, or if they are just too incompetent to keep the database up-to-date. Maybe someone here has worked on an online ordering system -- is this what the InStock property looks like?

                  bool InStock
                  {
                  get
                  {
                  return true;
                  }
                  set
                  {
                  throw new InvalidOperationException(":doh:");
                  }
                  }

                  (:confused: Why doesn't the pre block maintain the indentation? It does in the preview, but not in the post -- is that a CP bug?) Matt Gerrans

                  T Offline
                  T Offline
                  The Anonimator
                  wrote on last edited by
                  #8

                  Matt Gerrans wrote: Why doesn't the pre block maintain the indentation? It does in the preview, but not in the post -- is that a CP bug?) Yeah, CP has bugs between what it previews, what it shows, and what it emails. The solution is to contact these people and offer to write a REAL online store for them. I've had situations where I've had to contact a seller, and they start telling me how things work 'online', and I respond by telling them how the systems I've written work, and that there's no reason why they can't do the same.

                  1 Reply Last reply
                  0
                  • M Matt Gerrans

                    :wtf: Well, for the nth time, I just ordered something online (a headset thingy for the phone) only to get called back the next day and told they don't have the thing. It isn't even made any more, apparently. The online order form said the thing was "in stock." That's why I ordered it. This seems to be a very common problem, with many online shopping sites (one exception I've noticed is Amazon, but I think books may be relatively easy to quickly restock, especially with new on-demand printing facilities). But my real gripe isn't that they don't have the thing in stock (or never will), but that their stupid online system doesn't know (or care) about it. I thought the whole idea of computerizing your inventory was so that you could have real-time accurate data. I don't know if they intentionally have the "in stock" field always set to "true" just to avoid turning away customers, or if they are just too incompetent to keep the database up-to-date. Maybe someone here has worked on an online ordering system -- is this what the InStock property looks like?

                    bool InStock
                    {
                    get
                    {
                    return true;
                    }
                    set
                    {
                    throw new InvalidOperationException(":doh:");
                    }
                    }

                    (:confused: Why doesn't the pre block maintain the indentation? It does in the preview, but not in the post -- is that a CP bug?) Matt Gerrans

                    J Offline
                    J Offline
                    John M Drescher
                    wrote on last edited by
                    #9

                    I think this is intentional and not a bug. I believe they don't want to say that something is out of stock because they will loose business when customers take their whole order somewhere else. John

                    G 1 Reply Last reply
                    0
                    • J John M Drescher

                      I think this is intentional and not a bug. I believe they don't want to say that something is out of stock because they will loose business when customers take their whole order somewhere else. John

                      G Offline
                      G Offline
                      greba
                      wrote on last edited by
                      #10

                      But then the company is misleading the consumer, which can cause long term loss. In the short term you might get more customers buying, as they see you have everything you want. In the long term these same customers might not use your services as they don't know what there going to get from there order even though the website tells them they can get everything. And also, there's the extra cost of telling the customer that you don't have certain items in stock. Greba, My lack of content on my home page should be entertaining.

                      J P 2 Replies Last reply
                      0
                      • G greba

                        But then the company is misleading the consumer, which can cause long term loss. In the short term you might get more customers buying, as they see you have everything you want. In the long term these same customers might not use your services as they don't know what there going to get from there order even though the website tells them they can get everything. And also, there's the extra cost of telling the customer that you don't have certain items in stock. Greba, My lack of content on my home page should be entertaining.

                        J Offline
                        J Offline
                        John M Drescher
                        wrote on last edited by
                        #11

                        I agree with your analysis. However, I have had this happen to me enough times to at least suspect that it was intentional. And I do agree for the most part when I have been lied to about an item being instock the company did not get my future purchase. John

                        1 Reply Last reply
                        0
                        • G greba

                          But then the company is misleading the consumer, which can cause long term loss. In the short term you might get more customers buying, as they see you have everything you want. In the long term these same customers might not use your services as they don't know what there going to get from there order even though the website tells them they can get everything. And also, there's the extra cost of telling the customer that you don't have certain items in stock. Greba, My lack of content on my home page should be entertaining.

                          P Offline
                          P Offline
                          peterchen
                          wrote on last edited by
                          #12

                          but who thinks longterm now anyway? Consumers rarely do, and managers don't. And if everybody does it anyway, where do you take your order?


                          I never really know a killer from a savior
                          boost your code || Fold With Us! || sighist | doxygen

                          1 Reply Last reply
                          0
                          • M Matt Gerrans

                            :wtf: Well, for the nth time, I just ordered something online (a headset thingy for the phone) only to get called back the next day and told they don't have the thing. It isn't even made any more, apparently. The online order form said the thing was "in stock." That's why I ordered it. This seems to be a very common problem, with many online shopping sites (one exception I've noticed is Amazon, but I think books may be relatively easy to quickly restock, especially with new on-demand printing facilities). But my real gripe isn't that they don't have the thing in stock (or never will), but that their stupid online system doesn't know (or care) about it. I thought the whole idea of computerizing your inventory was so that you could have real-time accurate data. I don't know if they intentionally have the "in stock" field always set to "true" just to avoid turning away customers, or if they are just too incompetent to keep the database up-to-date. Maybe someone here has worked on an online ordering system -- is this what the InStock property looks like?

                            bool InStock
                            {
                            get
                            {
                            return true;
                            }
                            set
                            {
                            throw new InvalidOperationException(":doh:");
                            }
                            }

                            (:confused: Why doesn't the pre block maintain the indentation? It does in the preview, but not in the post -- is that a CP bug?) Matt Gerrans

                            T Offline
                            T Offline
                            Ted Ferenc
                            wrote on last edited by
                            #13

                            Or as Microsoft would put it:- 'That is by design'


                            "An expert is a person who has made all the mistakes that can be made in a very narrow field." - Neils Bohr

                            1 Reply Last reply
                            0
                            Reply
                            • Reply as topic
                            Log in to reply
                            • Oldest to Newest
                            • Newest to Oldest
                            • Most Votes


                            • Login

                            • Don't have an account? Register

                            • Login or register to search.
                            • First post
                              Last post
                            0
                            • Categories
                            • Recent
                            • Tags
                            • Popular
                            • World
                            • Users
                            • Groups