diff options
| author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-09-03 16:18:20 +0530 | 
|---|---|---|
| committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-09-03 16:18:20 +0530 | 
| commit | 776522d8741752832981b17ec81deb11a298ef57 (patch) | |
| tree | f7c0654f2b3dbc475c2a32daa5c623eec0ffce4a /customer/customer.go | |
| parent | 95dfc551f7eaaf6e8ebdefce1b733951354ac40d (diff) | |
different customers for different users
Diffstat (limited to 'customer/customer.go')
| -rw-r--r-- | customer/customer.go | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/customer/customer.go b/customer/customer.go index 5f25e2d..23c630d 100644 --- a/customer/customer.go +++ b/customer/customer.go @@ -20,6 +20,7 @@ package customer  import (  	"gorm.io/gorm"  	d "vidhukant.com/openbills/db" +	"vidhukant.com/openbills/user"  )  var db *gorm.DB @@ -31,6 +32,8 @@ func init() {  type CustomerContact struct {  	gorm.Model +	UserID     uint      `json:"-"` +	User       user.User `json:"-"`  	CustomerID uint  	Name       string  	Phone      string @@ -58,6 +61,8 @@ type CustomerShippingAddress struct {  type Customer struct {  	gorm.Model +	UserID            uint      `json:"-"` +	User              user.User `json:"-"`  	Name              string  	Gstin             string   	Contact           CustomerContact  |