Add isDM flag to Client and update FiscalRequest structure for DM support
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
package api
|
||||
|
||||
type FiscalRequest struct {
|
||||
Source string `json:"source"`
|
||||
Ver int `json:"ver,omitempty"`
|
||||
Source string `json:"source,omitempty"`
|
||||
Device string `json:"device,omitempty"`
|
||||
Tag string `json:"tag,omitempty"`
|
||||
Type int `json:"type,omitempty"`
|
||||
Userinfo Userinfo `json:"userinfo,omitempty"`
|
||||
Fiscal Fiscal `json:"fiscal"`
|
||||
}
|
||||
@@ -14,7 +17,7 @@ type Userinfo struct {
|
||||
|
||||
type Fiscal struct {
|
||||
Task int `json:"task"`
|
||||
Cashier string `json:"cashier"`
|
||||
Cashier string `json:"cashier,omitempty"`
|
||||
Receipt *Receipt `json:"receipt,omitempty"`
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user