Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
153 views

Reopen a complete/closed order in Magento?

Is there a way to programmatically reopen an order in Magento that has already reached complete or closed status? I have the following code which works for changing the status of an order, but I can't ...
2
votes
3answers
53 views

Best Database Structure for Orders

I am torn in between two ways of structuring my database for processing orders. I am not sure if one way will be faster than another. If they are going to be equal then it probably should not ...
2
votes
1answer
55 views

Windows graphics orders implementation in java

Anybody knows how implemented PatBlt in JAVA. Or have some additional info about Brush.
1
vote
1answer
135 views

Paypal IPN Inventory Control

I have been developing an online retail shop. It is written in php and uses paypal and IPN to handle payments. I have written my own shopping cart. When the user wants to checkout they click on ...
1
vote
0answers
185 views

Create order per product item on Magento [ask]

Can we create the order per product item on Magento when we go to checkout process..? For example : If on my shopping cart, I've 2 products, so the order is separates into 2 orders.. Thanks..
0
votes
1answer
44 views

Magento placing order error

I have problem with Magento Enterprise ver. 1.10.1.1 All new products have problem what placing order. Javascript popup with this error is showing: "There was an error processing your order. Please ...
0
votes
0answers
26 views

Sunspot_mongoid Sort/order facet results by attribute e.g. created_at

I want sort/order my sunspot result of newer to older result with sunspot_mongoid. I have this in my model.rb searchable do text :content, :boost => 2.0 time :created_at end and this ...
0
votes
0answers
30 views

Why orders are not being created but they are being process by Linkpoint on Magento

I’ve been looking for hours how to fix this problem, I have linkpoint on my store (using magento) and I have receive complaints from clients that they are charged but they don’t receive any ...
0
votes
2answers
239 views

Get order ids with status = 'Complete' in Magento

I am working on getting order ids and other details for orders with status ='complete' in Magento. I am sure there is a way in magento where we can retrieve all orders with status as Complete. Since I ...
0
votes
2answers
164 views

magento custom order attributes

i'm trying to add some custom attributes to the checkout(sales) page of magento 1.5.1.0 for orders created from the backend (administrator) panel. I tried this code and i can see my new attribute in ...
0
votes
1answer
26 views

E-commerce which file type to use to format orders

I'm wondering which is the best practice to format into a file the received orders? For now i'm using PDF but i would like to know if is out of there a lighter and more usefull file type. thanks
0
votes
2answers
50 views

OrderBook DB Design

The OrderBook is filled with buy and sell orders. Updates, new orders may execute trades. I can't seem to find any examples of implementation. We could give each order an id, and checkExecute orders ...
0
votes
0answers
68 views

Restrict Orders View in Magento Admin to Specific Statuses

In the Magento admin, when you click "Orders", all orders are displayed based on date. This includes completed orders, canceled orders, etc. We have specific statuses (Processing, Pending Shipment) ...
0
votes
1answer
185 views

Looking to invoice Gift Card Purchases after Order Submit

I've got a basic observer function to grab all of the gift items in an order and return them: public function invoiceGiftCards($observer){ $order = $observer->getEvent()->getOrder(); ...
0
votes
0answers
301 views

Insert barcode after order ID in a list of orders generated by Volusion

I have an order receipt page auto generated by our system. I need to add barcodes for each order number. I have the basis set up, but I am running into two problems. 1) The barcode is printing ...
0
votes
0answers
426 views

Magento Custom query to import orders

I need a custom php coding to import orders to Magento. Please help. Please do not suggest any paid solutions. Thanks
0
votes
1answer
133 views

Change prices of multiple sales receipts in Quickbooks?

I import order information into Quickbooks but have recently made some changes, one of which meant that the latest batch of orders had the wrong prices entered. There are approx 1500 sales receipts ...
0
votes
2answers
918 views

magento orders list query

I want to select the list of all orders in Magento. This is required for me to show the list of all the orders from magento in another PHP application presently I'm working on. Also can some one ...
0
votes
1answer
4k views

how to get payment information on Magento?

I have to export the orders to a file, here is my code to go through the orders: $orders = Mage::getModel('sales/order')->getCollection() ->addAttributeToSelect(array('status', 'ncm')) ...
0
votes
2answers
129 views

Too many records, WAMP gets hang, for exporting my customers with no orders to CSV

I am trying to export my records for Customers who have not ordered yet, to CSV and while running that script, my local WAMP server gets hault, and no response from my computer, even waiting for an ...
0
votes
2answers
145 views

Not being able to order by includes on Rails3

I have the following expression: user.clocks.includes(:users, :runs => :user_runs).find_by_id(params[:id]) which seems to work fine. But when I add an orders, like this: ...