mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
feat(warehouse ): warehouses skeleton.
This commit is contained in:
@@ -10,11 +10,13 @@ import withCurrentOrganization from 'containers/Organization/withCurrentOrganiza
|
||||
*/
|
||||
function BaseCurrency({
|
||||
// #withCurrentOrganization
|
||||
organization: { base_currency = '' },
|
||||
organization: { base_currency },
|
||||
isForeignCustomer,
|
||||
}) {
|
||||
// if (base_currency.length <= 0) {
|
||||
// return null;
|
||||
// }
|
||||
console.log(isForeignCustomer, 'XXXX');
|
||||
if (isForeignCustomer) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<BaseCurrencySign>
|
||||
@@ -26,6 +28,8 @@ function BaseCurrency({
|
||||
export default R.compose(withCurrentOrganization())(BaseCurrency);
|
||||
|
||||
const BaseCurrencySign = styled.div`
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 10px;
|
||||
margin-left: 5px;
|
||||
span {
|
||||
|
||||
Reference in New Issue
Block a user