...
This commit is contained in:
@@ -152,7 +152,7 @@ namespace Back.Controllers
|
||||
[HttpGet("SendInvoice/{InvoiceID}")]
|
||||
public async Task<ActionResult<bool>> SendInvoice(int InvoiceID)
|
||||
{
|
||||
return BadRequest(new List<string> { "در حال حاضر سامانه مودیان در دسترس نمی باشد" });
|
||||
//return BadRequest(new List<string> { "در حال حاضر سامانه مودیان در دسترس نمی باشد" });
|
||||
|
||||
var claim = HttpContext.User.Claims.First(c => c.Type == "UserID");
|
||||
var UserID = claim.Value;
|
||||
@@ -255,7 +255,7 @@ namespace Back.Controllers
|
||||
// مجموع سایر مالیات، عوارض و وجوه قانونی
|
||||
Todam = result.todam ?? null,
|
||||
//صورتحساب مجموع
|
||||
Tbill =-10 /* result.tbill ?? null*/,
|
||||
Tbill = result.tbill ?? null,
|
||||
//مجموع وزن خالض
|
||||
Tonw = level == 10 ? result.tonw : null,
|
||||
//مجموع ارزش ریالی
|
||||
@@ -302,7 +302,7 @@ namespace Back.Controllers
|
||||
// مبلغ واحد
|
||||
Fee = level == 4 ? null : bitem.fee,
|
||||
//میزان ارز
|
||||
Cfee = level==8 || level==10 ?null: bitem.cfee,
|
||||
Cfee = bitem.cfee == 0|| level ==8 || level==10 ?null: bitem.cfee ,
|
||||
//نوع ارز
|
||||
Cut = level == 8 || string.IsNullOrEmpty(bitem.cut) ? null : bitem.cut,
|
||||
//نرخ برابری ارز با ریال
|
||||
|
Reference in New Issue
Block a user