...
This commit is contained in:
@@ -214,11 +214,12 @@ namespace Back.Controllers
|
||||
//شماره اقتصادی فروشنده به جاش شناسه ملی داده شد
|
||||
Tins = string.IsNullOrEmpty(result.tins) ? null : result.tins,
|
||||
//نوع شخص خریدار
|
||||
Tob = level == 10 ? null : result.tob,
|
||||
Tob = level == 10 ? null : result.tob==5 ? 1 : result.tob==6 ? 4 : result.tob,
|
||||
//شماره/شناسه ملی/شناسه مشارکت مدنی / کد فراگیر
|
||||
Bid = level == 10 || string.IsNullOrEmpty(result.bid) ? null : result.bid,
|
||||
Bid = level == 10 || string.IsNullOrEmpty(result.bid) || !string.IsNullOrEmpty(result.tinb)
|
||||
|| result.tob == 1 || result.tob == 2 || result.tob == 3 || result.tob == 4 ? null : result.bid,
|
||||
//شماره اقتصادی خریدار
|
||||
Tinb = level == 10 || string.IsNullOrEmpty(result.tinb) ? null : result.tinb,
|
||||
Tinb = level == 10 || string.IsNullOrEmpty(result.tinb) || result.tob == 5 || result.tob == 6 ? null : result.tinb,
|
||||
//کد شعبه فروشنده
|
||||
Sbc = string.IsNullOrEmpty(result.sbc) ? null : result.sbc,
|
||||
//کد پستی خریدار
|
||||
|
Reference in New Issue
Block a user