Login Form






Lost Password?
No account yet? Register
Freelancer Jobs arrow Freelancer Jobs - Archive 2007
JobId: #1401441

Price calculator and order component in Joomla

Categories: Requirements,Web Services,Software Related (Includes Websites)
Posted By: hstrom  (1 ratings)
Source: Rent-a-coder
Job viewed: 320 times
Bids Placed: 2
Start Date: 2010-05-01 08:46:00
End Date: 2010-05-15 07:18:22
Time Remaining:
Deadline: 30 days.
Current Phase: Bidding open
Max Accepted Bid: Open to fair suggestions
Project Type:
Bid Type: Open Auction
Brief Summary:

We need acalculator as a Joomla component that can calculate the prices of our customersbook printing orders in realtime.

In frontend the customer should be able to enter the specifications of their book andthe calculator should calculate the total cost in realtime. Then the customershould be able to order the book by uploading files and entering their contactinformation. The order with attached files should be sent as an email both tous and as a confirmation to the customer, and stored in component’s back end.



Requirements Interview Answers:
To help you bid more accurately, the buyer was interviewed about the requirements for this bid request. Below are their answers. Untitled Page
Bid request Type: What kind of work do you need done?
Software related (Includes desktop applications and internet websites)
Bid request Parts: What do you want the worker to do on this bid request?
Requirements: The worker will analyze the problem and propose a software-based solution to the problem.
Programming: The worker will take the requirements and translate them into the language of the computer (and test it).
Req. Doc. Type: What kind of documentation do you want for this bid request?
Formal documentation - After talking back and forth, the worker creates a formal document and/or prototype, as follows:
  • Prototype: The analyst will create a non-working mockup of all pages/screens in the final software. Creating a prototype makes it easier for the user to visualize the final software, and reduces misunderstandings.
  • Requirements Document: The analyst will create a document describing everything the final software will do (other than what is documented in the prototype...if the buyer required one).
Program Type: What kind of software should the worker create (and/or install)?
  • Other:Joomla component
Legal: 1) I require complete and fully-functional working program(s) in executable form as well as complete source code of all work done (so that I may modify it in the future).
2) Deliverables must be in ready-to-run condition as follows (depending on the nature of the deliverables):
2a) If there are any server-side deliverables (intended to only exist in one place in the Buyer's environment) then they must be installed by the Worker in ready-to-run condition (unless specified elsewhere by the Buyer).
2b) All other software (including but not limited to any desktop software or software the buyer intends to distribute) must include a software installation package that will install the software in ready-to-run condition on the platform(s) specified in this bid request (unless specified elsewhere by the Buyer).
3) All deliverables will be considered "work made for hire" under U.S. Copyright law. Buyer will receive exclusive and complete copyrights to all work purchased.
3b) No part of the deliverable may contain any copyright restricted 3rd party components (including GPL, GNU, Copyleft, etc.) unless all copyright ramifications are explained AND AGREED TO by the buyer on the site per the worker's Worker Legal Agreement.
Other Requirements:

Price calculator and order component in Joomla

We need a calculator as a Joomla component that can calculate the prices of our customers book printing orders in realtime.

In front end the customer should be able to enter the specifications of their book and the calculator should calculate the total cost in realtime. Then the customer should be able to order the book by uploading files and entering their contact information. The order with attached files should be sent as an email both to us and as a confirmation to the customer, and stored in component’s back end.

Backend specifications:

Categories

Here we should be able to enter different categories of jobs, like book printing, flyer printing etc.

Specifications

Here we should be able to add different specifications connected with the specific categories. We should be able to choose what kind of data the customer should enter: Textbox, textarea, drop-down, checkbox, radio, file upload, calendar, hidden. And we should be able to enter validations, like numeric, alphanumeric, alpha and required/not required.

Calculations

Here we should be able to add different calculations based on the specifications or other calculations. When we create a new calculation, we should choose category and by that what specifications or other calculations we want to use in the calculation. The specifications should be presented as tags and we should be able to write the calculation like “{spec1} * {spec2}” and in some kind of Excel logical manner, like “case ({spec1}=”blabla” ; {spec1}*{spec2};[…];{spec3})”. We should be able to use the most common mathematical: +-/*<>=.

Front end templates

When we create a category a simple standard html template should be created and filled with each specification and calculation we create as tags, like {amount_of_bw_pages}, {amount_of_books} etc. This is the html that will show the category at front end. This html template we should be able to change accordingly to our needs. New specifications should be saved as tags at bottom of existing template.

An example

We create a category “Book printing”. We create these specifications in that category: “Amount of black/white pages” (textbox), “Amount of color pages” (textbox), “Amount of books” (textbox), “File to upload” (file upload). We create these calculations:

“Price per book” : case (({s:bwpages} * 0,2)*(1-({s:amountofbooks}/100))) > {s:bwpages}*0,1 ; {s:bwpages}*0,1 ; ({s:bwpages} * 0,2)*(1-({s:amountofbooks}/100))

 “Total price” : {c:priceperbook} * {s:amountofbooks}

“Freight cost” : case (({s:bwpages}*0,01) * {s:amountofbooks} > 250 ; 25 ; ({s:bwpages}*0,01) * {s:amountofbooks} < 251 or ({s:bwpages}*0,01) * {s:amountofbooks} > 500 ; 50 ; ({s:bwpages}*0,01) * {s:amountofbooks} < 501 or ({s:bwpages}*0,01) * {s:amountofbooks} > 1000 ; 50 ; 100 ; ({s:bwpages}*0,01) * {s:amountofbooks} < 1001 or ({s:bwpages}*0,01) * {s:amountofbooks} > 5000 ; 150 ; ({s:bwpages}*0,01) * {s:amountofbooks} < 5001 ; 200)

“Total amount to pay”: {c:totalprice} + {c:freightcost}

Explanation of this example calculations:

“s:” and “c:” tells the system if it’s a specification or a calculation it should use (maybe not necessary?).

In “Price per book”-calculation it takes the number of specification “b/w pages” * 0,2 (for example 100 pages * 0,2 = $20) and calculates a discount depending on the specification “amount of books” to withdraw from that. If the price - discount is less than the b/w pages * 0,1, it will use b/w pages * 0,1 as it’s price (for example 100 pages * 0,1 = $10).

The “Total price”-calculation takes the calculation “price per book” * the specification “amount of books” to get the total price.

The “Freight cost”-calculation calculates the number of grams all books will weigh in the order and gives the freight cost, for example $25 for under 250 grams, $50 for 250-500 grams etc.

The “Total amount to pay”-calculation adds the calculations “total price” and “freightcost”.

 

Front end specifications

As all components in Joomla, we should be able to attach the component to a menu and choose which category it should link to. When the customer clicks on this menu link he/she should get to the template of that category and be able to fill out the form with the specifications we have created. As soon as the customer enters a data into a field, the calculation fields should adjust accordingly in realtime.

When the customer is satisfied he should be able add his/hers contact information and address below and then click on a link at the bottom: “Order this printing”. The files should be uploaded to the server and a “thank you”-screen should appear.

<div style="border-top-style: none; border-right-style: none; border-left-style: none; border-width: initial; border-color: initial; border-bottom-style: solid; border-bottom-color: windowtext; border-bottom-width: 1pt; padding-top: 0cm; padding-right: 0cm; padding-bottom: 1pt; padding-left: 0cm; ">

An email should be sent to both us and the customer with all data the customer entered and all data of the calculations as they were presented on the site. The files should be sent as attachments to the email.

 

 

All text in frontend should be able to be altered in a language file. The component should be delivered as an ordinary .zip installation package for Joomla.

  • All deliverables must be uploaded to Rent A Coder before the deadline(s) for this bid request...with no exceptions. If this contract makes it impossible for a competent person to do this, then do not start this bid request...but instead alert Rent A Coder of an un-arbitratable, illegal bid request.
  • Remember that contacting the other party outside of the site (by email, phone, etc.) on all business bid requests <$500 (before the buyer's money is escrowed) is a violation of both the software buyer and worker agreements. Rent A Coder monitors all site activity for such violations and can instantly expel transgressors on the spot, so we thank you in advance for your cooperation. If you notice a violation please help out the site and report it. Thanks for your help.
Categories:
(Note: Like everything else on this page, these categories are part of the original contract for this bid request.)
Web development, Requirements, Other (Technology), Web services, Software related (includes websites), Joomla


Expert Guarantee Required:

     It is crucial to the buyer that this entire bid request be completed (100%) by the deadline of 30 days. They only want expert workers who will commit themselves to this deadline to bid. If you are not an expert or unable to commit completely to the deadline, then DO NOT BID on this bid request.

     If you are an expert and can commit, the buyer would like you to demonstrate this by making an
Expert Guarantee of at least 10% of your bid. (This would not need to be made now...but only if and when you are are selected as the winning bidder). If you complete the job (100% by the deadline), then your deposit would be refunded to you. If you do not, then you would forfeit the deposit and it would go to cover the buyer's cancellation charge and the remainder donated to a non-profit charity.

     Please note that depending on how you choose to make the deposit, there may be a small, non-refundable processing fee. This fee can be reduced or eliminated by choosing a less expensive method of payment. Or, you may wish to ask the buyer to cover the cost of the fee for you. You can do this in a number of ways such as: increasing the price of your bid, asking the buyer to post a 2nd bid request to cover it (contingent on completion of the bid request), or by getting the buyer to promise to pay the fee to you as a bonus (upon completion of the bid request). If you choose the bonus route, just remember that due to credit card/PayPal rules, Rent A Coder CANNOT force a buyer to pay a bonus involuntarily...even when promised on-site. So don't choose this option, unless you trust the buyer, or are willing to take a small risk.

     This is just a very brief overview of how the Expert Guarantee works and there are many more details that you need to understand fully before you bid on this bid request. DO NOT BID on this bid request until you've read and fully understand everything about the Expert Guarantee (including reading the contract and the FAQs).