1

كيف يمكن تصحيح الفروقات بين المدين والدائن وإغلاق الفروقات التي نتجت من القيود الغير متزنة حيث أنني كنت أسمح بفرق بسيط بينهما؟
 

بدأ العميل العمل و سمح بوجود فرق نصف جنيه أو اقل بين المدين و الدائن في السندات و هو الان يريد ان يقوم بتصحيح هذه السندات و اغلاق هذا الفرق فيها (بعد ان جعل الفرق لا يزيد عن قرش واحد)، فكيف يمكن عمل هذا التصحيح؟

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Eldabbas's avatar
9.1k
Eldabbas
asked 6 years ago, updated 6 years ago

Comments

see more comments

1 Answer

1

يمكنك استعمال الاستعلام التالي لحصر السندات التي بها فروقات

select originType,originId,originCode,valueDate,SUM(creditLocalAmount) cr,SUM(debitLocalAmount) dr from LedgerTransLine group by originType,originId,originCode,valueDate
having ABS(SUM(creditLocalAmount)-SUM(debitLocalAmount))>0.0
order by valueDate

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Eldabbas's avatar
9.1k
Eldabbas
answered 6 years ago
Ahmed Qasid's avatar
5.8k
Ahmed Qasid
updated 6 years ago
link

Comments

see more comments

Your Answer

Login/Signup to Answer