Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
package models
|
||||
|
||||
type FirstGroupOption struct {
|
||||
ID string `json:"id"`
|
||||
Label string `json:"label"`
|
||||
Code string `json:"code"`
|
||||
Title string `json:"title"`
|
||||
}
|
||||
|
||||
type FirstGroupMailOption struct {
|
||||
@@ -11,7 +11,9 @@ type FirstGroupMailOption struct {
|
||||
}
|
||||
|
||||
type FirstGroupMailMappingRow struct {
|
||||
UrunIlkGrubu string `json:"urun_ilk_grubu"`
|
||||
UrunIlkGrubu string `json:"urun_ilk_grubu"` // group code (kept for backward compatibility)
|
||||
GroupCode string `json:"group_code"`
|
||||
GroupTitle string `json:"group_title"`
|
||||
MailIDs []string `json:"mail_ids"`
|
||||
Mails []FirstGroupMailOption `json:"mails"`
|
||||
}
|
||||
|
||||
@@ -170,7 +170,17 @@ type ProductionProductCostingOnMLSaveRequest struct {
|
||||
}
|
||||
|
||||
type ProductionProductCostingOnMLSaveResponse struct {
|
||||
NOnMLNo int `json:"n_onml_no"`
|
||||
NOnMLNo int `json:"n_onml_no"`
|
||||
Warnings []string `json:"warnings,omitempty"`
|
||||
}
|
||||
|
||||
type ProductionProductCostingTbStokExistsBulkRequest struct {
|
||||
Codes []string `json:"codes"`
|
||||
}
|
||||
|
||||
type ProductionProductCostingTbStokExistsBulkResponse struct {
|
||||
Missing []string `json:"missing"`
|
||||
Error string `json:"error,omitempty"`
|
||||
}
|
||||
|
||||
type ProductionProductCostingOnMLDeleteRequest struct {
|
||||
|
||||
Reference in New Issue
Block a user