Bug export quotes itemList

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mkhalifa
    Member
    • Jan 2019
    • 48

    Bug export quotes itemList

    Hello,
    I'm trying to export the quote information, export works fine except that the itemList field is always empty!
    I tried on the demo site and it does the same behavior
  • yuri
    Member
    • Mar 2014
    • 8440

    #2
    Hi,

    Item List export is not supported.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • mkhalifa
      Member
      • Jan 2019
      • 48

      #3
      Hello,
      Thanks for you replay ! So how do I import quotes in espcrm ?

      Comment

      • tanya
        Senior Member
        • Jun 2014
        • 4308

        #4
        Hello,
        with API only. Or develop own import script

        Comment

        • yuri
          Member
          • Mar 2014
          • 8440

          #5
          It will be exportable in json format in the next version.
          If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

          Comment

          • mkhalifa
            Member
            • Jan 2019
            • 48

            #6

            Hello, @tanya Currently I'm working on the cloud demo version of the coup I do not know how to use the API ?! @yurikuzn Do you have a date for the kind of the next version? Thanks you

            Comment

            • mkhalifa
              Member
              • Jan 2019
              • 48

              #7
              Hello,
              Hello, I'm still stuck for the import. It's a shame that this feature does not exist because everything works very well in espocrm. But unfortunately this point is blocking for me. Do you think this feature will be implemented quickly? Thanks you

              Comment

              • yuri
                Member
                • Mar 2014
                • 8440

                #8
                Hello,

                Must be working in the latest advanced pack release.
                If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

                Comment

                • mkhalifa
                  Member
                  • Jan 2019
                  • 48

                  #9
                  Hello,
                  I am trying to import quotes and quote items from the API. so i created an api key and i gave all the rights possible but when i check the tab accés. I see that the Import Quotes is deactivated (see the attachment)! If not, can I find a sample code to import quotes and quotes items via the API please? thank you in advance

                  Comment

                  • yuri
                    Member
                    • Mar 2014
                    • 8440

                    #10
                    Hi,

                    I check and quote access worked well for API users.
                    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

                    Comment

                    • mkhalifa
                      Member
                      • Jan 2019
                      • 48

                      #11
                      Hello
                      Is there documentation that shows how to create quotes via API please? I am stuck on this point

                      Comment

                      • yuri
                        Member
                        • Mar 2014
                        • 8440

                        #12
                        Hi,

                        No. Click F12 in browser, open Network tab and see what request is sent when you create a quote. Replicate this request in your API call.
                        If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

                        Comment

                        • mkhalifa
                          Member
                          • Jan 2019
                          • 48

                          #13
                          Hello thanks for your replay,


                          I wanted to make a simple test of creation of a quote via the API and I send the name of the quote for the moment. I work in php and I use the API client https://github.com/espocrm/documenta...-client-php.md below the code I made

                          PHP Code:
                          
                          include 'espocrm.php' ;
                          $client = new EspoApiClient('mycloudcrmurl');
                          $client->setApiKey('myapikey');
                          $response = $client->request('POST', 'Quote', [
                              'name'=> 'testt'
                          ]);
                          
                          var_dump( $response); 
                          
                          Response :

                          PHP Code:
                          PHP Fatal error:espocrm.php:138
                          Stack trace:
                          #0 testEspoAPI.php(11): EspoApiClient->request('POST', 'Quote', Array)
                          #1 {main}
                            thrown in espocrm.php on line 138 
                          

                          I did the same test to create a lead and it works without problems and also to create an account. Something escapes me for creating quotes?

                          Comment

                          • yuri
                            Member
                            • Mar 2014
                            • 8440

                            #14
                            Check data/logs for error

                            Must be acl issue.
                            If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

                            Comment

                            • mkhalifa
                              Member
                              • Jan 2019
                              • 48

                              #15
                              Hi
                              I'm working on the demo cloud version
                              EspoCRM is Open Source CRM application. Increase profitability through customer loyalty!

                              how can i see logs please?

                              Comment

                              Working...