I want result
Your IELTS Test Centre will send your official Test Report (TRF) to your postal address.
Computer-delivered IELTS test: TRF will be posted 5-7 days after your test date.
Paper-based IELTS: TRF will be posted 13 calendar days after your test date.
Covid-19 update: owing to the current global pandemic, many Test Centres will not be issuing results by post. Alternative methods of issuing results are in place. Please check with your Test Centre.
I want result Your IELTS Test Centre will send your official Test Report (TRF) to your postal address. Computer-delivered IELTS test: TRF will be posted 5-7 days after your test date.
Помощь
Odoo is the world’s easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
Take the tour
orders search result question. (production.search(domain).
my domain filter is (‘id’, ‘in’, [15331, 15332, 15386])
result is 15386, 15331, 15332. this result is not mind . how can i get my want result is [15331 15332 15386]
orders is show ===> 15386, 15331, 15332.
2 Ответы
Thank your anser!!
But, i want fixed this id. when user input the order name . (i get this order id is 152113 153321 150921 14992 162321)
if use order=’id asc’
the orders result ..is error. i need fixed it. orders = 152113 153321 150921 14992 162321
orders = Production.search(domain, order=’id asc, state desc’)
Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.
Odoo’s unique value proposition is to be at the same time very easy to use and fully integrated.
Dears: my domain filter is (‘id’, ‘in’, [15331, 15332, 15386]) use self.env[‘mrp.production’].search(domain) result is 15386, 15331, 15332….this result is not mind …how can i get my want result is [15331 15332 15386] orders is show ===> 15386, 15331, 15332. Production = self.env["mrp.production"] domain = ["!", ("state", "in", ("done", "cancel")), ("id", "in", [15331, 15332, 15386])] orders = Production.search(domain)