Search found 59 matches
- 09 Aug 2019, 11:36
- Forum: TYPO3 and Flow/NeosCMS
- Topic: Stock import CSV not available
- Replies: 10
- Views: 268
Re: Stock import CSV not available
Where is this documented? I think, it's not at all developer friendly, if you silently remove a functionality...
- 09 Aug 2019, 10:18
- Forum: TYPO3 and Flow/NeosCMS
- Topic: Stock import CSV not available
- Replies: 10
- Views: 268
Stock import CSV not available
Hello, I update to the Aimeos 19.7.1 and TYPO3 9.5.8 LTS. Now, the stock import CSV is gone. It's not available in the scheduler and when I start the CLI, then it throws an error message. typo3cms aimeos:jobs stock/import/csv default Why has this been removed from ai-controller-jobs? What is the rep...
- 12 Jun 2019, 17:32
- Forum: TYPO3 and Flow/NeosCMS
- Topic: Extending Order/Basket
- Replies: 8
- Views: 421
Re: Extending Order/Basket
I tried as you wrote without the Base in the namespace. This doesn't work at all. The mshop.php needs the 'base' to overwrite the SQLs. I ended up with the same code like I had before and finally got it working by separately excluding those parts which rely on my new fields and their getters and set...
- 12 Jun 2019, 09:03
- Forum: TYPO3 and Flow/NeosCMS
- Topic: Extending Order/Basket
- Replies: 8
- Views: 421
Re: Extending Order/Basket
That configuration was available. I changed every class to extend not the Base class but the one in the parent directory of Base. Now, I get an error in the backend: Error SQLSTATE[42S22]: Column not found: 1054 Unknown column 'mord.siteid' in 'where clause', /home/vhosts/biancab2b/typo3conf/ext/aim...
- 11 Jun 2019, 15:14
- Forum: TYPO3 and Flow/NeosCMS
- Topic: Order Export Job
- Replies: 2
- Views: 143
Re: Order Export Job
After some more waiting, the export-file actually appeared in the dashboard! So that riddle is solved.
How can I configure it's content?
And what is the order/export/csv job supposed to do?
How can I configure it's content?
And what is the order/export/csv job supposed to do?
- 11 Jun 2019, 14:59
- Forum: TYPO3 and Flow/NeosCMS
- Topic: Order Export Job
- Replies: 2
- Views: 143
Order Export Job
Hi there, using the latest Aimeos version in TYPO3 9.5, I configured the export location for the job order/export/csv . I can start this and it does not return an error. However, it does create any file, either. Another attempt, I started the download of orders in the orders module. This gave me the...
- 11 Jun 2019, 12:50
- Forum: TYPO3 and Flow/NeosCMS
- Topic: Extending Order/Basket
- Replies: 8
- Views: 421
Re: Extending Order/Basket
I need to add additional fields in the order. These are the steps: * create order.php with addColumn() calls * extend Aimeos\MShop\Order\Item\Base with my own class B2bItem with __construct(), getters and setters for my fields, toArray() and fromArray(). * extend Aimeos\MShop\Order\Manager\Base with...
- 11 Jun 2019, 12:02
- Forum: TYPO3 and Flow/NeosCMS
- Topic: Dynamic loading of products instead of pagination
- Replies: 8
- Views: 431
Re: Dynamic loading of products instead of pagination
I can do so, when I am confident that I placed the code snippets at the right locations.
My JS is currently in a separate scripts.js file inside my extension. Where should I place this in the Aimeos code?
My JS is currently in a separate scripts.js file inside my extension. Where should I place this in the Aimeos code?
- 08 Jun 2019, 08:15
- Forum: TYPO3 and Flow/NeosCMS
- Topic: Dynamic loading of products instead of pagination
- Replies: 8
- Views: 431
Re: Dynamic loading of products instead of pagination
Thank you.
I had a bit of technical "fun" to get and request the URL of a script inside the xhr response, but I finally succeeded.
I had a bit of technical "fun" to get and request the URL of a script inside the xhr response, but I finally succeeded.

- 06 Jun 2019, 15:25
- Forum: TYPO3 and Flow/NeosCMS
- Topic: Dynamic loading of products instead of pagination
- Replies: 8
- Views: 431
Re: Dynamic loading of products instead of pagination
Hello, I implemented this and it loads the products and adds them at the end of the list. :D There is only one small problem: The stock of the products added by xhr is not updated. (The products displayed at the start do contain stock values.) Is there an action which needs to be triggered after the...