Richard Shall
Richard Shall
  • Видео 30
  • Просмотров 35 116

Видео

Deferred Revenue in Odoo V14
Просмотров 6843 года назад
Short video explaining how to set up automated Deferred Revenue generation and tracking with Odoo V14 Enterprise edition.
Odoo Online Sales Quotation Work Flow
Просмотров 2443 года назад
A short video on Odoo V14's online quotation functionality which is great for capturing your clients signature and payment up front or for inputting your clients credit card information for them.
V14 Inventory Cost Accounting
Просмотров 1474 года назад
Learn the difference between the three different cost accounting methods: Standard, FIFO, & Average.
V14 Product Configuration Financial Accounts
Просмотров 334 года назад
Learn the difference between setting up your Income and Expense accounts on your product and your product category.
Multi Language and Translations in Odoo - Part 2
Просмотров 824 года назад
Multi Language and Translations in Odoo - Part 2
How to install Demo Data in Odoo version 13
Просмотров 1,9 тыс.5 лет назад
How to install Demo Data in Odoo version 13
Picking before manufacturing in Odoo
Просмотров 8465 лет назад
Picking before manufacturing in Odoo
How to set up MTO products in Odoo
Просмотров 1,6 тыс.5 лет назад
How to set up MTO products in Odoo
Odoo many2one, many2many, & one2many explained
Просмотров 10 тыс.5 лет назад
Odoo many2one, many2many, & one2many explained
Reconciling Entries in Odoo
Просмотров 2,1 тыс.5 лет назад
Reconciling Entries in Odoo
Printing Checks with Odoo
Просмотров 4,2 тыс.5 лет назад
Get your Odoo V12 check stock here: www.checkdepot.net/checks/laser/Odoo.htm
Manufacturing Order Planning in Odoo
Просмотров 1065 лет назад
Manufacturing Order Planning in Odoo
Odoo Taxes & Fiscal Positions
Просмотров 6495 лет назад
Odoo Taxes & Fiscal Positions
Multi Language and Translations in Odoo
Просмотров 5925 лет назад
Multi Language and Translations in Odoo
How to handle down payments in Odoo
Просмотров 2,6 тыс.5 лет назад
How to handle down payments in Odoo
Odoo Fedex Shipping Integration
Просмотров 1,6 тыс.5 лет назад
Odoo Fedex Shipping Integration
Importing Serial Numbers for a Receipt in Odoo
Просмотров 7045 лет назад
Importing Serial Numbers for a Receipt in Odoo
Multi Company Reporting in Odoo
Просмотров 2,1 тыс.5 лет назад
Multi Company Reporting in Odoo
Changing Your Website Logo
Просмотров 345 лет назад
Changing Your Website Logo
Generating a Receipt from an RFQ
Просмотров 185 лет назад
Generating a Receipt from an RFQ
MPS not Launching Procurement works in Demo
Просмотров 115 лет назад
MPS not Launching Procurement works in Demo
Odoo Studio Report Modifications
Просмотров 7915 лет назад
Odoo Studio Report Modifications
How to Create Filters for Financial reports
Просмотров 495 лет назад
How to Create Filters for Financial reports
INTERNAL Sending email from Invoice
Просмотров 115 лет назад
INTERNAL Sending email from Invoice
V12 1 CRM list to Form to Kanban
Просмотров 345 лет назад
V12 1 CRM list to Form to Kanban
How to set up a Mail Server in Odoo
Просмотров 1745 лет назад
How to set up a Mail Server in Odoo
How to duplicate your Odoo database and more!
Просмотров 3,7 тыс.5 лет назад
How to duplicate your Odoo database and more!
How to install Demo Data in Odoo version 12
Просмотров 1725 лет назад
How to install Demo Data in Odoo version 12
How to Create a Trial v12
Просмотров 1575 лет назад
How to Create a Trial v12

Комментарии

  • @pandarikkal
    @pandarikkal Месяц назад

    can you please create a demo how a master detail form is created using odoo studio and explain how one2many and many2on is applied in it ?

  • @zkhater63
    @zkhater63 3 месяца назад

    perfect

  • @HamzaAslam-f9o
    @HamzaAslam-f9o 4 месяца назад

    Finally I understood. Thanks Richard.

  • @CrazySquareRoot
    @CrazySquareRoot 5 месяцев назад

    x2y - x refers to the source model (the model having the field) y refers to the target model 1. One2One Not explicitly used by Odoo. Meaning: that every source model is related by the field to at most one target model. And vice versa. Logical meaning: From the source model we can uniquely determine the target model and vice versa. Abstract Example: The social security number of a person is unique. Given the person (source model), we can uniquely determine his/her social security number (target model), and given the social security number, we can uniquely determine the person. Usual database representation: two columns (fields) in a single table. Meaning that we don't usually use separate models. E.g.: There is no separate 'social security number' model. The 'person' model has a 'social security number' field on itself. Odoo field type: not distinguished (keeps such data in a single table) 2. Many2One Meaning: source model can point to at most one target model, but many different source models can point to the same target model Logical meaning: From the source model field we can uniquely determine the target model. But from the target model, we can't uniquely determine the source model (there are potentially many source models pointing to it). Abstract Example: A customer (source model) can have just one surname (target model). However, any particular surname can be shared by different customers. Given the specific customer, we can uniquely determine his/her surname, but given the specific surname, we can't uniquely determine the customer. Usual database representation: column on source model pointing to target model id Odoo field type: usually an integer type pointing to target model id (target models have array type fields pointing to sources) 3. One2Many Meaning: the reverse of point 2 from a different perspective. Logical meaning: From the source model field we can't uniquely determine the target model (we are potentially pointing to many target models). But from the target model, we can uniquely determine the source model. Abstract Example: A surname (source model) can point to many different customers. But a particular customer has just one surname. Usual database representation: column on target model pointing to source model id Odoo field type: usually an array of target model ids (target models have integer type field pointing to source). 4. Many2Many Meaning: every source/target model can point to many different target/source models Logical meaning: we can't - as a rule - uniquely determine the target model from the source mode and the source model from the target model. Abstract Example: A person can have many nicknames and a particular nickname can potentially be shared by different people. A person (source model) can point to many different nicknames (target models), and any nickname can point to many different persons. Usual database representation: separate table with columns relating source model with target model. A row in such table looks like this: row_id, source_id, target_id. Odoo field type: usually an array pointing to the target model ids (target models have analogous fields pointing to source models).

  • @htmalmdn
    @htmalmdn Год назад

    thank you

  • @jacowaes
    @jacowaes Год назад

    Now ... :-) landed costs to this interwarehouse transfers ...

  • @jesusoscarvazquez6666
    @jesusoscarvazquez6666 Год назад

    Thank you so much for this. I was able to create the multi-company report although all of the accounts are duplicated where the values don't fall on the same row when put together. The account names are identical for each company so I don't know why they are being separated Do you know how to fix this? I have Odoo version 13 thanks again!

    • @richardshall9582
      @richardshall9582 Год назад

      Hello Jesús, With the approach I demonstrated I think the only way you can accomplish what you're looking to accomplish is with account groups that are designed just for those accounts. This way they'll be bunched together in one group and the group will display the sum of the two accounts. Since these are two different accounts (records) in different companies, despite sharing the same name and code, they are not the same account. There is no logic in Odoo to hide or display records with the same naming conventions. If that doesn't solve the issue then I do not believe it will be possible to accomplish without making modifications to the whole view via development or to export to excel and merge there. Odoo's Consolidation application is intended to do what you are expecting but it's a bit more complicated to configure and I don't recall if it's in V13 or not.

  • @ruchikasingh2758
    @ruchikasingh2758 2 года назад

    Case Total 4 warehouses 1- Manufacture only and supply to other 3 WH WH-2,3,4 are getting finished items from WH-1. mfr only when SO is generated from the respective WH, and supplied to the respective WH. However, in case any WH-2,3,4 if have some qty, it will resupply this to the delivery WH or else, trigger WH-1 for mfr. Summary, SO can be created for delivery from any WH-2,3,4 and delivery needs to be with the same WH. If no qty is available, trigger the rule for mfr for WH-1. Hope you understand the query. I will be highly obliged for your help.

    • @richardshall9582
      @richardshall9582 2 года назад

      Is your question whether or not this is possible with Odoo? The answer is yes. You would need to create resupply rules for the other warehouses and configure your products to follow the resupply rules. Here is a video that helps explain this scenario: ruclips.net/video/LLOJDVsWf2g/видео.html

  • @mrsaafan1
    @mrsaafan1 2 года назад

    that's incredibly awesome

  • @rastiwidania9189
    @rastiwidania9189 2 года назад

    I guess this feature does not available on v15? I tried to find them but i don't have any luck finding it..

    • @richardshall9582
      @richardshall9582 2 года назад

      Hi Rasti, I just tested this quickly in V15 and was able to reproduce it. Did you turn on Developer mode?

    • @rastiwidania9189
      @rastiwidania9189 2 года назад

      @@richardshall9582 Thanks for replying! I did turn the Developer Mode on .. But I still only get my current company shown on Dashboard.. Did i maybe missed other setting?

    • @richardshall9582
      @richardshall9582 2 года назад

      @@rastiwidania9189 Hi Rasti, My pleasure. The steps are as follows: 1) Go to settings -> Users & Companies -> Companies 2) Create your company (You will see the company name next to your name in the upper right hand corner of Odoo) 3) Install any localization required by going to Accounting -> Settings -> Configuration and it will be the first setting to configure if you haven't chosen a localization. 4) Generate a transaction for company A 5) Switch between companies by selecting the company from the drop down in the upper right hand corner. 6) Generate more transactions in the new company 7) Follow the steps in the video. Hope this helps.

    • @rastiwidania9189
      @rastiwidania9189 2 года назад

      @@richardshall9582 Thanks Richard.. I am able to create 2 more companies and make some transactions. But when i go to Dashboard on my Parent Company, I still only able to see that Parent Company but not the whole 3 companies that i have created.. I've managed to set them on CE, but unfortunately not on EE..

    • @richardshall9582
      @richardshall9582 2 года назад

      @@rastiwidania9189 I would not be able to diagnose your issue without opening your database or getting more information from you. This is something that our helpdesk team or a consultant is perfect for. I would recommend opening a ticket (odoo.com/help) or reaching out to an Odoo consultant to get more personalized assistance.

  • @miguelchambers7755
    @miguelchambers7755 2 года назад

    ❤Every second of it. Don't miss out - P r o m o s m !!!

  • @全职妈妈的一日三餐
    @全职妈妈的一日三餐 3 года назад

    Great video for importing serial numbers to a transfer order, I've been struggling on this for several days, and I made it working following the instruction in your video. Thanks.

  • @yuangao1176
    @yuangao1176 3 года назад

    Thanks for posting a solution for this... I was stuck on this for a while. Works on V14 as well.

  • @MuhammadUmarAkram4
    @MuhammadUmarAkram4 3 года назад

    Hi. My question is, if I put a compute in the main form view and having a many2many field of that form in another form, does the compute work there in 2nd form?

    • @richardshall9582
      @richardshall9582 3 года назад

      Hi Muammad, Sorry for not getting back to you more quickly. Yes the compute will work in the second form.

    • @MuhammadUmarAkram4
      @MuhammadUmarAkram4 3 года назад

      @@richardshall9582 thanks alot for your reply. Can you make a video on auto populating many2many field based on a condition. Like selecting a purchase order items in invoice will be in many2many of invoice item line. Will be grateful if you will do that.

  • @gatsbyrose9070
    @gatsbyrose9070 3 года назад

    How do we load chart of accounts for new company generated, instead of importing everytime

    • @richardshall9582
      @richardshall9582 3 года назад

      Odoo has sample Chart of Accounts that get installed when you install a localization however these may not be the accounts you want to use for your business. You can manually create them (Time consuming), import them (Quick if you have a template that is already set and good to go), or even create a data module and import that in via studio (This requires knowing how to make a data module). Are you experiencing any issues with the import process?

  • @nigistmamo9146
    @nigistmamo9146 3 года назад

    is it exist on community edition?

  • @ceeril
    @ceeril 3 года назад

    This video > Amy Caroline > all Odoo documents.

  • @Jens0212
    @Jens0212 3 года назад

    Hi Richard, thank you for your video. I do have an error when importing the excel file. The error says "current transaction is aborted, commands ignored until end of transaction block". Is this a problem you ran into and/or are familiar with?

    • @richardshall9582
      @richardshall9582 3 года назад

      Hey Jens, I did not experience this error nor have I seen it. Is it possible that you are trying to import in serial numbers on a cancelled receipt? I would encourage you to open a ticket at odoo.com/help to help diagnose the issue.

    • @Jens0212
      @Jens0212 3 года назад

      @@richardshall9582 Hey Richard. The receipt is not cancelled, I've contacted Odoo for the issue. Thank you for answering

  • @adnankhan-jq8kb
    @adnankhan-jq8kb 4 года назад

    Excellent job Nice Video for serial Number Inventory Inventory Management Software ERP Gold | www.erp.gold/easy-inventory-management-software/

  • @manhngo2724
    @manhngo2724 4 года назад

    Thanks for your explanation .

  • @626Wajid
    @626Wajid 4 года назад

    Hi, do we have the same kind of clearing for payables?

  • @carloseugnio
    @carloseugnio 4 года назад

    Great explanation!

  • @pratikdevmurari412
    @pratikdevmurari412 4 года назад

    Hello, I have lil bit concerned. Example: When user logged with Arabic language and try to search partners in Arabic language. But result not found. Do you know how it can be done?

    • @richardshall9582
      @richardshall9582 4 года назад

      Hey Pratik, here is a video I made to answer your question: ruclips.net/video/9hiCP0l45Oo/видео.html

    • @pratikdevmurari412
      @pratikdevmurari412 4 года назад

      @@richardshall9582 Thank you, Richard.

  • @usmanfarzand4078
    @usmanfarzand4078 4 года назад

    Amazing Video i love it what is i looking for

  • @hydrandt
    @hydrandt 4 года назад

    Maybe a better way to explain One2many would be that we have ONE quotation, to which MANY records in the sale.order.line table (model) correspond?

  • @MITCHEMITCHE
    @MITCHEMITCHE 5 лет назад

    thanks for your video, so usefull for me.

  • @satriolantip7668
    @satriolantip7668 5 лет назад

    how to display different many2one data while in the same relation comodel ? I've confuse about that...can you explain it on next video?

    • @richardshall9582
      @richardshall9582 5 лет назад

      Hey Satrio, Can you give me more information on what is the use case you are hoping to achieve? I'm not entirely sure what you mean exactly.

    • @maherkhalil007
      @maherkhalil007 4 года назад

      @@richardshall9582 if i have one field with multiple checkboxes. how to deal with them?

    • @Weblearns
      @Weblearns 4 года назад

      @@maherkhalil007 Use in this case many2many field

  • @stephenngailo4228
    @stephenngailo4228 5 лет назад

    Thanks for the video. How to create applicable filters that include all the child's company reports in the Parent company financial report?

    • @richardshall9582
      @richardshall9582 5 лет назад

      Hey Stephen, Can you please elaborate further? This video already shows you how to get a P&L as well as BS report displaying all the separate companies in one screen. Do you mean further grouping by analytic account?

  • @ppakpahan
    @ppakpahan 5 лет назад

    How about if we have multi company with different base currency between child and parent company? Can Odoo consolidate the finance report according to the IAS 21 ?

    • @richardshall9582
      @richardshall9582 5 лет назад

      Odoo's Financial consolidation with Multi-currency is not up to the standard for IAS 21 at this time. This is something that is being improved for V13. You are better off exporting each individual financial statement into Excel and doing your conversions there.

  • @nicholaskosinski9870
    @nicholaskosinski9870 5 лет назад

    Good stuff.