Compare commits

..

No commits in common. '5d807f11683ea31966ad0bd38fb822e01c7791b0' and '78d8a90e7bdaa2a8891ce214a3bae42a8cf8100f' have entirely different histories.

@ -51,7 +51,7 @@ class CustomerController extends XController
{
$customer->name = $request->input('name');
if ($customer->credit != $request->input('credit') && $customer->id != null){
if ($customer->credit != $request->input('credit')){
$diff = $request->input('credit') - $customer->credit;
$customer->credit = $request->input('credit')??0 ;
$cr = new Credit();

@ -1,3 +1,6 @@
main{
padding-top: 47px;
}
#AplMenu {
position: fixed;
left: 0;

Loading…
Cancel
Save