-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathis_edi_cde_cli.py
executable file
·1838 lines (1677 loc) · 82.7 KB
/
is_edi_cde_cli.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
import csv, cStringIO
from openerp.tools.translate import _
from openerp import netsvc
from openerp import models,fields,api
from openerp.exceptions import Warning
from lxml import etree
import xml.etree.ElementTree as ET
from tempfile import TemporaryFile
import base64
import os
import time
import math
from datetime import date,datetime,timedelta
import openpyxl
class is_edi_cde_cli_line(models.Model):
_name = "is.edi.cde.cli.line"
_order = "anomalie desc, edi_cde_cli_id,ref_article_client,date_livraison"
edi_cde_cli_id = fields.Many2one('is.edi.cde.cli', 'EDI Commandes Clients', required=True, ondelete='cascade')
num_commande_client = fields.Char('N° Cde Client')
ref_article_client = fields.Char('Ref Article Client')
product_id = fields.Many2one('product.product', 'Article')
quantite = fields.Integer('Quantité')
date_livraison = fields.Date('Date liv')
point_dechargement = fields.Char(u'Point de déchargement')
type_commande = fields.Selection([('ferme', 'Ferme'),('previsionnel', 'Prév.')], "Type")
prix = fields.Float('Prix', digits=(14,4),)
order_id = fields.Many2one('sale.order', 'Cde Odoo')
anomalie = fields.Text('Anomalie')
file_id = fields.Many2one('ir.attachment', 'Fichier')
@api.multi
def action_acceder_commande(self):
dummy, view_id = self.env['ir.model.data'].get_object_reference('sale', 'view_order_form')
for obj in self:
return {
'name': "Commande",
'view_mode': 'form',
'view_id': view_id,
'view_type': 'form',
'res_model': 'sale.order',
'type': 'ir.actions.act_window',
'res_id': obj.order_id.id,
'domain': '[]',
}
class is_edi_cde_cli(models.Model):
_name = "is.edi.cde.cli"
_description = "EDI commandes clients"
_order = "name desc,partner_id"
@api.depends('line_ids')
def _compute(self):
for obj in self:
r=self.env['is.edi.cde.cli.line'].search([
('edi_cde_cli_id','=',obj.id),
])
obj.nb_lignes=len(r)
r=self.env['is.edi.cde.cli.line'].search([
('edi_cde_cli_id','=',obj.id),
('anomalie','!=','')
])
obj.nb_anomalies=len(r)
_JOURS_SEMAINE=[
(1, 'Lundi'),
(2, 'Mardi'),
(3, 'Mercredi'),
(4, 'Jeudi'),
(5, 'Vendredi'),
(6, 'Samedi'),
(7, 'Dimanche'),
]
name = fields.Date('Date de création', readonly='1')
partner_id = fields.Many2one('res.partner', 'Client', required=False)
date_maxi = fields.Date(u"Date de livraison limite d'intégration", help=u"Au delà de cette date, les nouvelles commandes ne seront pas importés et les commandes existantes ne seront pas supprimées")
jour_semaine = fields.Selection(_JOURS_SEMAINE, "Jour semaine" , help=u"Jour de la semaine d'intégration du prévisionnel")
date_debut_prev = fields.Date(u"Date de début du prévisionnel" , help=u"A partir de cette date, toutes les commandes seront forcées en prévisionnel")
import_function = fields.Char("Fonction d'importation", compute='_import_function', readonly=True)
file_ids = fields.Many2many('ir.attachment', 'is_doc_attachment_rel', 'doc_id', 'file_id', 'Fichiers')
create_id = fields.Many2one('res.users', 'Importe par', readonly=True)
create_date = fields.Datetime("Date d'importation")
state = fields.Selection([('analyse', u'Analyse'),('traite', u'Traité')], u"État", readonly=True, select=True)
line_ids = fields.One2many('is.edi.cde.cli.line', 'edi_cde_cli_id', u"Commandes a importer")
nb_lignes = fields.Integer("Nombre de lignes" , compute='_compute', readonly=True, store=False)
nb_fichiers = fields.Integer("Nombre de fichier" , compute='_compute_nb_file', readonly=True)
nb_anomalies = fields.Integer("Nombre d'anomalies", compute='_compute', readonly=True, store=False)
_defaults = {
'name' : fields.Datetime.now,
'state': 'analyse',
}
@api.depends('partner_id')
def _compute_nb_file(self):
for obj in self:
obj.nb_fichiers = len(obj.file_ids)
@api.depends('partner_id')
def _import_function(self):
for obj in self:
if obj.partner_id:
obj.import_function=obj.partner_id.is_import_function
@api.multi
def action_analyser_fichiers(self):
for obj in self:
for row in obj.line_ids:
row.unlink()
line_obj = self.env['is.edi.cde.cli.line']
for attachment in obj.file_ids:
datas = self.get_data(obj.import_function, attachment)
for row in datas:
num_commande_client = row["num_commande_client"]
ref_article_client = row["ref_article_client"]
point_dechargement = False
if "point_dechargement" in row:
point_dechargement=row["point_dechargement"]
order_id = False
date_livraison=False
type_commande=False
if 'order_id' in row:
order_id=row['order_id']
order=self.env['sale.order'].search([('id', '=', order_id)])
else:
order=self.env['sale.order'].search([
('partner_id.is_code', '=', obj.partner_id.is_code),
('is_ref_client' , '=', ref_article_client),
('client_order_ref' , '=', num_commande_client),
('is_type_commande' , '=', 'ouverte'),
('state' , '=', 'draft'),
])
anomalie1 = "Cde non trouvée"
if len(order):
anomalie1=False
order_id = order[0].id
partner_id = order[0].partner_id.id
pricelist_id = order[0].pricelist_id.id
for ligne in row["lignes"]:
product_id = False
prix = 0
anomalie2 = []
if len(order):
if point_dechargement:
if point_dechargement!=order[0].is_point_dechargement:
anomalie2.append(u"Point de déchargement modifié (%s<>%s)"%(point_dechargement,order[0].is_point_dechargement))
if "anomalie" in ligne:
if ligne["anomalie"]:
anomalie2.append(ligne["anomalie"])
if len(order):
if len(order)>1:
t=[]
for o in order:
t.append(o.name)
anomalie2.append('Commande ouverte en double trouvée =>'+','.join(t))
order=order[0]
quantite = int(ligne["quantite"])
if 'product' in row:
product = row['product']
else:
product = order[0].is_article_commande_id
product_id = product.id
#** Date de livraison sur le jour indiqué **********
date_livraison=ligne["date_livraison"]
if ligne["type_commande"]=='previsionnel' and date_livraison and obj.jour_semaine:
d=datetime.strptime(date_livraison, '%Y-%m-%d')
jour_semaine_client = d.weekday() + 1
jour_semaine = int(obj.jour_semaine)
delta = jour_semaine - jour_semaine_client
if delta:
d = d + timedelta(days=delta)
date_livraison = d.strftime('%Y-%m-%d')
#***************************************************
#** Recherche du prix ******************************
if quantite>0:
context={}
if pricelist_id:
#date = ligne["date_livraison"]
ctx = dict(
context,
uom=product.uom_id.id,
date=date_livraison,
)
prix = self.pool.get('product.pricelist').price_get(
self._cr, self._uid,
pricelist_id, product.id, quantite, partner_id, ctx)[pricelist_id]
if prix==0:
anomalie2.append("Prix à 0")
#***************************************************
#** Vérification que qt >= lot livraison ***********
#lot=self.env['product.template'].get_lot_livraison(product.product_tmpl_id, obj.partner_id)
lot=self.env['product.template'].get_lot_livraison(product.product_tmpl_id, order.partner_id)
if quantite<lot and quantite>0:
anomalie2.append("Quantité < Lot de livraison ("+str(int(lot))+")")
#***************************************************
#** Vérification mutliple du lot *******************
#arrondi_lot=self.env['product.template'].get_arrondi_lot_livraison(product.id, obj.partner_id.id, quantite)
arrondi_lot=self.env['product.template'].get_arrondi_lot_livraison(product.id, order.partner_id.id, quantite)
if quantite!=arrondi_lot and quantite>0:
anomalie2.append("Quantité non multiple du lot ("+str(int(arrondi_lot))+")")
#***************************************************
#** Vérification de la date de livraison livraison *
#date_livraison=ligne["date_livraison"]
if date_livraison:
check_date = self.env['sale.order.line'].check_date_livraison(date_livraison, partner_id)
if not check_date:
anomalie2.append("Date de livraison pendant la fermeture du client")
else:
anomalie2.append("Date de livraison non trouvee")
date_livraison=False
#***************************************************
#** En prévisionnel à partir de date_debut_prev ****
type_commande = ligne["type_commande"]
if obj.date_debut_prev and date_livraison and date_livraison>=obj.date_debut_prev:
type_commande = 'previsionnel'
#***************************************************
if anomalie1:
anomalie2.append(anomalie1)
anomalie=''
if len(anomalie2)>0:
anomalie='\n'.join(anomalie2)
vals={
'edi_cde_cli_id' : obj.id,
'num_commande_client': num_commande_client,
'ref_article_client' : ref_article_client,
'product_id' : product_id,
'quantite' : ligne["quantite"],
'date_livraison' : date_livraison,
'point_dechargement' : point_dechargement,
'type_commande' : type_commande,
'prix' : prix,
'order_id' : order_id,
'anomalie' : anomalie,
'file_id' : attachment.id,
}
line_obj.create(vals)
@api.multi
def action_importer_commandes(self):
for obj in self:
line_obj = self.env['sale.order.line']
#** Pour PK et Watts, il faut supprimer toutes les commandes de tous les articles
if obj.import_function=="Plasti-ka":
filtre=[
('is_type_commande' , '=', 'ouverte'),
('state' , '=', 'draft'),
('partner_invoice_id', '=', obj.partner_id.id),
]
orders=self.env['sale.order'].search(filtre)
if obj.import_function in ["Watts","SIMU-SOMFY"]:
filtre=[
('is_type_commande', '=', 'ouverte'),
('state' , '=', 'draft'),
('partner_id' , '=', obj.partner_id.id),
]
orders=self.env['sale.order'].search(filtre)
if obj.import_function in ["Plasti-ka", "Watts", "SIMU-SOMFY"]:
for order in orders:
filtre=[
('order_id' , '=', order.id),
('is_type_commande', '=', 'previsionnel'),
]
line_obj.search(filtre).unlink()
#*******************************************************************
#** Recherche des commandes ouvertes trouvées **********************
order_ids={}
for line in obj.line_ids:
if line.order_id:
order_ids[line.order_id.id]=True
#*******************************************************************
#** Suppression des anciennes commandes ****************************
date_jour=time.strftime('%Y-%m-%d')
for order_id in order_ids:
filtre=[
('order_id', '=', order_id),
('is_date_livraison', '>=', date_jour),
]
#Ne pas supprimer les commandes fermes
if obj.import_function=="eCar":
filtre.append(('is_type_commande', '!=', 'ferme'))
#Ne pas supprimer les commandes au dela de la date limite
if obj.date_maxi:
filtre.append(('is_date_livraison', '<=', obj.date_maxi))
#Pour plasti-ka, supprimer toutes les commandes => Supprimer toutes les commandes de tous les articles
#if obj.import_function=="Plasti-ka":
# filtre=[
# ('order_id', '=', order_id),
# ]
order_line=line_obj.search(filtre)
for row in order_line:
row.unlink()
#*******************************************************************
#** Importation des commandes **************************************
sequence=0
lines=self.env['is.edi.cde.cli.line'].search([('edi_cde_cli_id','=',obj.id)],order='edi_cde_cli_id,ref_article_client,date_livraison')
orders=[]
#pr=cProfile.Profile()
#pr.enable()
for line in lines:
if line.order_id:
#** Pour THERMOR supprimer la ligne avant de la créer car ils envoient des commandes inférieures à la date du jour
if obj.import_function=='THERMOR':
date_jour=time.strftime('%Y-%m-%d')
filtre=[
('order_id', '=', line.order_id.id),
('is_date_livraison', '=', line.date_livraison),
('is_type_commande','=',line.type_commande),
]
lines=line_obj.search(filtre)
lines.unlink()
#***************************************************
if line.quantite!=0 and order_id:
#Ne pas importer les commandes au dela de la date limite
test=True
if obj.date_maxi:
if line.date_livraison>obj.date_maxi:
test=False
if test:
order=line.order_id
if order not in orders:
orders.append(order)
sequence=sequence+10
vals={
'sequence' : sequence,
'order_id' : line.order_id.id,
'is_date_livraison' : line.date_livraison,
'is_type_commande' : line.type_commande,
'product_id' : line.order_id.is_article_commande_id.id or line.product_id.id,
'product_uom_qty' : line.quantite,
'is_client_order_ref' : line.order_id.client_order_ref,
'price_unit' : line.prix,
}
line_obj.create(vals)
#pr.disable()
#pr.dump_stats('/tmp/action_importer_commandes.cProfile')
#*******************************************************************
#** Numérotation des lignes des commandes **************************
for order in orders:
order.numeroter_lignes()
#*******************************************************************
obj.state='traite'
@api.multi
def group_by_data(self, datas):
dict={}
for data in datas:
ref_article_client = data.get("ref_article_client")
num_commande_client = data.get("num_commande_client")
point_dechargement = data.get("point_dechargement")
order_id = data.get("order_id")
product = data.get("product")
lignes = data.get("lignes",[])
key="%s-%s-%s-%s-%s"%(ref_article_client,num_commande_client,point_dechargement,order_id,product)
if key not in dict:
vals={
"ref_article_client" : ref_article_client,
"num_commande_client": num_commande_client,
"lignes" : [],
}
if order_id:
vals["order_id"] = order_id
if point_dechargement:
vals["point_dechargement"] = point_dechargement
if product:
vals["product"] = product
dict[key]={}
dict[key]["vals"]=vals
dict[key]["vals"]["lignes"]+=lignes
for key in dict:
dict_ligne={}
for ligne in dict[key]["vals"]["lignes"]:
type_commande = ligne.get("type_commande")
anomalie = ligne.get("anomalie")
date_livraison = ligne.get("date_livraison")
quantite = ligne.get("quantite")
key_ligne="%s-%s-%s"%(type_commande,anomalie,date_livraison)
if key_ligne not in dict_ligne:
dict_ligne[key_ligne]={}
dict_ligne[key_ligne]["type_commande"]=type_commande
dict_ligne[key_ligne]["anomalie"]=anomalie
dict_ligne[key_ligne]["date_livraison"]=date_livraison
dict_ligne[key_ligne]["quantite"]=0
dict_ligne[key_ligne]["quantite"]+=quantite
dict[key]["vals"]["lignes"]=[]
for key_ligne in dict_ligne:
dict[key]["vals"]["lignes"].append(dict_ligne[key_ligne])
datas=[]
for key in dict:
datas.append(dict[key]["vals"])
return datas
@api.multi
def get_data(self, import_function, attachment):
datas={}
if import_function=="902580":
datas=self.get_data_902580(attachment)
if import_function=="902810":
datas=self.get_data_902810(attachment)
if import_function=="903410":
datas=self.get_data_903410(attachment)
if import_function=="ACTIA":
datas=self.get_data_ACTIA(attachment)
if import_function=="ASTEELFLASH":
datas=self.get_data_ASTEELFLASH(attachment)
if import_function=="DARWIN":
datas=self.get_data_DARWIN(attachment)
if import_function=="eCar":
datas=self.get_data_eCar(attachment)
datas=self.group_by_data(datas)
if import_function=="GXS":
datas=self.get_data_GXS(attachment)
if import_function=="John-Deere":
datas=self.get_data_John_Deere(attachment)
if import_function=="Millipore":
datas=self.get_data_Millipore(attachment)
if import_function=="Mini-Delta-Dore":
datas=self.get_data_MiniDeltaDore(attachment)
if import_function=="Motus":
datas=self.get_data_Motus(attachment)
if import_function == 'Lacroix':
datas = self.get_data_lacroix(attachment)
if import_function=="Odoo":
datas=self.get_data_Odoo(attachment)
if import_function=="Plasti-ka":
datas=self.get_data_plastika(attachment)
if import_function=="SIMU":
datas=self.get_data_SIMU(attachment)
if import_function=="SIMU-SOMFY":
datas=self.get_data_SIMU_SOMFY(attachment)
if import_function=="THERMOR":
datas=self.get_data_THERMOR(attachment)
if import_function=="Watts":
datas=self.get_data_Watts(attachment)
return datas
@api.multi
def getNumCommandeClient(self, ref_article_client):
"""Recherche du numéro de commande client à partir de la référence article"""
for obj in self:
num_commande_client = "??"
SaleOrder = self.getSaleOrder(ref_article_client)
if SaleOrder:
num_commande_client = SaleOrder.client_order_ref
return num_commande_client
@api.multi
def getSaleOrder(self, ref_article_client):
"""Recherche de la commande ouverte client à partir de la référence article"""
for obj in self:
order = self.env['sale.order'].search([
('partner_id.is_code' , '=', obj.partner_id.is_code),
('is_ref_client', '=', ref_article_client),
('is_type_commande' , '=', 'ouverte'),
])
SaleOrder = False
if len(order):
SaleOrder = order[0]
return SaleOrder
@api.multi
def get_data_ASTEELFLASH(self, attachment):
res = []
for obj in self:
#** Lecture du fichier xlsx ****************************************
xlsxfile = base64.decodestring(attachment.datas)
path = '/tmp/edi-asteelflash-'+str(obj.id)+'.xlsx'
f = open(path,'wb')
f.write(xlsxfile)
f.close()
#*******************************************************************
#** Test si fichier est bien du xlsx *******************************
try:
wb = openpyxl.load_workbook(filename = path)
ws = wb.active
title = ws.title
cells = list(ws)
except:
raise Warning(u"Le fichier "+attachment.name+u" n'est pas un fichier xlsx")
#*******************************************************************
lig=0
for row in ws.rows:
if lig>0:
type_commande="previsionnel"
ref_article_client = cells[lig][0].value
try:
quantite = cells[lig][4].value
quantite=float(quantite)
except:
quantite=0
date_livraison = cells[lig][6].value
try:
date_livraison = date_livraison.strftime('%Y-%m-%d')
except ValueError:
date_livraison = False
if date_livraison:
order = self.env['sale.order'].search([
('partner_id.is_code', '=', obj.partner_id.is_code),
('is_ref_client' , '=', ref_article_client),
('is_type_commande' , '=', 'ouverte')]
)
num_commande_client = "??"
if len(order):
num_commande_client = order[0].client_order_ref
val = {
'num_commande_client' : num_commande_client,
'ref_article_client' : ref_article_client,
}
ligne = {
'quantite' : quantite,
'type_commande' : type_commande,
'date_livraison': date_livraison,
}
val.update({'lignes': [ligne]})
res.append(val)
lig+=1
return res
@api.multi
def get_data_SIMU(self, attachment):
res = []
for obj in self:
#** Lecture du fichier xlsx ****************************************
xlsxfile = base64.decodestring(attachment.datas)
path = '/tmp/edi-simu-'+str(obj.id)+'.xlsx'
f = open(path,'wb')
f.write(xlsxfile)
f.close()
type_fichier=False
#*******************************************************************
#** Test si fichier contenant le prévisionnel **********************
try:
type_fichier="previsionnel"
wb = openpyxl.load_workbook(filename = path)
ws = wb['DL']
cells = list(ws)
except:
type_fichier=False
#*******************************************************************
#** Test si fichier contenant le ferme *****************************
if type_fichier==False:
try:
type_fichier="ferme"
wb = openpyxl.load_workbook(filename = path)
ws = wb[u'OA non réceptionnés']
cells = list(ws)
except:
type_fichier=False
#*******************************************************************
if type_fichier=='ferme':
lig=0
for row in ws.rows:
if lig>0:
type_commande="ferme"
try:
quantite = cells[lig][15].value
quantite=float(quantite)
except ValueError:
quantite=0
ref_article_client = cells[lig][2].value
#** Recherche article **********************************
products = self.env['product.product'].search([
('is_client_id.is_code', '=', obj.partner_id.is_code),
('is_ref_client' , '=', ref_article_client),
])
Product = False
if len(products):
Product = products[0]
#*******************************************************
SaleOrder = False
num_commande_client = "??"
if Product:
#** Recherche et création de la commande ferme *****
num_commande_client = cells[lig][9].value
order = self.env['sale.order'].search([
('partner_id.is_code', '=', obj.partner_id.is_code),
#('is_ref_client' , '=', ref_article_client),
('is_type_commande' , '=', 'standard'),
('client_order_ref' , '=', num_commande_client),
])
if len(order):
SaleOrder = order[0]
else:
vals={
'partner_id' : obj.partner_id.id,
'is_type_commande': 'standard',
'client_order_ref': num_commande_client,
'pricelist_id' : obj.partner_id.property_product_pricelist.id,
}
SaleOrder = self.env['sale.order'].create(vals)
#***************************************************
#** Répartir la quantité sur 4 jours *******************
lot_livraison = 0
if SaleOrder:
#num_commande_client = SaleOrder.client_order_ref
for line in Product.is_client_ids:
if line.client_id == obj.partner_id:
lot_livraison = line.lot_livraison
nb_lots = math.ceil(quantite / lot_livraison / 4.0)
lot_livraison = lot_livraison * nb_lots
quantites=[]
if quantite>lot_livraison and lot_livraison>0:
nb_lots = quantite / lot_livraison / 4.0
reste = quantite
for x in range(4):
v = lot_livraison
if (reste-v)<0:
v = reste
reste = reste - v
quantites.append(v)
if reste==0:
break
else:
quantites.append(quantite)
#*******************************************************
#** Mettre la date au lundi ****************************
try:
date_livraison = cells[lig][12].value
jour_semaine = date_livraison.weekday() + 7 # Semaine précédente
date_lundi = date_livraison - timedelta(days=jour_semaine)
except ValueError:
date_livraison = False
jour_semaine = False
date_lundi = False
#*******************************************************
for quantite in quantites:
date_livraison = False
if date_lundi:
date_livraison = date_lundi.strftime('%Y-%m-%d')
date_lundi = date_lundi + timedelta(days=1)
val = {
'num_commande_client' : num_commande_client,
'ref_article_client' : ref_article_client,
'order_id' : SaleOrder and SaleOrder.id,
'product' : Product,
}
ligne = {
'quantite' : quantite,
'type_commande' : type_commande,
'date_livraison': date_livraison,
}
val.update({'lignes': [ligne]})
res.append(val)
lig+=1
if type_fichier=='previsionnel':
now = datetime.now()
annee = int(now.year)
lig=0
semaines={}
test=False
mem_ref = ''
for row in ws.rows:
nb_cols = len(row)
if nb_cols>100:
nb_cols=100
#** Traitement des lignes des prévisions *******************
if test:
val1=cells[lig][0].value
val2=cells[lig][1].value
if val1:
mem_ref=val1
if val2==u'Forecast / prévision':
vals={}
for col in range(nb_cols):
if col>=2:
v = cells[lig][col].value
if v:
semaine = semaines[col+1]
ref_article_client = mem_ref
num_commande_client = self.getNumCommandeClient(ref_article_client)
#** Convertir la semaine en date *******
sem=''
try:
annee = int(semaine[0:4])
sem = int(semaine[6:8])
date_livraison = datetime.strptime('%04d-%02d-1' % (annee, sem), '%Y-%W-%w')
#Pour avoir la semaine en ISO car pas dispo en Python 2.7, uniqument avec Python 3
if date(annee, 1, 4).isoweekday() > 4:
date_livraison -= timedelta(days=7)
date_livraison = date_livraison.strftime('%Y-%m-%d')
except:
date_livraison = False
#*******************************************
try:
qt=float(v)
except ValueError:
qt=0
type_commande="previsionnel"
val = {
'num_commande_client' : num_commande_client,
'ref_article_client' : ref_article_client,
}
ligne = {
'quantite' : qt,
'type_commande' : type_commande,
'date_livraison': date_livraison,
}
val.update({'lignes': [ligne]})
res.append(val)
#***************************************************************
#** Recherche des numéros des semaines *************************
#nbcols = len(row)-1
if cells[lig][1].value=='Semaine / week':
for col in range(nb_cols):
if col>=2 and cells[lig][col].value:
semaine = int(cells[lig][col].value)
if col==2:
memsemaine=semaine
if semaine<(memsemaine-5):
annee+=1
val = cells[lig][col].value
semaines[col+1] = str(annee)+'-S'+str(val)
memsemaine=semaine
test = True # Il est possible de traiter les lignes suivantes
#***************************************************************
lig+=1
if type_fichier==False:
raise Warning(u"Le fichier "+attachment.name+u" n'est pas un fichier SIMU compatible (xlsx pour le ferme ou le prévisionnel)")
return res
@api.multi
def get_data_SIMU_SOMFY(self, attachment):
res = []
for obj in self:
csvfile = base64.decodestring(attachment.datas)
csvfile = csvfile.split("\n")
csvfile = csv.reader(csvfile, delimiter=';')
for ct, lig in enumerate(csvfile):
if ct>0 and len(lig)>=28:
#type_commande = lig[25].strip()
type_commande = lig[7].strip()
if type_commande == u"Prévision":
type_commande="previsionnel"
#ref_article_client = lig[18].strip()
ref_article_client = lig[0].strip()
#quantite = lig[26].replace(',', '.')
quantite = lig[8].replace(',', '.')
try:
quantite = float(quantite)
except ValueError:
quantite=0
#date_livraison = lig[28]
date_livraison = lig[12]
d=False
try:
d = datetime.strptime(date_livraison, '%d/%m/%Y')
except ValueError:
continue
if d:
date_livraison = d.strftime('%Y-%m-%d')
order = self.env['sale.order'].search([
('partner_id.is_code', '=', obj.partner_id.is_code),
('is_ref_client' , '=', ref_article_client),
('is_type_commande' , '=', 'ouverte')]
)
num_commande_client = "??"
if len(order):
num_commande_client = order[0].client_order_ref
val = {
'num_commande_client' : num_commande_client,
'ref_article_client' : ref_article_client,
}
ligne = {
'quantite' : quantite,
'type_commande' : type_commande,
'date_livraison': date_livraison,
}
val.update({'lignes': [ligne]})
res.append(val)
return res
@api.multi
def get_data_Millipore(self, attachment):
res = []
#mois=[u'janv.',u'févr.',u'mars',u'avr.',u'mai',u'juin',u'juil.',u'août',u'sept.',u'oct.',u'nov.',u'déc.']
mois=['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec']
for obj in self:
csvfile = base64.decodestring(attachment.datas).decode('cp1252')
csvfile = csvfile.split("\r\n")
csvfile = csv.reader(csvfile, delimiter='\t')
tab=[]
annees=[]
dates=[]
for ct, lig in enumerate(csvfile):
if ct<7:
continue
nb=len(lig)
if ct==7:
for i in range(7,nb):
annees.append(lig[i])
if ct==8:
for i in range(7,nb):
m=mois.index(lig[i])+1
txt=str(annees[i-7])+'-'+str(m)+'-01'
d=datetime.strptime(txt, '%Y-%m-%d')
#** Recherche du premier mercredi du mois **************
while True:
jour_semaine=d.strftime('%w')
if jour_semaine=='3':
break
d = d + timedelta(days=1)
#*******************************************************
dates.append(d.strftime('%Y-%m-%d'))
if ct>8:
if nb>=10:
ref_article_client = lig[0].strip()
order = self.env['sale.order'].search([
('partner_id.is_code' , '=', obj.partner_id.is_code),
('is_ref_client', '=', ref_article_client)]
)
num_commande_client = "??"
if len(order):
num_commande_client = order[0].client_order_ref
for i in range(7,nb):
val = {
'num_commande_client' : num_commande_client,
'ref_article_client' : ref_article_client,
}
date_livraison=dates[(i-7)]
quantite = lig[i]
try:
qt = float(quantite)
except ValueError:
qt=0
type_commande="previsionnel"
ligne = {
'quantite' : qt,
'type_commande' : type_commande,
'date_livraison': date_livraison,
}
val.update({'lignes': [ligne]})
res.append(val)
return res
@api.multi
def get_data_MiniDeltaDore(self, attachment):
res = []
for obj in self:
csvfile = base64.decodestring(attachment.datas)
csvfile = csvfile.split("\n")
csvfile = csv.reader(csvfile, delimiter='\t')
for ct, lig in enumerate(csvfile):
if len(lig)==4:
ref_article_client = lig[0].strip()
order = self.env['sale.order'].search([
('partner_id.is_code' , '=', obj.partner_id.is_code),
('is_ref_client', '=', ref_article_client),
('is_type_commande' , '=', 'ouverte'),
])
num_commande_client = "??"
if len(order):
num_commande_client = order[0].client_order_ref
val = {
'num_commande_client' : num_commande_client,
'ref_article_client' : ref_article_client,
}
date_livraison=lig[1]
quantite = lig[3]
try:
quantite = float(quantite)
except ValueError:
quantite=0
type_commande=lig[2]
ligne = {
'quantite' : quantite,
'type_commande' : type_commande,
'date_livraison': date_livraison,
}
val.update({'lignes': [ligne]})
res.append(val)
return res
@api.multi
def get_data_ACTIA(self, attachment):
res = []
for obj in self:
csvfile = base64.decodestring(attachment.datas)
csvfile = csvfile.split("\n")
csvfile = csv.reader(csvfile, delimiter=';')
tab=[]
for ct, lig in enumerate(csvfile):
if ct == 0:
continue
if len(lig) == 9:
ref_article_client = lig[1].strip()
order = self.env['sale.order'].search([
('partner_id.is_code' , '=', obj.partner_id.is_code),
('is_ref_client', '=', ref_article_client)]
)
num_commande_client = "??"
if len(order):
num_commande_client = order[0].client_order_ref
val = {
'num_commande_client' : num_commande_client,
'ref_article_client' : ref_article_client,
}
quantite = lig[4]
qt=0
try:
qt = float(quantite)
except ValueError:
continue
type_commande="previsionnel"
date_livraison = lig[3].strip()
d=False
try:
d = datetime.strptime(date_livraison, '%Y%m%d')
except ValueError:
continue
if d:
date_livraison = d.strftime('%Y-%m-%d')
ligne = {
'quantite' : qt,
'type_commande' : type_commande,
'date_livraison': date_livraison,
}
val.update({'lignes': [ligne]})
res.append(val)