Search found 11 matches
- Mon Oct 05, 2009 10:04 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Editing Order Confirmation to display different tax rules
- Replies: 8
- Views: 5144
Re: Editing Order Confirmation to display different tax rules
Hey Mazhar, Thanks for pointing me to the other forum... Took a look and tried it out, but it doesn't help me in my case.. I need to take a sum of a stated variable. Actually, what I almost need, is some way to say "If $orderItem.Name Exists more than twice than take a sum - else just output the sam...
- Thu Oct 01, 2009 2:04 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Editing Order Confirmation to display different tax rules
- Replies: 8
- Views: 5144
Re: Editing Order Confirmation to display different tax rules
Hello again. Just reviewing the change to our invoice, and we found one more issue. This way works, however when you have multiple shipments in the same order, the tax displays by the shipment not the order. I figured a could solve this problem by taking the shipments GST and adding each together an...
- Thu Oct 01, 2009 9:37 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Editing Order Confirmation to display different tax rules
- Replies: 8
- Views: 5144
Re: Editing Order Confirmation to display different tax rules
I have this block of code that I modified based on your suggestion. This is the solution that I found... Thanks Mazhar! #each #if (($orderItem.OrderItemType == "Product") || ($orderItem.OrderItemType == "Discount") || ($orderItem.OrderItemType == "GiftWrap") || ($orderItem.OrderItemType == "Coupon")...
- Wed Sep 30, 2009 1:29 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Editing Order Confirmation to display different tax rules
- Replies: 8
- Views: 5144
Re: Editing Order Confirmation to display different tax rules
Thanks Mazhar! Appreciate your help.
Again, sorry I am new to ASP.Net - so if I understand correctly I can use the block of code above and replace "Tax" with such as "GST"
and **IF** the GST exists, it will output the price?
Again, sorry I am new to ASP.Net - so if I understand correctly I can use the block of code above and replace "Tax" with such as "GST"
and **IF** the GST exists, it will output the price?
- Tue Sep 29, 2009 10:19 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Editing Order Confirmation to display different tax rules
- Replies: 8
- Views: 5144
Editing Order Confirmation to display different tax rules
Hi everyone,
For accounting purposes we want to split our Order Confirmation to show sets of Tax Rules(GST, PST - all seperate), rather than just TAX all lumped into one section. We need to be able to seperate it. Any idea's?
Thanks.
For accounting purposes we want to split our Order Confirmation to show sets of Tax Rules(GST, PST - all seperate), rather than just TAX all lumped into one section. We need to be able to seperate it. Any idea's?
Thanks.
- Mon Sep 28, 2009 2:59 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Custom Shipping Costs
- Replies: 5
- Views: 3925
Re: Custom Shipping Costs
I think that this custom shipping charge functionality incorporated by you and is custom? These custom charges are being rendered under other charges because these are added as other charges. In order to put them under shipping you need to add these charges as shipping item which won't work in this...
- Mon Sep 28, 2009 11:04 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Custom Shipping Costs
- Replies: 5
- Views: 3925
Re: Custom Shipping Costs
Yes, It is completely custom. One thing I have noticed is that AbelCommerce inserts a SKU of 'Shipping' on all built-in shipping methods. When I have my custom shipping method, it leaves the SKU blank. Here is a snippet of my code: <div class="shippingCharge"> <div style="margin-left: 100px"> <asp:R...
- Mon Sep 28, 2009 9:14 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Custom Shipping Costs
- Replies: 5
- Views: 3925
Re: Custom Shipping Costs
In 7.0.3 you can edit order and then you can add a new shipping charge by specifying item type as shipping from shipping or edit order item section. What is your application version? In my testing I added a new shipping item and its appearing in shipping section on invoice page. Our Application ver...
- Thu Sep 24, 2009 11:30 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Gift Message & Delivery Instructions Disappear
- Replies: 7
- Views: 6541
Re: Gift Message & Delivery Instructions Disappear
Yes, I understand that. But when you look at this code that you posted above (that I have just put below), there is nothing in there that refers to StoreBasketShipMessages and if this code below is supposed to be in SG_OrderHelper class file, and you are refering to a Sg_OrderHelper.StoreBasketShipM...
- Thu Sep 24, 2009 11:01 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Gift Message & Delivery Instructions Disappear
- Replies: 7
- Views: 6541
Re: Gift Message & Delivery Instructions Disappear
Hello.
I tried this and I get the following error:
error CS0117: 'ConLib_ShipMethodPage.SG_OrderHelper' does not contain a definition for 'StoreBasketShipMessages'
Any Suggestions?
I tried this and I get the following error:
error CS0117: 'ConLib_ShipMethodPage.SG_OrderHelper' does not contain a definition for 'StoreBasketShipMessages'
Any Suggestions?
- Thu Sep 24, 2009 10:44 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Custom Shipping Costs
- Replies: 5
- Views: 3925
Custom Shipping Costs
Hello. I am fairly new to AbelCommerce & Asp.Net so any help would be great. We have a section in our Admin area where we can do Custom Orders. In this Custom Order, say we have a Phone Order, and the client think that the shipping Cost is too high, we want to be able to go in a change it. We have t...