콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다

picking_ids = self.env['stock.picking'].search(
[('sale_id.sample_id', '=', line.id)])

# for loop condition to check each line by line of the product lines
for pick in picking_ids.move_ids_without_package:
# check Condition if sample Qty returned less than means status will be partial returned
if pick.state != 'done':
print("half delivered")
picking_ids.write({'state': 'partially_delivered'})

else:
print("delivered")
# print(sample_qty, return_qty)
# active_id.write({'return_date': self.return_date, 'return_by': self.responsible_person,
# 'state': 'return'})

아바타
취소
관련 게시물 답글 화면 활동
1
6월 23
3253
1
6월 23
4898
1
1월 23
3031
0
9월 22
2742
1
8월 22
3728