Hi everyone, I have a problem with Sales Invoice. I want to view information about tax in SSRS report like taxcode, taxamount, in the report there is such a tablix as a hidden when i set to visiable i only see a Label but no data. I found this in class SalesInvoiceDP/InsertIntoSalesInvoiceTmp //taxTrans if (_taxSpec) { salesInvoiceTmp.ShowTaxTrans = true; salesInvoiceTmp.TaxCode = _taxSpec.taxCode(); salesInvoiceTmp.Amount = - amount; salesInvoiceTmp.CashDiscAmount = -cashDiscAmountTax ; salesInvoiceTmp.TaxBaseAmountMST = -_taxSpec.taxBaseAmountMST(); salesInvoiceTmp.TaxAmountMST = -_taxSpec.taxAmountMST(); salesInvoiceTmp.TaxExemptDescription = _taxSpec.taxExemptDescription(); but i don't understand this: if (_taxSpec). Please help. //taxTrans if (_taxSpec) { salesInvoiceTmp.ShowTaxTrans = true; salesInvoiceTmp.TaxCode = _taxSpec.taxCode(); salesInvoiceTmp.Amount = - amount; salesInvoiceTmp.CashDiscAmount = -cashDiscAmountTax ; salesInvoiceTmp.TaxBaseAmountMST = -_taxSpec.taxBaseAmountMST(); salesInvoiceTmp.TaxAmountMST = -_taxSpec.taxAmountMST(); salesInvoiceTmp.TaxExemptDescription = _taxSpec.taxExemptDescription();
↧