IRC logs of #tryton for Monday, 2021-03-01

chat.freenode.net #tryton log beginning Mon Mar 1 12:00:02 AM CET 2021
-!- mathesis_(~ja1000@187.148.60.233) has joined #tryton23:51
-!- srgdts_(~srgdts@unaffiliated/srgdts) has joined #tryton02:20
-!- springwurm(~Springwur@5.104.149.54) has joined #tryton05:52
-!- mrichez(~Maxime@2a02:a03f:c2e8:f900:ed77:85ea:af2b:ba6e) has joined #tryton06:09
-!- Timitos(~kpreisler@2001:a61:42d:c01:762b:62ff:fe84:ed7e) has joined #tryton06:38
-!- cedk(~ced@gentoo/developer/cedk) has joined #tryton07:43
-!- rpit(~rpit@p200300c88f0235001c42215a17f33f55.dip0.t-ipconnect.de) has joined #tryton08:29
-!- wifasoi(8c69cf0d@mittelab/sudo/wifasoi) has joined #tryton09:04
wifasoiHi, have a (a possible problem)... I try to read the account_receivable from a party, but without success (it return the account don't specified error). The problem is that i specify an acount payable receivable (but not a default one) for each party09:06
wifasoiI tried to get the payable/receyvable account directtly but not luck09:10
wifasoi(but form the interface i can see i defined them)09:11
wifasoi(and from the database table)09:11
wifasoiwhat, in your experience, can cause this?09:11
wifasoi(i'm using tryton 5.8)09:13
cedkwifasoi: wrong context, probably it is missing the company09:17
wifasoiok, makes sense.. becouse I'm using the tryton console, so I should perform the operation in a "with Context()" block09:18
-!- thaneor(~acer8@r167-61-0-243.dialup.adsl.anteldata.net.uy) has joined #tryton09:18
wifasoithank you very much, I totally forgot it :D09:18
-!- thaneor1(~ldlc6@r167-61-0-243.dialup.adsl.anteldata.net.uy) has joined #tryton09:19
-!- springwurm(~Springwur@5.104.149.54) has joined #tryton09:27
-!- ludo2(~Thunderbi@2001:912:1480:380::1) has joined #tryton09:30
-!- nicoe(~nicoe@2a02:578:852a:c00:7e2a:31ff:fe5e:b25d) has joined #tryton09:43
LordVan_hi09:55
LordVan_quick question as i could not find anything online .. i want to display a float number, but by default it uses en_US format ('.' instead of the ',' which i want for german)09:55
LordVan_*display on a report09:55
pokoliLordVan_: i was reading your comments and I think we are working also on a similar project than yours10:06
pokoliLordVan_: is your bussines cutting steel to produce pieces?10:06
pokoliLordVan_: the numeric format depens on the user language. You should switch your user interface to german to show the numbers in proper format10:07
LordVan_pokoli, yes10:07
LordVan_user interface is german10:07
LordVan_but the generation of the odt report is ran on the server so10:08
LordVan_*run10:08
pokoliLordVan_: sale report is rendered on the party language10:08
pokoliLordVan_: so probably setting the party language to german should fix your issue10:09
LordVan_that could be it10:09
pokoliLordVan_: we use sale_supply_production module to automatically generate production orders when the sale is confirmed10:09
LordVan_i should set the default party language to german . .for new ones it might not be set10:09
pokoliI'm still missing the part to descrive the needed operations on the parts at sale_line level10:10
LordVan_pokoli, i mostly added some test fields10:11
pokoliWe find that entering the full product details (specially prodution route) is hard for the users. So we are looking for some idea to simplify it10:11
LordVan_use a wizard maybe10:11
LordVan_i just have extra fields and will add a "material" module10:12
pokoliLordVan_: material is just a table with a name, isn't it?10:13
pokoliLordVan_: my main worries is about the operations that should be applied to the product on the production10:13
pokoliBecause we want to use the production module to compute costs and allowing the office users to know in which status of prodution is any customer order10:13
LordVan_pokoli, well i will model it after country module (loosely) as i might need it later too and i don'T want it just text based10:14
LordVan_yes i do not use production10:14
LordVan_i just need to generate the report with correct material, thickness, painted or not,..10:14
LordVan_pokoli, i was gonna upload my code to my github repo again anyway10:15
LordVan_(nothing special about it)10:15
LordVan_so i can do that later and show you, but i doubt there's much you'd not already know10:15
LordVan_the whole production process here is documented first on paper (hence why i need to generate the reports when an order is placed)10:16
pokoliLordVan_: we started on a first step where we do not use production, and just sale orders and related invoices10:16
pokoliand now are on the second phase where we want to introduce productions10:17
LordVan_pokoli, same here - though i am not doing invoicing with tryton just yet10:17
LordVan_i have some things I need to still work out first before generating invoices10:17
pokoliLordVan_: for generaing a report of material is just about adding some properties to products (or sale lines) and then print this information from the sale order in a custom report10:17
LordVan_since I am doing most of this myself it is not an issue to split it into small stages10:17
LordVan_pokoli, yes but i also need to write my own report class soon for some .. a bit special cases (like where one sale_line needs to generate multiple pages, or multiple sale_lines need to be combined on one page)10:18
LordVan_for that report i can't (always) just take every sale_line and use that but am going to have to post-process first what can/should be merged or split10:19
LordVan_-- to explain .. a sale_line can contain an assembly .. but that then consists of parts of different materials, metal sheet thickness,.. and each of those needs a seperate printed out page for production)10:19
LordVan_and in other cases we want more sale_line rows to be on one page because the customer does not want individual prices and they are the same material + thickness10:20
pokoliLordVan_: I think I now your problems10:21
pokoliLordVan_: using production module will probably make it easier10:21
LordVan_;)10:21
LordVan_we have too many prototypes or just simply one-off things to use production .. it would over-complicate it10:21
pokolibecause on production is where you declare what needs to be done on each material10:22
LordVan_i might start using production later on for some repeatedly ordered parts, but for now ..10:22
pokoliLordVan_: the production should be automaticall generated with sale_supply_production module10:22
LordVan_pokoli, that would be a huge task10:26
LordVan_with likely barely any gain10:26
LordVan_for 90% of the orders10:27
pokoliLordVan_: why you sai there will be no gain?10:29
pokoliLordVan_: production is what contains all the tasks to be done, material to be used and the planning10:29
pokoliLordVan_: indeed you will have an extra operation for cutting the main material into the pieces that can not be tracked at sale level10:29
pokoliBecause the cutting groups pieces of several orders10:29
LordVan_pokoli, in theory yes10:30
LordVan_ideally10:30
LordVan_but that would require ahead of time planning of all those things10:30
LordVan_we do most of our orders rather short notice10:30
LordVan_sometimes order like one day 13:00 and want to pick up next morning 7AM10:30
LordVan_there is no point trying to plan/schedule cutting10:30
LordVan_we'd throw/change the plans more often than not10:31
LordVan_we rarely have stuff that actually cuts for a long time on one material10:31
pokoliLordVan_: for that reason there is the shipping_date on the sale order10:33
pokoliLordVan_: if you do not have any shipping date the order is scheduled on a fixed period (i.e: 3 days)10:33
pokoliLordVan_: but once you have an order that should be picked up next morning you just set the shipping_date to tomorrow10:34
LordVan_pokoli, i completely agree with you that ideally that all would work out great .. but for a small company where a lot of the workers are pretty much computer illiterate10:35
pokoliTryton will create all the related documents with this dates in mind, so the production users know on which orders should work first (ordered by date) without needing to care on anything else10:35
LordVan_it might be something in the (further) future10:35
LordVan_but that'D require major organisational changes company wide10:35
LordVan_that simply are not going to happen now10:36
LordVan_if i may ask .. how large is the company you are doing this project for?10:36
pokoliLordVan_: not so much, 15 employees working10:40
pokoliLordVan_: indeed they are working with papers like you describe (but they generate them using an excel file)10:41
LordVan_our project sheets used to be manuall written (Every single sheet every time except for some copy paste) until a few years ago when I implemented it in dolibarr - which did not work out10:43
LordVan_now we generate a large part of the (not too complex) ones fully with tryton already10:43
LordVan_we got like 15 employees total .. (including part time office,..)10:44
LordVan_pokoli, do they have a lot of "plannable" orders? we just got lots and lots of small, low quantity orders10:45
LordVan_so the complexity of production module is .. well10:45
LordVan_would probably require me myself to deal with most of it tbh as our office staff wouldn'T be able to handle that (qualification/knowledge wise)10:46
pokoliACTION is on phone10:50
pokoliLordVan_: 150 orders per months moreless11:04
-!- mariomop(~quassel@181.29.189.235) has joined #tryton11:05
pokoliLordVan_: there are ones which are just 1 o 2 quantities of an item11:05
Hirschbeutelwe all have very similar problems 😉11:09
Hirschbeutelthe coating as well very often a complete individual request.11:10
HirschbeutelI have processdefinition on sale line: like (sanding, priming, topcoat, polishing) - this ar lines with the name and a text description if sales person ask for them11:13
pokoliHirschbeutel: we have another project related to custom T-Shirts and they have similar needs11:14
pokoliand I also had been asked for some option to define the full production on sale quotation. SO you need to plan everything in advance and compute the costs (and prices)11:15
pokoliThen if the customer agrees, you should follow the plan if not it can be thrown away11:15
Hirschbeutelyes11:15
pokoliHirschbeutel: i think there is place for some standard modules there but I still do not have an idea on how to design it11:20
pokolifor now we are using custom code to make the projects work11:21
Hirschbeutelme to - we shoul work on some generic11:22
pokoliHirschbeutel: agree but generic requires time to think it carefully :)11:43
Hirschbeutelpokoli: I can abstract what I do for in our case11:44
pokoliHirschbeutel: it will be a starting point11:45
pokoliHirschbeutel: but probably I prefer to comment it here because for me there are like two funcionalities11:45
pokoli1. Specify some production details at sale level11:45
pokoli2. Create a planning to know the costs of a production and use it at quotation level11:46
pokolithe second can be used without sale module to create plan diferent versions of a production BOM/Routing configuration11:46
pokoliIIRC when I was at nantic we implemented a module for the second11:46
Hirschbeutelbecause in our case ist a fundamental part of all: most of clients do not know the process - sale man ask them to know as many as he can and than searches for the best production process11:46
Hirschbeutelnot searching - there could be a generic process that fits or we need a customized based on a generic or it is completly custom11:48
Hirschbeutelin our case we can calculate based on the steps needed in the process - so price differs from some variables but we can calculate based on process_step11:49
HirschbeutelI have a process_template - you can select it on sale, a copy of the process_lines is made - leave it as it or change them to your needs11:51
Hirschbeutelso we have the design :)11:51
pokoliHirschbeutel: our prices also depen on the processes11:53
pokoliHirschbeutel: indeed we added a product to the production_operation and we allow to add operations on sale line which are added latter to the production process11:53
pokoliHirschbeutel: unit_price is computed with the price of the product + the prices of the operations with product (extra services)11:54
Hirschbeutelsimilar11:56
HirschbeutelI don't have a product - I have process_steps with some variables (like squaremeters, material etc)11:57
Hirschbeutelmore like a fluid bom12:02
LordVan_for us most of the time the cost is only calculated after manufacturing12:08
LordVan_because there is no time to calculate beforehand or it is just not well enough defined12:08
HirschbeutelLordVan_: It is not unusual to charge according to the work done12:10
HirschbeutelLordVan_: project module can do that :D12:10
Hirschbeutelthats wy for me project is my prefered way and I will fight my whole live to convince cedrik12:11
Hirschbeutelfor some companies a sale creates a kind of project12:11
LordVan_Hirschbeutel, haha12:13
HirschbeutelI think the blueprint to invoice services is similar - but it depends of definintion of service12:13
LordVan_I do agree .. we consider nearly each sale a project12:13
Hirschbeutelyes12:13
LordVan_tbh i haven'T actually looked at the project module too much12:14
LordVan_but12:14
LordVan_what i need right now works well with just sale and sale_line adjustments12:14
LordVan_the special cases are a different story12:14
Hirschbeutelso you can be one of my knights in the everlasting fight to make the project module omnipotent12:15
Hirschbeutel:D12:15
Hirschbeutelit should manage my live as welll12:15
LordVan_i would install the project module to have a look at it now, but i only have the production instance running and i don'T know if i want it on there haha12:16
TimitosHirschbeutel: its not about fighting its about convincing12:20
Hirschbeutelno - cedrik  is right, I was joking12:20
LordVan_haha12:21
Hirschbeutelits one of the features of tryton: you have possibilities but you have to choose12:21
Hirschbeutelbut convincing int this case means fighting, am I wrong? :)12:23
HirschbeutelI think what we know is: there is a need for some modules handling small to no series production12:24
Hirschbeutelhandcrafts12:25
Timitosyes. many of us do need modules for this. there are already some threads on discuss about that and maybe we only need to intensify the discussion about these needs to find the common patterns12:25
Hirschbeutelyes!12:26
Hirschbeutelthe common pattern is that there is no pattern, because the USP in this case is to differentiate :)12:27
HirschbeutelI would like to work on this ....12:27
Timitosif there is no pattern then we all end with custom modules12:28
Hirschbeutelpossibly we can find a very reduced core concept12:29
Hirschbeutelfirst is to find the document where the coding of the request starts12:29
Hirschbeutelfor me this is sale:opportuity - but you know that I have implementet it on sale12:30
HirschbeutelLordVan_ statet that sale_opportunity in small companies is one step to much - and I think this was the reason why I did it on sale12:31
Hirschbeutelbut in review sale_oportunity seems better12:34
LordVan_Hirschbeutel, i have most things on sale that i need12:35
LordVan_starting with sale_opportunity would add complexity and me having to add a lot of stuff in 2 places12:36
Hirschbeutelyes - I know - for this reason I have my stuff on sale as well12:37
Hirschbeutelthis should be discussed12:38
Hirschbeutelwho starts the thread?12:38
LordVan_feel free i am quite busy right now ;)12:42
Hirschbeutelpass the baton to > ...12:44
HirschbeutelOk - will think about it - without thinking I will post only chaotic stuff :)12:45
LordVan_same here12:52
Hirschbeutelcedk: ping13:01
-!- springwurm(~Springwur@5.104.149.54) has joined #tryton13:02
pokoliLordVan_: if you are manufacturing, the production modules takes care of automatically computing the costs for you14:04
LordVan_pokoli, they would .. if i knew beforehand - or it would be feasible to enter all that14:04
LordVan_as i said i will probably use it for repeatedly ordered parts later on14:04
pokoliHirschbeutel: about sales and projects link is already discussed here: https://discuss.tryton.org/t/link-between-sales-and-projects/654/26?u=pokoli14:04
pokoliit still requires some love from my side14:05
LordVan_and then look into if i can simplify the process enough to use it for the simple orders too14:05
cedkHirschbeutel: pong14:06
pokoliLordVan_: for repetitive orders it works out of the box. As you will have the Bill of Materials and the route of Operations previously created14:06
Hirschbeutel@pokoli: I have similar on sale - linking it and an action: create project14:07
Hirschbeutelin this action I handle the conversion from the data encoded on sale to that ones needed for the project14:08
Hirschbeutelcedk: I startet to work on sale_point first to understand it right. the TODO create an invoice  - do you mean a normal invoice with the sequence of the standard invoices?14:10
Hirschbeutelcedk: I need to read the legal requirements - but I think this depends on country. will ask Timitos  - I guess in Germany it is a receipt and and the "invoice" is the same thing only with an Adress on it ....14:12
pokoliHirschbeutel: IIRC in spain it is possible to just create an account move which resumes all the tickets14:13
pokoliHirschbeutel: only requirement is that you do not identify the customer14:14
Hirschbeutelyes - thats the receipt14:14
-!- lucascastro(~lucascast@177-185-133-170.dynamic.isotelco.net.br) has joined #tryton14:15
pokoliHirschbeutel: not sure but probable we will need to create an invoice without identify the customer (no tax_identifier) because those records should be send to SII14:16
pokoliSII -> Send all invoices to tax authority using a webservices14:17
LordVan_same here14:17
Hirschbeutelpokoli: if I understood right the use case is: customers pays and asks for an invoice - because he want to get back taxes or to feel more comfortabel or whatever14:18
pokoliHirschbeutel: then you should ask for the tax_identifier and identify the customer to create a normal invoice14:19
Hirschbeutelpokoli: one moment - will look at some in my office - but I feel that nobody asking me for that (cause I don't know without going back to my office ;)14:21
Hirschbeutelpokoli: no - only a minimal address and a line telling: paid in cash on date14:23
LordVan_btw14:24
LordVan_about my numeric formant question earlier @pokoli14:24
LordVan_the sale party has german set as language14:24
LordVan_so is tryton UI14:24
LordVan_so it must be the server side14:24
LordVan_not respecting that14:24
-!- htgoebel(~hartmut@ppp-188-174-53-141.dynamic.mnet-online.de) has joined #tryton14:27
pokoliLordVan_: but where are the wrong format shown? On the user interface or on the report?14:37
LordVan_odt report14:37
LordVan_it shows 2.0 instead of 2,014:37
pokoliLordVan_: custom report?14:37
LordVan_not yet no just the normal sale report14:37
LordVan_with custom odt ofc14:39
pokoliLordVan_: then probably you are missing the set_lang call in the odt template14:39
LordVan_ah14:39
LordVan_that could be14:39
LordVan_i shall check out the original template again.14:39
LordVan_thanks14:39
htgoebelHi,14:41
htgoebeldoes Tryton already provided some means of a "waiting list" for a service?14:41
htgoebelLike when you need a place in the hospital: You put your name on the list and if a bed is available you are asked whether you want to take it. You can jump of the list anytime and there is no contract until you actually agree on taking the bed.14:41
pokoliACTION is happy to have an active chat today with the community :)14:44
-!- mniip(~mniip@freenode/staff/mniip) has joined #tryton14:44
pokolihtgoebel: we usally manage that with states14:45
pokolihtgoebel: for example, on outgoing list there is a "waiting" state which is all the shipments that should be picked14:45
pokolihtgoebel: and the shipment is not picked/packed/sent until it goes forward in the workflow14:45
htgoebelpokoli: This would be far to late in the process.14:46
htgoebelpokoli: Wait - need to rephrase14:47
pokolihtgoebel: to be honest I do not know your process because you did not explain it to us :)14:48
pokolijust giving some ideas14:48
htgoebelpokoli: When using a state for some picking, the process has advanced quite far already.14:51
htgoebelThe waiting is at the very beginning, the is not even a contract, not even a binding sale offer.14:51
htgoebelLike when you are waiting to get a place on the next ship, a room in a seniors residence, a kidney transplantation: Your name and contact is put on a list and if everybody in front of you has been served, it's your turn to decide whether you still want to agree on some contract14:51
htgoebelpokoli: Implementing this from scratch is easy: Just an ordered lists of parties.14:55
htgoebelpkoli: I just wonder if Tryton already implements such means.14:55
pokolihtgoebel: if you have some asset to be rent, there is the sale_subscription_asset module14:57
pokolihtgoebel: otherwise it's just o quotation that need to be accepted14:57
htgoebelpokoli: Thx.14:58
pokolihtgoebel: once you have a table with a many2one to party, there is a list of parties which you can order on any field (for example creation data)14:58
pokolihtgoebel: not sure if that helped so much, but your concept is very abstract14:58
htgoebelpokoli: Well, a waiting list is quite abstract ;-)14:59
pokolihtgoebel: what I mean is that the implementation can be very diferent depending on the problem to solve15:00
pokolihtgoebel: following on your examples, on the ship you should agree on the days before confirming the place and make it not available for others15:00
pokolihtgoebel: a room in seniors residence can be managed out of the with sale_subscrition_asset module: https://docs.tryton.org/projects/modules-sale-subscription-asset/en/latest/15:01
pokolihtgoebel: and a kidney translplantion probably you start looking at the kidney once you have the need of it (a kind of sale_supply)15:02
pokoliso for me there should be a diferent implementation for each of your examples15:02
htgoebelpokoli: Thanks. I actually missed that I need to wait for an answer (or timeout) before offering to the next one on the list.15:03
htgoebelpokoli: For now - i still need to convince my CIO ;-) I'll go with a very simply many2one table.15:04
htgoebelEverything else needs to be defined later.15:04
pokolihtgoebel: if your CIO needs a videoconference to resolve doubts I will be happy to help on that15:05
pokolihtgoebel: but please have a concrete list of questions so we can answer them15:05
pokolihtgoebel: and if you do not mind we can make it like an interview and share it on tryton's youtube chanels for others15:06
Hirschbeutelhtgoebel: I have a waiting list for books15:06
Hirschbeutelhtgoebel: (party, book, date of request) more or less - if book returns, next user gets a message - after a defined delay the next - first comes first serve15:07
htgoebelpokoli: Thanks for the offer - the "CIO" actually is not the CIO but the (main and single) developer of the current solution.15:07
htgoebelpokoli: This is why I asked for technical features.15:07
htgoebelpokoli: Anyhow, my presentation is tomorrow and I'm about to structure what I have up to now.15:07
htgoebelHirschbeutel: Sounds very much like what I meant :-)15:08
pokoliHirschbeutel: did you have a waiting list for webshop?15:09
htgoebelhirschbeutel: If this is publicly available, I'd like to present it tomorrow. Otherwise I'd just tell there already is such an solution.15:09
pokoliHirschbeutel: we have one where all the users are noticed when a product is received on the warehouse15:09
Hirschbeutelhtgoebel: you can tell him there is a solution for everything, the only problem is to know where15:10
Hirschbeutelpokoli: not yet - but this is a rquirement15:10
Hirschbeutelpokoli: not having this is lame :)15:11
Hirschbeutelpokoli: we should start a repo with shop plugins15:11
pokoliHirschbeutel: did you think there is some usage without webshop?15:12
Hirschbeutelpokoli: yes - possibly if you think like: a sales person can encode such a line and forget about this - so system will do the marketing15:13
Hirschbeutelpokoli: so the answer is YES!15:13
Hirschbeutel(mechanism, email*, date, product)15:14
pokoliHirschbeutel: indeed we just store the party and the product15:14
Hirschbeutelemail* for rpc from outside15:15
pokoliHirschbeutel: and we have a state field to see if the request has been received or not15:15
pokoliHirschbeutel: and when the state is updated to received we trigger a notification using notification_email module15:15
Hirschbeutelwhich request?15:15
Hirschbeutelmail state?15:15
Hirschbeutelnice15:16
pokoliHirschbeutel: request -> the record of the waiting list (product and party)15:16
Hirschbeutelpokoli: do not understand - if there is a line, a request happend, or not?15:17
pokoliHirschbeutel: there is a line with two states: Waiting and Received15:18
pokoliHirschbeutel: once the party adds the product to the waiting list, a line with party and the product is created15:18
pokoliat this stage the line is in waiting state15:18
Hirschbeutelah - know I got it15:19
pokoliHirschbeutel: and when the product is recieved the state of the line is updated to received15:19
pokoliFrom there you can use the marketing_automation module or the notification_email15:19
pokolior nothing :)15:19
HirschbeutelI delete the line - because there are to many requests and nobody needs this information historical15:19
Hirschbeutelbut with state is good as well -depends off the number of requests and if the company sees this a a GDPO issue15:21
Hirschbeuteldon't know - for legal stuff deleting is always the best solution :)15:22
Hirschbeutelburn it ....15:22
Hirschbeutelpokoli: send me a offer :)15:24
pokoliHirschbeutel: we prefer to save the line to see if the customer purchased the product at the end or not15:25
pokoliHirschbeutel: for example if we send a notification and the party does not buy the product in 7 days we can send another mail, or call him15:25
pokoliYou know, marketing is evil at some points. They now more from us than ourselves15:25
Hirschbeutelpokoli: I would hate you for that :)15:26
Hirschbeutelpokoli: but possibly buy to get rid of your calls15:26
-!- rpit1(~rpit@p200300c88f0235001c42215a17f33f55.dip0.t-ipconnect.de) has joined #tryton15:27
Hirschbeutelpokoli: in our case, the products are in short supply - if you don't get back to us, you're out of luck.15:29
Hirschbeutelpokoli: but this all is the same module15:29
Hirschbeutelpokoli: I'll take yours15:29
pokoliHirschbeutel: you can always read the customer to waiting list automitcally if there is not stock and they did not have luck to buy15:31
Hirschbeutelpokoli: gimme offer - i will sell it15:31
Hirschbeutelpokoli: need to migrate all that stuff, no time to write new features15:32
pokoliHirschbeutel: indeed to make it generic we should probably need a draft state, and a test to ensure that when adding to the waiting list there is not stock15:33
Hirschbeuteli could contribute as well :)15:34
pokoliHirschbeutel: and a warehouse where the customer want's the product15:34
Hirschbeutelpokoli: why?15:34
pokoliHirschbeutel: because in our case we have a single warehouse but I it should be possible to have and order between warehouses15:34
pokoliHirschbeutel: because we may have a warehouse on germany and another in Barcelona15:35
pokoliHirschbeutel: if there are a lots of demand of products in Germany and we have stock on Barcelona, we may delivery directly15:35
Hirschbeutelpokoli: yes - in this case it would be cool15:35
pokoliHirschbeutel: that the work of going from a custom solution to a generic one that can be reused15:44
pokoliHirschbeutel: i let you open a feature request on the forum :)15:45
Hirschbeutelsecond task I put on my list ...15:49
pokoliHirschbeutel: i throw the entire list away because it was to large xD15:50
pokolitoo*15:50
Hirschbeutelpokoli: I was ask to help out in a project and now fixing the whole day15:51
pokoliHirschbeutel: it seems clear that they need help on fixing a lot of issues.15:52
pokoliHirschbeutel: You should ask them to provide you a complete test suite to avoid the errors15:53
Hirschbeutelpokoli: the fixes have changed to new features ;)15:53
Hirschbeutelpokoli: they own me15:54
pokoliHirschbeutel: this also happen on tryton bug tracker, bugs are converted to new features some times :P15:54
-!- springwurm(~springwur@p200300fbaf0ac8000000000000000bf8.dip0.t-ipconnect.de) has joined #tryton17:14
-!- jani-matti(~quassel@93-90-53-6.welcomnet.fi) has joined #tryton17:19
-!- lucascastro(~lucascast@45-167-143-6.netfacil.inf.br) has joined #tryton17:24
-!- lucascastro(~lucascast@177.185.131.162) has joined #tryton17:40
-!- lucascastro(~lucascast@177-185-131-162.corp.isotelco.net.br) has joined #tryton17:49
-!- htgoebel(~hartmut@ppp-188-174-53-141.dynamic.mnet-online.de) has left #tryton18:08
-!- nicoe(~nicoe@2a02:578:852a:c00:7e2a:31ff:fe5e:b25d) has joined #tryton18:21
-!- ludo2(~Thunderbi@2001:912:1480:380::1) has joined #tryton18:52
-!- ludo2(~Thunderbi@2001:912:1480:380::1) has joined #tryton20:03
-!- nicoe(~nicoe@2a02:578:852a:c00:7e2a:31ff:fe5e:b25d) has joined #tryton20:28
-!- thaneor(~ldlc6@r167-61-59-203.dialup.adsl.anteldata.net.uy) has joined #tryton21:21
-!- thaneor1(~acer8@r167-61-59-203.dialup.adsl.anteldata.net.uy) has joined #tryton21:21
-!- cedk(~ced@gentoo/developer/cedk) has joined #tryton22:47

Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!