Attach file to sale order in odoo9 - odoo-9

I'm using odoo8 and it has ability to attach a file in sale order such as there:
What is the addons in odoo9 can do similarly?

Attachments List and Document Indexation

Related

Magento 2 Bundle product with multiple inventory sources

first off a happy new year to you all.
We're running into the following problem and are having arguments with our dev's on how to solve/tackle the issue.
We're expanding into a new country and have generated a new Website, Store and Storeview to do this in our existing Magento2 (v2.4.2) install. As we'll be operating under a different name/company specific to that country.
In Magento we've added a new Inventory Source, because we'll be holding stock in a warehouse in that country. Timewise it's not efficient to ship from our main warehouse.
So far this all works correct, test orders etc are all deducted from the local stock source.
Now comes the part that goes wrong:
Bundle products. Whenever we want to save a bundle product in the admin, we get the error
Product "123456" cannot be added to bundle product as bundle product has "Ship Bundle Items Together" and "123456" product assigned to multiple sources or has different source then rest of bundle items.
Product 123456 is assigned to both Inventory Sources, so are the other items in the bundle.
So it seems that the error thrown at us, is incorrect.
I don't want to change the "Ship bundle items together" option, as that would pull stock from multiple inventory sources.
Has anyone here had experience with this? Or knows a clever workaround past this?
Any help is appreciated.
Thanks.
Magento 2.3.0 + MSI support bundle products in Single Stock Mode (on Default Source and Default Stock). In this setup, Magento reuses the legacy CatalogInventory Stock Status index where Bundle products are supported. That's why merchants who use Bundle products on a single stock are not affected.
You can read more about Supported Product types here: https://docs.magento.com/m2/ce/user_guide/catalog/inventory-about-product-types.html
Currently, there is no possibility to assign Bundle Products to custom sources, as a new Inventory indexation mechanism (which builds indexes per each Stock) does not support indexation of Bundle Products yet. This functionality is part of the Milestone 3 MSI backlog which you mentioned above.

Magento drop down to be selected by buyer

I am new to Magento. The website I am working on sells contact lenses and some custom attributes need to be added on the product page. Now requirement states that user has to select some prescription values from drop-down fields before adding the product to cart. I am totally lost on how to do it. This question asks the same thing:
Fields to be filled by the buyer in magento product page
But the answer points to dead link. How to retrieve some custom information from user on product page and store it along with order?
This is possible with custom option. Magento provide custom option facility. when you create custom option then it displayed on product page and you will get information from customer and that information stored in order automatically.
reference link : https://www.youtube.com/watch?v=wfZCXjWqrSM
You can create Dynamic custom option. I have answered thw whole process here:
dynamically add product custom options magento
As the Custom option applicaple to particular category. so you need to add required conditionon on precription form on product detail page.
You can manage this using custom option and there is a great module available in magento connect to achieve your goal.
http://www.magentocommerce.com/magento-connect/custom-option-manger.html

How to add an extra field in magento admin panel to upload a pdf?

I'm new to magento. I need to give an option to upload the pdf in the add product page.
Just need to give the file upload option with extra field.
I'm using magento 1.7.
Thanks in advance.
There are two ways you can achieve this:
1. Easy one
Create a new product attribute, let's say product_pdf text field, and assign it to some group and attribute set. This field should now reflect in your admin's product page and allow you to save PDF name.
Then make a directory on your Magento (may be in media/pdf) and save all your PDFs if you have. If not, then each time you save the value in Product's custom attribute that we created (product_pdf), also upload the PDF manually at the location you created (media/pdf).
So whenever in frontend you want to show the PDF of product, you will always get the file name from product_pdf attribute and the location should be media/pdf.
2. Difficult/Lengthy one:
Create a file uploader in your Magento Admin's Manage Product screen. Here everything should be in your custom module, from creating a new field to uploading it.
I will not go far, but give you some place where you can exactly know how to go with it: http://www.magentocommerce.com/boards/viewthread/11667/P0/

Modify an Order via the API prior to Invoicing?

In the default Magento 1.7 install is it possible to modify an order via the API prior to it being invoiced? I know there is no mechanism to do this in the Admin without a module but wasn't sure if the new API connections may allow this to happen.
To clarify, the idea here is someone places an order and then decided that they want to add something else to the order. Ideally I would like to push this change via the API from our other inventory system as our CSRs do not use the Magento interface to handle invoicing or shipment details.
I'm afraid this is not possible with the default Magento API. See the Sales Order API documentation. You may hold or cancel the order but not edit its information.
If you edit an order in the Magento backend and save it, the old order is cancelled and a new order is created. These orders are recognisable by a special number format ("-[versionnumber]" is appended to the order number), see the Managing and Editing Orders documentation.
You may want to mimic this behaviour using the default Magento API.
Get the information from the current order.
Create a new cart, fill it with the corrected information and create a new order for this cart (see the Checkout/Cart API documentation for necessary methods).
Cancel the old order.
It won't be trivial, but it should be possible.

Filtering Order Reports in Magento to show which brand's products were sold

We are creating a flash sale site and need to be able to filter our Order Reports by brand and export this data so that we can quickly and accurately create Purchase Orders for them after the sale has been run. Right now, we are only able to filter orders by period and order status etc, but we cannot see without clicking on each order what was purchased and from what brand.
Can anyone help us here?
Thank you!
try the following links :
Creating custom report
Custom Reports in Magento
Create custom reports in Magento Admin

Resources