Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • it-bott-integrasjoner/setra-client
1 result
Show changes
Commits on Source (2)
  • Jo Sama's avatar
    Add order_id to salesorders · 5cbc8aea
    Jo Sama authored
    This is the identifier (salesordernumber) that is assigned when the
    salesorder is received. In many cases, this is what we'll need to
    transfer instead of the final salesorder number, which is produced days
    or weeks later when the salesorder is finally sent.
    5cbc8aea
  • Jo Sama's avatar
    Merge branch 'add-order_id-to-orders' into 'master' · 27ff9a58
    Jo Sama authored
    Add order_id to salesorders
    
    See merge request !37
    27ff9a58
......@@ -268,6 +268,7 @@ class Order(BaseModel):
trans_type: str
ext_order_id: Optional[str]
order_no: Optional[int]
order_id: Optional[int]
deliv_date: Optional[datetime.date]
text3: Optional[str]
text4: Optional[str]
......